Skip to content

Commit

Permalink
Merge pull request #49343 from cretadn22/display-download-failure-modal
Browse files Browse the repository at this point in the history
Display download failure modal
  • Loading branch information
rlinoz committed Sep 19, 2024
2 parents df8ef03 + 289faed commit 25450d9
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/libs/actions/Policy/Category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ function setPolicyDistanceRatesDefaultCategory(policyID: string, currentCustomUn
API.write(WRITE_COMMANDS.SET_POLICY_DISTANCE_RATES_DEFAULT_CATEGORY, params, {optimisticData, successData, failureData});
}

function downloadCategoriesCSV(policyID: string) {
function downloadCategoriesCSV(policyID: string, onDownloadFailed: () => void) {
const finalParameters = enhanceParameters(WRITE_COMMANDS.EXPORT_CATEGORIES_CSV, {
policyID,
});
Expand All @@ -1053,7 +1053,7 @@ function downloadCategoriesCSV(policyID: string) {
formData.append(key, String(value));
});

fileDownload(ApiUtils.getCommandURL({command: WRITE_COMMANDS.EXPORT_CATEGORIES_CSV}), fileName, '', false, formData, CONST.NETWORK.METHOD.POST);
fileDownload(ApiUtils.getCommandURL({command: WRITE_COMMANDS.EXPORT_CATEGORIES_CSV}), fileName, '', false, formData, CONST.NETWORK.METHOD.POST, onDownloadFailed);
}

function setWorkspaceCategoryDescriptionHint(policyID: string, categoryName: string, commentHint: string) {
Expand Down
8 changes: 7 additions & 1 deletion src/libs/fileDownload/DownloadUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,13 @@ const fetchFileDownload: FileDownload = (url, fileName, successMessage = '', sho
};

return fetch(url, fetchOptions)
.then((response) => response.blob())
.then((response) => {
const contentType = response.headers.get('content-type');
if (contentType === 'application/json' && fileName?.includes('.csv')) {
throw new Error();
}
return response.blob();
})
.then((blob) => {
// Create blob link to download
const href = URL.createObjectURL(new Blob([blob]));
Expand Down
4 changes: 4 additions & 0 deletions src/libs/fileDownload/index.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ const postDownloadFile = (url: string, fileName?: string, formData?: FormData, o
if (!response.ok) {
throw new Error('Failed to download file');
}
const contentType = response.headers.get('content-type');
if (contentType === 'application/json' && fileName?.includes('.csv')) {
throw new Error();
}
return response.text();
})
.then((fileData) => {
Expand Down
4 changes: 2 additions & 2 deletions src/libs/fileDownload/index.desktop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import type {FileDownload} from './types';
/**
* The function downloads an attachment on desktop platforms.
*/
const fileDownload: FileDownload = (url, fileName, successMessage, shouldOpenExternalLink, formData, requestType) => {
const fileDownload: FileDownload = (url, fileName, successMessage, shouldOpenExternalLink, formData, requestType, onDownloadFailed?: () => void) => {
if (requestType === CONST.NETWORK.METHOD.POST) {
window.electron.send(ELECTRON_EVENTS.DOWNLOAD);
return fetchFileDownload(url, fileName, successMessage, shouldOpenExternalLink, formData, requestType);
return fetchFileDownload(url, fileName, successMessage, shouldOpenExternalLink, formData, requestType, onDownloadFailed);
}

const options: Options = {
Expand Down
4 changes: 4 additions & 0 deletions src/libs/fileDownload/index.ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ const postDownloadFile = (url: string, fileName?: string, formData?: FormData, o
if (!response.ok) {
throw new Error('Failed to download file');
}
const contentType = response.headers.get('content-type');
if (contentType === 'application/json' && fileName?.includes('.csv')) {
throw new Error();
}
return response.text();
})
.then((fileData) => {
Expand Down
29 changes: 23 additions & 6 deletions src/pages/workspace/categories/WorkspaceCategoriesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Button from '@components/Button';
import ButtonWithDropdownMenu from '@components/ButtonWithDropdownMenu';
import type {DropdownOption} from '@components/ButtonWithDropdownMenu/types';
import ConfirmModal from '@components/ConfirmModal';
import DecisionModal from '@components/DecisionModal';
import EmptyStateComponent from '@components/EmptyStateComponent';
import HeaderWithBackButton from '@components/HeaderWithBackButton';
import * as Expensicons from '@components/Icon/Expensicons';
Expand Down Expand Up @@ -55,13 +56,14 @@ type PolicyOption = ListItem & {
type WorkspaceCategoriesPageProps = StackScreenProps<FullScreenNavigatorParamList, typeof SCREENS.WORKSPACE.CATEGORIES>;

function WorkspaceCategoriesPage({route}: WorkspaceCategoriesPageProps) {
const {shouldUseNarrowLayout} = useResponsiveLayout();
const {shouldUseNarrowLayout, isSmallScreenWidth} = useResponsiveLayout();
const {windowWidth} = useWindowDimensions();
const styles = useThemeStyles();
const theme = useTheme();
const {translate} = useLocalize();
const [isOfflineModalVisible, setIsOfflineModalVisible] = useState(false);
const [selectedCategories, setSelectedCategories] = useState<Record<string, boolean>>({});
const [isDownloadFailureModalVisible, setIsDownloadFailureModalVisible] = useState(false);
const [deleteCategoriesConfirmModalVisible, setDeleteCategoriesConfirmModalVisible] = useState(false);
const isFocused = useIsFocused();
const {environmentURL} = useEnvironment();
Expand Down Expand Up @@ -311,21 +313,27 @@ function WorkspaceCategoriesPage({route}: WorkspaceCategoriesPageProps) {
Navigation.navigate(ROUTES.WORKSPACE_CATEGORIES_IMPORT.getRoute(policyId));
},
},
{
];
if (hasVisibleCategories) {
menuItems.push({
icon: Expensicons.Download,
text: translate('spreadsheet.downloadCSV'),
onSelected: () => {
if (isOffline) {
Modal.close(() => setIsOfflineModalVisible(true));
return;
}
Category.downloadCategoriesCSV(policyId);
Modal.close(() => {
Category.downloadCategoriesCSV(policyId, () => {
setIsDownloadFailureModalVisible(true);
});
});
},
},
];
});
}

return menuItems;
}, [policyId, translate, isOffline]);
}, [policyId, translate, isOffline, hasVisibleCategories]);

const selectionModeHeader = selectionMode?.isEnabled && shouldUseNarrowLayout;

Expand Down Expand Up @@ -418,6 +426,15 @@ function WorkspaceCategoriesPage({route}: WorkspaceCategoriesPageProps) {
confirmText={translate('common.buttonConfirm')}
shouldShowCancelButton={false}
/>
<DecisionModal
title={translate('common.downloadFailedTitle')}
prompt={translate('common.downloadFailedDescription')}
isSmallScreenWidth={isSmallScreenWidth}
onSecondOptionSubmit={() => setIsDownloadFailureModalVisible(false)}
secondOptionText={translate('common.buttonConfirm')}
isVisible={isDownloadFailureModalVisible}
onClose={() => setIsDownloadFailureModalVisible(false)}
/>
</ScreenWrapper>
</AccessOrNotFoundWrapper>
);
Expand Down

0 comments on commit 25450d9

Please sign in to comment.