2020-07-10 23:09:37 -07:00
|
|
|
import { action, Action } from 'easy-peasy';
|
2020-04-10 13:57:24 -07:00
|
|
|
import { cleanDirectoryPath } from '@/helpers';
|
2019-08-04 14:58:31 -07:00
|
|
|
|
2022-11-21 12:58:55 -08:00
|
|
|
export interface FileUploadData {
|
2022-07-24 23:18:32 +02:00
|
|
|
loaded: number;
|
2022-11-21 12:58:55 -08:00
|
|
|
readonly abort: AbortController;
|
2022-07-24 23:18:32 +02:00
|
|
|
readonly total: number;
|
|
|
|
}
|
|
|
|
|
2019-08-04 14:58:31 -07:00
|
|
|
export interface ServerFileStore {
|
|
|
|
directory: string;
|
2020-07-11 16:47:13 -07:00
|
|
|
selectedFiles: string[];
|
2022-11-21 12:58:55 -08:00
|
|
|
uploads: Record<string, FileUploadData>;
|
2020-07-11 16:47:13 -07:00
|
|
|
|
2019-08-04 14:58:31 -07:00
|
|
|
setDirectory: Action<ServerFileStore, string>;
|
2020-07-11 16:47:13 -07:00
|
|
|
setSelectedFiles: Action<ServerFileStore, string[]>;
|
2020-07-11 16:57:30 -07:00
|
|
|
appendSelectedFile: Action<ServerFileStore, string>;
|
|
|
|
removeSelectedFile: Action<ServerFileStore, string>;
|
2022-07-24 23:18:32 +02:00
|
|
|
|
2022-11-21 12:58:55 -08:00
|
|
|
pushFileUpload: Action<ServerFileStore, { name: string; data: FileUploadData }>;
|
|
|
|
setUploadProgress: Action<ServerFileStore, { name: string; loaded: number }>;
|
2022-07-24 18:50:47 -04:00
|
|
|
clearFileUploads: Action<ServerFileStore>;
|
2022-07-24 23:18:32 +02:00
|
|
|
removeFileUpload: Action<ServerFileStore, string>;
|
2022-12-04 16:36:53 -07:00
|
|
|
cancelFileUpload: Action<ServerFileStore, string>;
|
2019-08-04 14:58:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const files: ServerFileStore = {
|
2019-08-05 21:52:48 -07:00
|
|
|
directory: '/',
|
2020-07-11 16:47:13 -07:00
|
|
|
selectedFiles: [],
|
2022-11-21 12:58:55 -08:00
|
|
|
uploads: {},
|
2019-08-04 14:58:31 -07:00
|
|
|
|
|
|
|
setDirectory: action((state, payload) => {
|
2020-06-13 09:49:32 -07:00
|
|
|
state.directory = cleanDirectoryPath(payload);
|
2019-08-04 14:58:31 -07:00
|
|
|
}),
|
2020-07-11 16:47:13 -07:00
|
|
|
|
|
|
|
setSelectedFiles: action((state, payload) => {
|
|
|
|
state.selectedFiles = payload;
|
|
|
|
}),
|
2020-07-11 16:57:30 -07:00
|
|
|
|
|
|
|
appendSelectedFile: action((state, payload) => {
|
2022-06-26 15:13:52 -04:00
|
|
|
state.selectedFiles = state.selectedFiles.filter((f) => f !== payload).concat(payload);
|
2020-07-11 16:57:30 -07:00
|
|
|
}),
|
|
|
|
|
|
|
|
removeSelectedFile: action((state, payload) => {
|
2022-06-26 15:13:52 -04:00
|
|
|
state.selectedFiles = state.selectedFiles.filter((f) => f !== payload);
|
2020-07-11 16:57:30 -07:00
|
|
|
}),
|
2022-07-24 23:18:32 +02:00
|
|
|
|
2022-07-24 18:50:47 -04:00
|
|
|
clearFileUploads: action((state) => {
|
2022-11-21 12:58:55 -08:00
|
|
|
Object.values(state.uploads).forEach((upload) => upload.abort.abort());
|
|
|
|
|
|
|
|
state.uploads = {};
|
|
|
|
}),
|
|
|
|
|
|
|
|
pushFileUpload: action((state, payload) => {
|
|
|
|
state.uploads[payload.name] = payload.data;
|
2022-07-24 18:50:47 -04:00
|
|
|
}),
|
|
|
|
|
2022-11-21 12:58:55 -08:00
|
|
|
setUploadProgress: action((state, { name, loaded }) => {
|
|
|
|
if (state.uploads[name]) {
|
|
|
|
state.uploads[name].loaded = loaded;
|
2022-07-24 18:50:47 -04:00
|
|
|
}
|
2022-07-24 23:18:32 +02:00
|
|
|
}),
|
|
|
|
|
|
|
|
removeFileUpload: action((state, payload) => {
|
2022-12-04 16:36:53 -07:00
|
|
|
if (state.uploads[payload]) {
|
|
|
|
delete state.uploads[payload];
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
cancelFileUpload: action((state, payload) => {
|
2022-11-21 12:58:55 -08:00
|
|
|
if (state.uploads[payload]) {
|
|
|
|
// Abort the request if it is still in flight. If it already completed this is
|
|
|
|
// a no-op.
|
|
|
|
state.uploads[payload].abort.abort();
|
|
|
|
|
|
|
|
delete state.uploads[payload];
|
|
|
|
}
|
2022-07-24 23:18:32 +02:00
|
|
|
}),
|
2019-08-04 14:58:31 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
export default files;
|