Skip to content

Commit

Permalink
Merge branch 'main' into task/WP-505--APCD--File-Upload-Failures
Browse files Browse the repository at this point in the history
  • Loading branch information
jalowe13 authored Nov 21, 2024
2 parents 4e2acb4 + adb9b29 commit 4514880
Show file tree
Hide file tree
Showing 2 changed files with 157 additions and 37 deletions.
37 changes: 0 additions & 37 deletions client/src/hooks/datafiles/mutations/useCopy.js

This file was deleted.

157 changes: 157 additions & 0 deletions client/src/hooks/datafiles/mutations/useCopy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
import { useDispatch, useSelector, shallowEqual } from 'react-redux';
import { useSelectedFiles } from 'hooks/datafiles';
import Cookies from 'js-cookie';
import { apiClient } from 'utils/apiClient';
import { useMutation } from '@tanstack/react-query';
import truncateMiddle from 'utils/truncateMiddle';

export async function copyFileUtil({
api,
scheme,
system,
path,
filename,
filetype,
destApi,
destSystem,
destPath,
destPathName,
}: {
api: string;
scheme: string;
system: string;
path: string;
filename: string;
filetype: string;
destApi: string;
destSystem: string;
destPath: string;
destPathName: string;
}) {
let url: string, body: any;
if (api === destApi) {
url = `/api/datafiles/${api}/copy/${scheme}/${system}/${path}/`;
url = url.replace(/\/{2,}/g, '/');
body = {
dest_system: destSystem,
dest_path: destPath,
file_name: filename,
filetype,
dest_path_name: destPathName,
};
} else {
url = `/api/datafiles/transfer/${filetype}/`;
url = url.replace(/\/{2,}/g, '/');
body = {
src_api: api,
dest_api: destApi,
src_system: system,
dest_system: destSystem,
src_path: path,
dest_path: destPath,
dest_path_name: destPathName,
dirname: filename,
};
}

const response = await apiClient.put(url, body, {
headers: { 'X-CSRFToken': Cookies.get('csrftoken') || '' },
withCredentials: true,
});
return response.data;
}

function useCopy() {
const dispatch = useDispatch();

const { selectedFiles: selected } = useSelectedFiles();

const status = useSelector(
(state: any) => state.files.operationStatus.copy,
shallowEqual
);

const { scheme } = useSelector(
(state: any) => state.files.params.FilesListing
);
const setStatus = (newStatus: string) =>
dispatch({
type: 'DATA_FILES_SET_OPERATION_STATUS',
payload: { operation: 'copy', status: newStatus },
});

const { mutateAsync } = useMutation({ mutationFn: copyFileUtil });
const copy = ({
srcApi,
destApi,
destSystem,
destPath,
name,
callback,
}: {
srcApi: string;
destApi: string;
destSystem: string;
destPath: string;
name: string;
callback: any;
}) => {
const filteredSelected = selected
.filter((f: any) => status[f.id] !== 'SUCCESS')
.map((f: any) => ({ ...f, api: srcApi }));
const copyCalls: Promise<any>[] = filteredSelected.map((file: any) => {
// Copy File
dispatch({
type: 'DATA_FILES_SET_OPERATION_STATUS_BY_KEY',
payload: { status: 'RUNNING', key: file.id, operation: 'copy' },
});
return mutateAsync(
{
api: file.api,
scheme: scheme,
system: file.system,
path: file.path,
filename: file.name,
filetype: file.type,
destApi,
destSystem,
destPath,
destPathName: name,
},
{
onSuccess: () => {
dispatch({
type: 'DATA_FILES_SET_OPERATION_STATUS_BY_KEY',
payload: { status: 'SUCCESS', key: file.id, operation: 'copy' },
});
},
onError: (error: any) => {
dispatch({
type: 'DATA_FILES_SET_OPERATION_STATUS_BY_KEY',
payload: { status: 'ERROR', key: file.id, operation: 'copy' },
});
},
}
);
});
// Result
Promise.all(copyCalls).then(() => {
dispatch({
type: 'DATA_FILES_TOGGLE_MODAL',
payload: { operation: 'copy', props: {} },
});
dispatch({
type: 'ADD_TOAST',
payload: {
message: `${
copyCalls.length > 1 ? `${copyCalls.length} files` : 'File'
} copied to ${truncateMiddle(`${destPath}`, 20) || '/'}`,
},
});
callback();
});
};
return { copy, status, setStatus };
}

export default useCopy;

0 comments on commit 4514880

Please sign in to comment.