Use easy-peasy to store file state data
This commit is contained in:
parent
918e0e2947
commit
5f59210c85
11 changed files with 110 additions and 34 deletions
54
resources/scripts/state/server/files.ts
Normal file
54
resources/scripts/state/server/files.ts
Normal file
|
@ -0,0 +1,54 @@
|
|||
import loadDirectory, { FileObject } from '@/api/server/files/loadDirectory';
|
||||
import { action, Action, thunk, Thunk } from 'easy-peasy';
|
||||
import { ServerStore } from '@/state/server/index';
|
||||
|
||||
export interface ServerFileStore {
|
||||
directory: string;
|
||||
contents: FileObject[];
|
||||
getDirectoryContents: Thunk<ServerFileStore, string, {}, ServerStore, Promise<void>>;
|
||||
setContents: Action<ServerFileStore, FileObject[]>;
|
||||
pushFile: Action<ServerFileStore, FileObject>;
|
||||
removeFile: Action<ServerFileStore, string>;
|
||||
setDirectory: Action<ServerFileStore, string>;
|
||||
}
|
||||
|
||||
const files: ServerFileStore = {
|
||||
directory: '',
|
||||
contents: [],
|
||||
|
||||
getDirectoryContents: thunk(async (actions, payload, { getStoreState }) => {
|
||||
const server = getStoreState().server.data;
|
||||
if (!server) {
|
||||
return;
|
||||
}
|
||||
|
||||
const contents = await loadDirectory(server.uuid, payload);
|
||||
|
||||
actions.setDirectory(payload);
|
||||
actions.setContents(contents);
|
||||
}),
|
||||
|
||||
setContents: action((state, payload) => {
|
||||
state.contents = payload;
|
||||
}),
|
||||
|
||||
pushFile: action((state, payload) => {
|
||||
const matchIndex = state.contents.findIndex(file => file.uuid === payload.uuid);
|
||||
if (matchIndex < 0) {
|
||||
state.contents = state.contents.concat(payload);
|
||||
return;
|
||||
}
|
||||
|
||||
state.contents[matchIndex] = payload;
|
||||
}),
|
||||
|
||||
removeFile: action((state, payload) => {
|
||||
state.contents = state.contents.filter(file => file.uuid !== payload);
|
||||
}),
|
||||
|
||||
setDirectory: action((state, payload) => {
|
||||
state.directory = payload;
|
||||
}),
|
||||
};
|
||||
|
||||
export default files;
|
Reference in a new issue