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

[Debug Mode] Show reason for RBR/GBR on LHN tabs #49962

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
858a2f0
chore(debug): initial implementation for LHN and settings GBR/RBR debug
pac-guerreiro Sep 30, 2024
4cbea3a
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 1, 2024
e494903
chore(debug): add missing translations and routes for settings debugg…
pac-guerreiro Oct 1, 2024
d67fda0
style: apply linter
pac-guerreiro Oct 1, 2024
0a8bd76
chore: add tests for useIndicatorStatus
pac-guerreiro Oct 7, 2024
76296bc
refactor: apply suggestions
pac-guerreiro Oct 7, 2024
0ea56fd
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 7, 2024
4a10d7d
chore: apply suggestions
pac-guerreiro Oct 7, 2024
5ba4eea
refactor: simplify test structure of useIndicatorStatusTest
pac-guerreiro Oct 7, 2024
0b3d4ba
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 8, 2024
a969249
fix(debug mode): message not fitting in the UI
pac-guerreiro Oct 8, 2024
afb71fc
fix(debug mode): wrong routes used to redirect user to settings problems
pac-guerreiro Oct 8, 2024
3ba4af8
feat(debug mode): improve english translations
pac-guerreiro Oct 8, 2024
b982f41
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 10, 2024
e03d762
refactor(debug mode): apply suggestions
pac-guerreiro Oct 10, 2024
6a5423e
chore(debug mode): improve english translations and add spanish trans…
pac-guerreiro Oct 11, 2024
03db4d5
fix(debug mode): incorrect route for reimbursement account problems
pac-guerreiro Oct 11, 2024
417a838
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 11, 2024
d640a57
chore: remove old todo
pac-guerreiro Oct 11, 2024
584458f
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 14, 2024
3d89ae4
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 14, 2024
71cab4a
refactor: apply suggestions
pac-guerreiro Oct 14, 2024
0e87f1e
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 17, 2024
0bef463
chore(debug mode): apply suggestions
pac-guerreiro Oct 17, 2024
42b3f45
Merge branch 'main' into pac-guerreiro/feature/49600-show-reason-for-…
pac-guerreiro Oct 18, 2024
6b64ae8
fix(debug mode): showing debug tab view when debug mode is disabled
pac-guerreiro Oct 18, 2024
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
15 changes: 15 additions & 0 deletions src/CONST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5776,6 +5776,21 @@ const CONST = {
TAGS_ARTICLE_LINK: 'https://help.expensify.com/articles/expensify-classic/workspaces/Create-tags#import-a-spreadsheet-1',
},

SETTINGS_STATUS: {
pac-guerreiro marked this conversation as resolved.
Show resolved Hide resolved
HAS_USER_WALLET_ERRORS: 'hasUserWalletErrors',
HAS_PAYMENT_METHOD_ERROR: 'hasPaymentMethodError',
HAS_POLICY_ERRORS: 'hasPolicyError',
HAS_CUSTOM_UNITS_ERROR: 'hasCustomUnitsError',
HAS_EMPLOYEE_LIST_ERROR: 'hasEmployeeListError',
HAS_SYNC_ERRORS: 'hasSyncError',
HAS_SUBSCRIPTION_ERRORS: 'hasSubscriptionError',
HAS_REIMBURSEMENT_ACCOUNT_ERRORS: 'hasReimbursementAccountErrors',
HAS_LOGIN_LIST_ERROR: 'hasLoginListError',
HAS_WALLET_TERMS_ERRORS: 'hasWalletTermsErrors',
HAS_LOGIN_LIST_INFO: 'hasLoginListInfo',
HAS_SUBSCRIPTION_INFO: 'hasSubscriptionInfo',
},

DEBUG: {
DETAILS: 'details',
JSON: 'json',
Expand Down
102 changes: 5 additions & 97 deletions src/components/Indicator.tsx
Original file line number Diff line number Diff line change
@@ -1,109 +1,17 @@
import React from 'react';
import {StyleSheet, View} from 'react-native';
import type {OnyxCollection, OnyxEntry} from 'react-native-onyx';
import {useOnyx, withOnyx} from 'react-native-onyx';
import useTheme from '@hooks/useTheme';
import useSettingsStatus from '@hooks/useSettingsStatus';
import useThemeStyles from '@hooks/useThemeStyles';
import {isConnectionInProgress} from '@libs/actions/connections';
import * as PolicyUtils from '@libs/PolicyUtils';
import * as SubscriptionUtils from '@libs/SubscriptionUtils';
import * as UserUtils from '@libs/UserUtils';
import * as PaymentMethods from '@userActions/PaymentMethods';
import ONYXKEYS from '@src/ONYXKEYS';
import type {BankAccountList, FundList, LoginList, Policy, ReimbursementAccount, UserWallet, WalletTerms} from '@src/types/onyx';

type CheckingMethod = () => boolean;

type IndicatorOnyxProps = {
/** All the user's policies (from Onyx via withFullPolicy) */
policies: OnyxCollection<Policy>;

/** List of bank accounts */
bankAccountList: OnyxEntry<BankAccountList>;

/** List of user cards */
fundList: OnyxEntry<FundList>;

/** The user's wallet (coming from Onyx) */
userWallet: OnyxEntry<UserWallet>;

/** Bank account attached to free plan */
reimbursementAccount: OnyxEntry<ReimbursementAccount>;

/** Information about the user accepting the terms for payments */
walletTerms: OnyxEntry<WalletTerms>;

/** Login list for the user that is signed in */
loginList: OnyxEntry<LoginList>;
};

type IndicatorProps = IndicatorOnyxProps;

function Indicator({reimbursementAccount, policies, bankAccountList, fundList, userWallet, walletTerms, loginList}: IndicatorOnyxProps) {
const theme = useTheme();
function Indicator() {
const styles = useThemeStyles();
const [allConnectionSyncProgresses] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_CONNECTION_SYNC_PROGRESS}`);

// If a policy was just deleted from Onyx, then Onyx will pass a null value to the props, and
// those should be cleaned out before doing any error checking
const cleanPolicies = Object.fromEntries(Object.entries(policies ?? {}).filter(([, policy]) => policy?.id));

// All of the error & info-checking methods are put into an array. This is so that using _.some() will return
// early as soon as the first error / info condition is returned. This makes the checks very efficient since
// we only care if a single error / info condition exists anywhere.
const errorCheckingMethods: CheckingMethod[] = [
() => Object.keys(userWallet?.errors ?? {}).length > 0,
() => PaymentMethods.hasPaymentMethodError(bankAccountList, fundList),
() => Object.values(cleanPolicies).some(PolicyUtils.hasPolicyError),
() => Object.values(cleanPolicies).some(PolicyUtils.hasCustomUnitsError),
() => Object.values(cleanPolicies).some(PolicyUtils.hasEmployeeListError),
() =>
Object.values(cleanPolicies).some((cleanPolicy) =>
PolicyUtils.hasSyncError(
cleanPolicy,
isConnectionInProgress(allConnectionSyncProgresses?.[`${ONYXKEYS.COLLECTION.POLICY_CONNECTION_SYNC_PROGRESS}${cleanPolicy?.id}`], cleanPolicy),
),
),
() => SubscriptionUtils.hasSubscriptionRedDotError(),
() => Object.keys(reimbursementAccount?.errors ?? {}).length > 0,
() => !!loginList && UserUtils.hasLoginListError(loginList),

// Wallet term errors that are not caused by an IOU (we show the red brick indicator for those in the LHN instead)
() => Object.keys(walletTerms?.errors ?? {}).length > 0 && !walletTerms?.chatReportID,
];
const infoCheckingMethods: CheckingMethod[] = [() => !!loginList && UserUtils.hasLoginListInfo(loginList), () => SubscriptionUtils.hasSubscriptionGreenDotInfo()];
const shouldShowErrorIndicator = errorCheckingMethods.some((errorCheckingMethod) => errorCheckingMethod());
const shouldShowInfoIndicator = !shouldShowErrorIndicator && infoCheckingMethods.some((infoCheckingMethod) => infoCheckingMethod());
const {indicatorColor, status} = useSettingsStatus();

const indicatorColor = shouldShowErrorIndicator ? theme.danger : theme.success;
const indicatorStyles = [styles.alignItemsCenter, styles.justifyContentCenter, styles.statusIndicator(indicatorColor)];

return (shouldShowErrorIndicator || shouldShowInfoIndicator) && <View style={StyleSheet.flatten(indicatorStyles)} />;
return !!status && <View style={StyleSheet.flatten(indicatorStyles)} />;
}

Indicator.displayName = 'Indicator';

export default withOnyx<IndicatorProps, IndicatorOnyxProps>({
policies: {
key: ONYXKEYS.COLLECTION.POLICY,
},
bankAccountList: {
key: ONYXKEYS.BANK_ACCOUNT_LIST,
},
// @ts-expect-error: ONYXKEYS.REIMBURSEMENT_ACCOUNT is conflicting with ONYXKEYS.FORMS.REIMBURSEMENT_ACCOUNT_FORM
reimbursementAccount: {
key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
},
fundList: {
key: ONYXKEYS.FUND_LIST,
},
userWallet: {
key: ONYXKEYS.USER_WALLET,
},
walletTerms: {
key: ONYXKEYS.WALLET_TERMS,
},
loginList: {
key: ONYXKEYS.LOGIN_LIST,
},
})(Indicator);
export default Indicator;
74 changes: 74 additions & 0 deletions src/hooks/useSettingsStatus.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
import {useOnyx} from 'react-native-onyx';
import type {ValueOf} from 'type-fest';
import {isConnectionInProgress} from '@libs/actions/connections';
import * as PolicyUtils from '@libs/PolicyUtils';
import * as SubscriptionUtils from '@libs/SubscriptionUtils';
import * as UserUtils from '@libs/UserUtils';
import * as PaymentMethods from '@userActions/PaymentMethods';
import CONST from '@src/CONST';
import ONYXKEYS from '@src/ONYXKEYS';
import useTheme from './useTheme';

type SettingsStatus = {
indicatorColor: string;
status: ValueOf<typeof CONST.SETTINGS_STATUS> | undefined;
idOfPolicyWithErrors: string | undefined;
};

function useSettingsStatus(): SettingsStatus {
pac-guerreiro marked this conversation as resolved.
Show resolved Hide resolved
const theme = useTheme();
const [allConnectionSyncProgresses] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_CONNECTION_SYNC_PROGRESS}`);
const [policies] = useOnyx(ONYXKEYS.COLLECTION.POLICY);
const [bankAccountList] = useOnyx(ONYXKEYS.BANK_ACCOUNT_LIST);
const [reimbursementAccount] = useOnyx(ONYXKEYS.REIMBURSEMENT_ACCOUNT);
const [fundList] = useOnyx(ONYXKEYS.FUND_LIST);
const [userWallet] = useOnyx(ONYXKEYS.USER_WALLET);
const [walletTerms] = useOnyx(ONYXKEYS.WALLET_TERMS);
const [loginList] = useOnyx(ONYXKEYS.LOGIN_LIST);

// If a policy was just deleted from Onyx, then Onyx will pass a null value to the props, and
// those should be cleaned out before doing any error checking
const cleanPolicies = Object.fromEntries(Object.entries(policies ?? {}).filter(([, policy]) => policy?.id));

const policyErrors = {
[CONST.SETTINGS_STATUS.HAS_POLICY_ERRORS]: Object.values(cleanPolicies).find(PolicyUtils.hasPolicyError),
[CONST.SETTINGS_STATUS.HAS_CUSTOM_UNITS_ERROR]: Object.values(cleanPolicies).find(PolicyUtils.hasCustomUnitsError),
[CONST.SETTINGS_STATUS.HAS_EMPLOYEE_LIST_ERROR]: Object.values(cleanPolicies).find(PolicyUtils.hasEmployeeListError),
[CONST.SETTINGS_STATUS.HAS_SYNC_ERRORS]: Object.values(cleanPolicies).find((cleanPolicy) =>
PolicyUtils.hasSyncError(
cleanPolicy,
isConnectionInProgress(allConnectionSyncProgresses?.[`${ONYXKEYS.COLLECTION.POLICY_CONNECTION_SYNC_PROGRESS}${cleanPolicy?.id}`], cleanPolicy),
),
),
};

// All of the error & info-checking methods are put into an array. This is so that using _.some() will return
// early as soon as the first error / info condition is returned. This makes the checks very efficient since
// we only care if a single error / info condition exists anywhere.
const errorChecking = {
[CONST.SETTINGS_STATUS.HAS_USER_WALLET_ERRORS]: Object.keys(userWallet?.errors ?? {}).length > 0,
[CONST.SETTINGS_STATUS.HAS_PAYMENT_METHOD_ERROR]: PaymentMethods.hasPaymentMethodError(bankAccountList, fundList),
...(Object.fromEntries(Object.entries(policyErrors).map(([error, policy]) => [error, !!policy])) as Record<keyof typeof policyErrors, boolean>),
[CONST.SETTINGS_STATUS.HAS_SUBSCRIPTION_ERRORS]: SubscriptionUtils.hasSubscriptionRedDotError(),
[CONST.SETTINGS_STATUS.HAS_REIMBURSEMENT_ACCOUNT_ERRORS]: Object.keys(reimbursementAccount?.errors ?? {}).length > 0,
[CONST.SETTINGS_STATUS.HAS_LOGIN_LIST_ERROR]: !!loginList && UserUtils.hasLoginListError(loginList),
// Wallet term errors that are not caused by an IOU (we show the red brick indicator for those in the LHN instead)
[CONST.SETTINGS_STATUS.HAS_WALLET_TERMS_ERRORS]: Object.keys(walletTerms?.errors ?? {}).length > 0 && !walletTerms?.chatReportID,
};

const infoChecking = {
[CONST.SETTINGS_STATUS.HAS_LOGIN_LIST_INFO]: !!loginList && UserUtils.hasLoginListInfo(loginList),
[CONST.SETTINGS_STATUS.HAS_SUBSCRIPTION_INFO]: SubscriptionUtils.hasSubscriptionGreenDotInfo(),
};

const [error] = Object.entries(errorChecking).find(([, value]) => value) ?? [];
const [info] = Object.entries(infoChecking).find(([, value]) => value) ?? [];

const status = (error ?? info) as ValueOf<typeof CONST.SETTINGS_STATUS> | undefined;
const idOfPolicyWithErrors = Object.values(policyErrors).find(Boolean)?.id;
const indicatorColor = error ? theme.danger : theme.success;

return {indicatorColor, status, idOfPolicyWithErrors};
}

export default useSettingsStatus;
16 changes: 16 additions & 0 deletions src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4899,6 +4899,22 @@ const translations = {
date: 'Date',
time: 'Time',
none: 'None',
settingsStatus: {
pac-guerreiro marked this conversation as resolved.
Show resolved Hide resolved
theresAReportAwaitingAction: "There's a report awaiting action",
theresAReportWithErrors: "There's a report with errors",
workspaceHasCustomUnitsErrors: 'Workspace has custom units errors',
workspaceHasEmployeeListErrors: 'Workspace has employee list errors',
profileHasErrors: 'Profile has errors',
profileRequiresAttention: 'Profile requires attention',
walletHasPaymentMethodError: 'Wallet has payment method error',
workspaceHasErrors: 'Workspace has errors',
workspaceHasReimbursementAccountError: 'Workspace has reimbursement account error',
subscriptionHasErrors: 'Subscription has errors',
subscriptionRequiresAttention: 'Subscription requires attention',
policyAccountingHasSyncErrors: 'Policy accounting has sync errors',
walletHasErrors: 'Wallet has errors',
walletHasTermsErrors: 'Wallet has terms errors',
},
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import ONYXKEYS from '@src/ONYXKEYS';
import type {Route} from '@src/ROUTES';
import ROUTES from '@src/ROUTES';
import SCREENS from '@src/SCREENS';
import DebugTabView from './DebugTabView';

type BottomTabBarProps = {
selectedTab: string | undefined;
Expand Down Expand Up @@ -64,12 +65,14 @@ function BottomTabBar({selectedTab}: BottomTabBarProps) {
const styles = useThemeStyles();
const {translate} = useLocalize();
const {activeWorkspaceID} = useActiveWorkspace();
const reports = useOnyx(ONYXKEYS.COLLECTION.REPORT);
const reportActions = useOnyx(ONYXKEYS.COLLECTION.REPORT_ACTIONS);
const transactionViolations = useOnyx(ONYXKEYS.COLLECTION.TRANSACTION_VIOLATIONS);
const [chatTabBrickRoad, setChatTabBrickRoad] = useState<BrickRoad>(getChatTabBrickRoad(activeWorkspaceID));

useEffect(() => {
setChatTabBrickRoad(getChatTabBrickRoad(activeWorkspaceID));
}, [activeWorkspaceID, transactionViolations]);
}, [activeWorkspaceID, transactionViolations, reports, reportActions]);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice change 🥇


const navigateToChats = useCallback(() => {
if (selectedTab === SCREENS.HOME) {
Expand Down Expand Up @@ -108,51 +111,58 @@ function BottomTabBar({selectedTab}: BottomTabBarProps) {
}, [activeWorkspaceID, selectedTab]);

return (
<View style={styles.bottomTabBarContainer}>
<Tooltip text={translate('common.inbox')}>
<PressableWithFeedback
onPress={navigateToChats}
role={CONST.ROLE.BUTTON}
accessibilityLabel={translate('common.inbox')}
wrapperStyle={styles.flex1}
style={styles.bottomTabBarItem}
>
<View>
<Icon
src={Expensicons.Inbox}
fill={selectedTab === SCREENS.HOME ? theme.iconMenu : theme.icon}
width={variables.iconBottomBar}
height={variables.iconBottomBar}
/>
{chatTabBrickRoad && (
<View style={styles.bottomTabStatusIndicator(chatTabBrickRoad === CONST.BRICK_ROAD_INDICATOR_STATUS.INFO ? theme.iconSuccessFill : theme.danger)} />
)}
</View>
</PressableWithFeedback>
</Tooltip>
<Tooltip text={translate('common.search')}>
<PressableWithFeedback
onPress={navigateToSearch}
role={CONST.ROLE.BUTTON}
accessibilityLabel={translate('common.search')}
wrapperStyle={styles.flex1}
style={styles.bottomTabBarItem}
>
<View>
<Icon
src={Expensicons.MoneySearch}
fill={selectedTab === SCREENS.SEARCH.BOTTOM_TAB ? theme.iconMenu : theme.icon}
width={variables.iconBottomBar}
height={variables.iconBottomBar}
/>
</View>
</PressableWithFeedback>
</Tooltip>
<BottomTabAvatar isSelected={selectedTab === SCREENS.SETTINGS.ROOT} />
<View style={[styles.flex1, styles.bottomTabBarItem]}>
<BottomTabBarFloatingActionButton />
<>
<DebugTabView
pac-guerreiro marked this conversation as resolved.
Show resolved Hide resolved
selectedTab={selectedTab}
chatTabBrickRoad={chatTabBrickRoad}
activeWorkspaceID={activeWorkspaceID}
/>
<View style={styles.bottomTabBarContainer}>
<Tooltip text={translate('common.inbox')}>
<PressableWithFeedback
onPress={navigateToChats}
role={CONST.ROLE.BUTTON}
accessibilityLabel={translate('common.inbox')}
wrapperStyle={styles.flex1}
style={styles.bottomTabBarItem}
>
<View>
<Icon
src={Expensicons.Inbox}
fill={selectedTab === SCREENS.HOME ? theme.iconMenu : theme.icon}
width={variables.iconBottomBar}
height={variables.iconBottomBar}
/>
{chatTabBrickRoad && (
<View style={styles.bottomTabStatusIndicator(chatTabBrickRoad === CONST.BRICK_ROAD_INDICATOR_STATUS.INFO ? theme.iconSuccessFill : theme.danger)} />
)}
</View>
</PressableWithFeedback>
</Tooltip>
<Tooltip text={translate('common.search')}>
<PressableWithFeedback
onPress={navigateToSearch}
role={CONST.ROLE.BUTTON}
accessibilityLabel={translate('common.search')}
wrapperStyle={styles.flex1}
style={styles.bottomTabBarItem}
>
<View>
<Icon
src={Expensicons.MoneySearch}
fill={selectedTab === SCREENS.SEARCH.BOTTOM_TAB ? theme.iconMenu : theme.icon}
width={variables.iconBottomBar}
height={variables.iconBottomBar}
/>
</View>
</PressableWithFeedback>
</Tooltip>
<BottomTabAvatar isSelected={selectedTab === SCREENS.SETTINGS.ROOT} />
<View style={[styles.flex1, styles.bottomTabBarItem]}>
<BottomTabBarFloatingActionButton />
</View>
</View>
</View>
</>
);
}

Expand Down
Loading
Loading