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

Task/WP-728: Mutation hook: Copy file #1000

Merged
merged 12 commits into from
Nov 21, 2024
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;
Loading