2020-07-11 06:09:37 +00:00
|
|
|
import { action, Action } from 'easy-peasy';
|
2020-04-10 20:57:24 +00:00
|
|
|
import { cleanDirectoryPath } from '@/helpers';
|
2019-08-04 21:58:31 +00:00
|
|
|
|
|
|
|
export interface ServerFileStore {
|
|
|
|
directory: string;
|
2020-07-11 23:47:13 +00:00
|
|
|
selectedFiles: string[];
|
|
|
|
|
2019-08-04 21:58:31 +00:00
|
|
|
setDirectory: Action<ServerFileStore, string>;
|
2020-07-11 23:47:13 +00:00
|
|
|
setSelectedFiles: Action<ServerFileStore, string[]>;
|
2020-07-11 23:57:30 +00:00
|
|
|
appendSelectedFile: Action<ServerFileStore, string>;
|
|
|
|
removeSelectedFile: Action<ServerFileStore, string>;
|
2019-08-04 21:58:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const files: ServerFileStore = {
|
2019-08-06 04:52:48 +00:00
|
|
|
directory: '/',
|
2020-07-11 23:47:13 +00:00
|
|
|
selectedFiles: [],
|
2019-08-04 21:58:31 +00:00
|
|
|
|
|
|
|
setDirectory: action((state, payload) => {
|
2020-06-13 16:49:32 +00:00
|
|
|
state.directory = cleanDirectoryPath(payload);
|
2019-08-04 21:58:31 +00:00
|
|
|
}),
|
2020-07-11 23:47:13 +00:00
|
|
|
|
|
|
|
setSelectedFiles: action((state, payload) => {
|
|
|
|
state.selectedFiles = payload;
|
|
|
|
}),
|
2020-07-11 23:57:30 +00:00
|
|
|
|
|
|
|
appendSelectedFile: action((state, payload) => {
|
|
|
|
state.selectedFiles = state.selectedFiles.filter(f => f !== payload).concat(payload);
|
|
|
|
}),
|
|
|
|
|
|
|
|
removeSelectedFile: action((state, payload) => {
|
|
|
|
state.selectedFiles = state.selectedFiles.filter(f => f !== payload);
|
|
|
|
}),
|
2019-08-04 21:58:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default files;
|