Skip to content

Commit

Permalink
Merge pull request #49341 from rezkiy37/fix/49340-improve-refresh
Browse files Browse the repository at this point in the history
Improve refresh and reload when error occured
  • Loading branch information
justinpersaud authored Oct 4, 2024
2 parents 3c91e07 + 2e2d5a0 commit 7d66ba7
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 6 deletions.
4 changes: 4 additions & 0 deletions src/CONST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5452,6 +5452,7 @@ const CONST = {
INITIAL_URL: 'INITIAL_URL',
ACTIVE_WORKSPACE_ID: 'ACTIVE_WORKSPACE_ID',
RETRY_LAZY_REFRESHED: 'RETRY_LAZY_REFRESHED',
LAST_REFRESH_TIMESTAMP: 'LAST_REFRESH_TIMESTAMP',
},

RESERVATION_TYPE: {
Expand Down Expand Up @@ -5785,6 +5786,9 @@ const CONST = {
TAGS_ARTICLE_LINK: 'https://help.expensify.com/articles/expensify-classic/workspaces/Create-tags#import-a-spreadsheet-1',
},

// The timeout duration (1 minute) (in milliseconds) before the window reloads due to an error.
ERROR_WINDOW_RELOAD_TIMEOUT: 60000,

DEBUG: {
DETAILS: 'details',
JSON: 'json',
Expand Down
10 changes: 10 additions & 0 deletions src/hooks/usePageRefresh/index.native.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import {useErrorBoundary} from 'react-error-boundary';
import type UsePageRefresh from './type';

const usePageRefresh: UsePageRefresh = () => {
const {resetBoundary} = useErrorBoundary();

return resetBoundary;
};

export default usePageRefresh;
24 changes: 24 additions & 0 deletions src/hooks/usePageRefresh/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import differenceInMilliseconds from 'date-fns/differenceInMilliseconds';
import {useErrorBoundary} from 'react-error-boundary';
import CONST from '@src/CONST';
import type UsePageRefresh from './type';

const usePageRefresh: UsePageRefresh = () => {
const {resetBoundary} = useErrorBoundary();

return () => {
const lastRefreshTimestamp = JSON.parse(sessionStorage.getItem(CONST.SESSION_STORAGE_KEYS.LAST_REFRESH_TIMESTAMP) ?? 'null') as string;

if (lastRefreshTimestamp === null || differenceInMilliseconds(Date.now(), Number(lastRefreshTimestamp)) > CONST.ERROR_WINDOW_RELOAD_TIMEOUT) {
resetBoundary();
sessionStorage.setItem(CONST.SESSION_STORAGE_KEYS.LAST_REFRESH_TIMESTAMP, Date.now().toString());

return;
}

window.location.reload();
sessionStorage.removeItem(CONST.SESSION_STORAGE_KEYS.LAST_REFRESH_TIMESTAMP);
};
};

export default usePageRefresh;
3 changes: 3 additions & 0 deletions src/hooks/usePageRefresh/type.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
type UsePageRefresh = () => () => void;

export default UsePageRefresh;
11 changes: 5 additions & 6 deletions src/pages/ErrorPage/GenericErrorPage.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import {useErrorBoundary} from 'react-error-boundary';
import {View} from 'react-native';
import LogoWordmark from '@assets/images/expensify-wordmark.svg';
import Button from '@components/Button';
Expand All @@ -10,6 +9,7 @@ import SafeAreaConsumer from '@components/SafeAreaConsumer';
import Text from '@components/Text';
import TextLink from '@components/TextLink';
import useLocalize from '@hooks/useLocalize';
import usePageRefresh from '@hooks/usePageRefresh';
import useStyleUtils from '@hooks/useStyleUtils';
import useTheme from '@hooks/useTheme';
import useThemeStyles from '@hooks/useThemeStyles';
Expand All @@ -23,8 +23,7 @@ function GenericErrorPage() {
const styles = useThemeStyles();
const StyleUtils = useStyleUtils();
const {translate} = useLocalize();

const {resetBoundary} = useErrorBoundary();
const refreshPage = usePageRefresh();

return (
<SafeAreaConsumer>
Expand Down Expand Up @@ -59,16 +58,16 @@ function GenericErrorPage() {
<View style={[styles.flex1, styles.flexRow]}>
<Button
success
onPress={resetBoundary}
text={translate('genericErrorPage.refresh')}
style={styles.mr3}
onPress={refreshPage}
/>
<Button
text={translate('initialSettingsPage.signOut')}
onPress={() => {
Session.signOutAndRedirectToSignIn();
resetBoundary();
refreshPage();
}}
text={translate('initialSettingsPage.signOut')}
/>
</View>
</View>
Expand Down

0 comments on commit 7d66ba7

Please sign in to comment.