Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't add new report actions in Debug mode #53969

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/libs/actions/Debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ function setDebugData<TKey extends OnyxKey | `${OnyxCollectionKey}${string}`>(on
Onyx.set(onyxKey, onyxValue);
}

function mergeDebugData<TKey extends OnyxKey | `${OnyxCollectionKey}${string}`>(onyxKey: TKey, onyxValue: OnyxMergeInput<TKey>) {
Onyx.merge(onyxKey, onyxValue);
}

export default {
resetDebugDetailsDraftForm,
setDebugData,
mergeDebugData,
};
24 changes: 12 additions & 12 deletions src/pages/Debug/DebugDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ import useLocalize from '@hooks/useLocalize';
import useThemeStyles from '@hooks/useThemeStyles';
import type {ObjectType, OnyxDataType} from '@libs/DebugUtils';
import DebugUtils from '@libs/DebugUtils';
import * as PolicyUtils from '@libs/PolicyUtils';
import * as TagsOptionsListUtils from '@libs/TagsOptionsListUtils';
import Debug from '@userActions/Debug';
import type CONST from '@src/CONST';
import type {TranslationPaths} from '@src/languages/types';
Expand All @@ -34,6 +32,13 @@ type DebugDetailsProps = {
/** The report or report action data to be displayed and editted. */
data: OnyxEntry<Report> | OnyxEntry<ReportAction> | OnyxEntry<Transaction> | OnyxEntry<TransactionViolation>;

/** Whether the provided policy has enabled tags */
policyHasEnabledTags?: boolean;

/** ID of the provided policy */
policyID?: string;

/** Metadata UI */
children?: React.ReactNode;

/** Callback to be called when user saves the debug data. */
Expand All @@ -47,13 +52,10 @@ type DebugDetailsProps = {
validate: (key: any, value: string) => void;
};

function DebugDetails({formType, data, children, onSave, onDelete, validate}: DebugDetailsProps) {
function DebugDetails({formType, data, policyHasEnabledTags, policyID, children, onSave, onDelete, validate}: DebugDetailsProps) {
const {translate} = useLocalize();
const styles = useThemeStyles();
const [formDraftData] = useOnyx(ONYXKEYS.FORMS.DEBUG_DETAILS_FORM_DRAFT);
const [report] = useOnyx(`${ONYXKEYS.COLLECTION.REPORT}${(data as OnyxEntry<Transaction>)?.reportID ?? ''}`);
const [policyTags] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_TAGS}${report?.policyID}`);
const policyTagLists = useMemo(() => PolicyUtils.getTagLists(policyTags), [policyTags]);
const booleanFields = useMemo(
() =>
Object.entries(data ?? {})
Expand All @@ -66,13 +68,13 @@ function DebugDetails({formType, data, children, onSave, onDelete, validate}: De
Object.entries(data ?? {})
.filter((entry): entry is [string, string] => {
// Tag picker needs to be hidden when the policy has no tags available to pick
if (entry[0] === TRANSACTION_FORM_INPUT_IDS.TAG && !TagsOptionsListUtils.hasEnabledTags(policyTagLists)) {
if (entry[0] === TRANSACTION_FORM_INPUT_IDS.TAG && !policyHasEnabledTags) {
return false;
}
return DETAILS_CONSTANT_FIELDS[formType].some(({fieldName}) => fieldName === entry[0]);
})
.sort((a, b) => a[0].localeCompare(b[0])),
[data, formType, policyTagLists],
[data, formType, policyHasEnabledTags],
);
const numberFields = useMemo(
() =>
Expand Down Expand Up @@ -209,7 +211,7 @@ function DebugDetails({formType, data, children, onSave, onDelete, validate}: De
name={key}
shouldSaveDraft
defaultValue={String(value)}
policyID={report?.policyID}
policyID={policyID}
/>
))}
{constantFields.length === 0 && <Text style={[styles.textNormalThemeText, styles.ph5]}>{translate('debug.none')}</Text>}
Expand Down Expand Up @@ -248,9 +250,7 @@ function DebugDetails({formType, data, children, onSave, onDelete, validate}: De
danger
large
text={translate('common.delete')}
onPress={() => {
onDelete();
}}
onPress={onDelete}
/>
</View>
</FormProvider>
Expand Down
1 change: 0 additions & 1 deletion src/pages/Debug/Report/DebugReportPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ function DebugReportPage({
Debug.setDebugData(`${ONYXKEYS.COLLECTION.REPORT}${reportID}`, data);
}}
onDelete={() => {
Debug.setDebugData(`${ONYXKEYS.COLLECTION.REPORT}${reportID}`, null);
navigateToConciergeChatAndDeleteReport(reportID, true, true);
}}
validate={DebugUtils.validateReportDraftProperty}
Expand Down
43 changes: 26 additions & 17 deletions src/pages/Debug/ReportAction/DebugReportActionCreatePage.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from 'react';
import React, {useCallback, useState} from 'react';
import {View} from 'react-native';
import type {OnyxEntry} from 'react-native-onyx';
import {useOnyx} from 'react-native-onyx';
Expand Down Expand Up @@ -51,6 +51,29 @@ function DebugReportActionCreatePage({
const [draftReportAction, setDraftReportAction] = useState<string>(() => getInitialReportAction(reportID, session, personalDetailsList));
const [error, setError] = useState<string>();

const createReportAction = useCallback(() => {
const parsedReportAction = JSON.parse(draftReportAction.replaceAll('\n', '')) as ReportAction;
Debug.mergeDebugData(`${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${reportID}`, {
[parsedReportAction.reportActionID]: parsedReportAction,
});
Navigation.navigate(ROUTES.DEBUG_REPORT_TAB_ACTIONS.getRoute(reportID));
}, [draftReportAction, reportID]);

const editJSON = useCallback(
(updatedJSON: string) => {
try {
DebugUtils.validateReportActionJSON(updatedJSON);
setError('');
} catch (e) {
const {cause, message} = e as SyntaxError;
setError(cause ? translate(message as TranslationPaths, cause as never) : message);
} finally {
setDraftReportAction(updatedJSON);
}
},
[translate],
);

return (
<ScreenWrapper
includeSafeAreaPaddingBottom={false}
Expand All @@ -74,17 +97,7 @@ function DebugReportActionCreatePage({
numberOfLines={18}
multiline
value={draftReportAction}
onChangeText={(updatedJSON) => {
try {
DebugUtils.validateReportActionJSON(updatedJSON);
setError('');
} catch (e) {
const {cause, message} = e as SyntaxError;
setError(cause ? translate(message as TranslationPaths, cause as never) : message);
} finally {
setDraftReportAction(updatedJSON);
}
}}
onChangeText={editJSON}
textInputContainerStyles={[styles.border, styles.borderBottom, styles.p5]}
/>
</View>
Expand Down Expand Up @@ -112,11 +125,7 @@ function DebugReportActionCreatePage({
success
text={translate('common.save')}
isDisabled={!draftReportAction || !!error}
onPress={() => {
const parsedReportAction = JSON.parse(draftReportAction.replaceAll('\n', '')) as ReportAction;
Debug.setDebugData(`${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${reportID}`, {[parsedReportAction.reportActionID]: parsedReportAction});
Navigation.navigate(ROUTES.DEBUG_REPORT_TAB_ACTIONS.getRoute(reportID));
}}
onPress={createReportAction}
/>
</ScrollView>
</View>
Expand Down
10 changes: 7 additions & 3 deletions src/pages/Debug/ReportAction/DebugReportActionPage.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import {View} from 'react-native';
import {InteractionManager, View} from 'react-native';
import {useOnyx} from 'react-native-onyx';
import Button from '@components/Button';
import HeaderWithBackButton from '@components/HeaderWithBackButton';
Expand Down Expand Up @@ -61,11 +61,15 @@ function DebugReportActionPage({
formType={CONST.DEBUG.FORMS.REPORT_ACTION}
data={reportAction}
onSave={(data) => {
Debug.setDebugData(`${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${reportID}`, {[reportActionID]: data});
Debug.mergeDebugData(`${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${reportID}`, {[reportActionID]: data});
}}
onDelete={() => {
Debug.setDebugData(`${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${reportID}`, {[reportActionID]: null});
Navigation.goBack();
// We need to wait for navigation animations to finish before deleting an action,
// otherwise the user will see a not found page briefly.
InteractionManager.runAfterInteractions(() => {
Debug.mergeDebugData(`${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${reportID}`, {[reportActionID]: null});
});
}}
validate={DebugUtils.validateReportActionDraftProperty}
>
Expand Down
18 changes: 15 additions & 3 deletions src/pages/Debug/Transaction/DebugTransactionPage.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import {View} from 'react-native';
import React, {useMemo} from 'react';
import {InteractionManager, View} from 'react-native';
import {useOnyx} from 'react-native-onyx';
import Button from '@components/Button';
import HeaderWithBackButton from '@components/HeaderWithBackButton';
Expand All @@ -14,6 +14,8 @@ import Navigation from '@libs/Navigation/Navigation';
import OnyxTabNavigator, {TopTab} from '@libs/Navigation/OnyxTabNavigator';
import type {PlatformStackScreenProps} from '@libs/Navigation/PlatformStackNavigation/types';
import type {DebugParamList} from '@libs/Navigation/types';
import * as PolicyUtils from '@libs/PolicyUtils';
import * as TagsOptionsListUtils from '@libs/TagsOptionsListUtils';
import DebugDetails from '@pages/Debug/DebugDetails';
import DebugJSON from '@pages/Debug/DebugJSON';
import NotFoundPage from '@pages/ErrorPage/NotFoundPage';
Expand All @@ -32,6 +34,10 @@ function DebugTransactionPage({
}: DebugTransactionPageProps) {
const {translate} = useLocalize();
const [transaction] = useOnyx(`${ONYXKEYS.COLLECTION.TRANSACTION}${transactionID}`);
const [report] = useOnyx(`${ONYXKEYS.COLLECTION.REPORT}${transaction?.reportID}`);
const [policyTags] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_TAGS}${report?.policyID}`);
const policyTagLists = useMemo(() => PolicyUtils.getTagLists(policyTags), [policyTags]);

const styles = useThemeStyles();

if (!transaction) {
Expand Down Expand Up @@ -60,12 +66,18 @@ function DebugTransactionPage({
<DebugDetails
formType={CONST.DEBUG.FORMS.TRANSACTION}
data={transaction}
policyID={report?.policyID}
policyHasEnabledTags={TagsOptionsListUtils.hasEnabledTags(policyTagLists)}
onSave={(data) => {
Debug.setDebugData(`${ONYXKEYS.COLLECTION.TRANSACTION}${transactionID}`, data);
}}
onDelete={() => {
Debug.setDebugData(`${ONYXKEYS.COLLECTION.TRANSACTION}${transactionID}`, null);
Navigation.goBack();
// We need to wait for navigation animations to finish before deleting a transaction,
// otherwise the user will see a not found page briefly.
InteractionManager.runAfterInteractions(() => {
Debug.setDebugData(`${ONYXKEYS.COLLECTION.TRANSACTION}${transactionID}`, null);
});
}}
validate={DebugUtils.validateTransactionDraftProperty}
>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {useCallback, useMemo} from 'react';
import {View} from 'react-native';
import {InteractionManager, View} from 'react-native';
import {useOnyx} from 'react-native-onyx';
import HeaderWithBackButton from '@components/HeaderWithBackButton';
import ScreenWrapper from '@components/ScreenWrapper';
Expand Down Expand Up @@ -45,8 +45,12 @@ function DebugTransactionViolationPage({
const deleteTransactionViolation = useCallback(() => {
const updatedTransactionViolations = [...(transactionViolations ?? [])];
updatedTransactionViolations.splice(Number(index), 1);
Debug.setDebugData(`${ONYXKEYS.COLLECTION.TRANSACTION_VIOLATIONS}${transactionID}`, updatedTransactionViolations);
Navigation.goBack();
// We need to wait for navigation animations to finish before deleting a violation,
// otherwise the user will see a not found page briefly.
InteractionManager.runAfterInteractions(() => {
Debug.setDebugData(`${ONYXKEYS.COLLECTION.TRANSACTION_VIOLATIONS}${transactionID}`, updatedTransactionViolations);
});
}, [index, transactionID, transactionViolations]);

if (!transactionViolation) {
Expand Down
Loading