* feat: Split and simplify import/export pages in prep for more options * minor fixes * File operations for imports * test * icons
38 lines
939 B
TypeScript
38 lines
939 B
TypeScript
import { orderBy } from "lodash";
|
|
import { computed } from "mobx";
|
|
import FileOperation from "~/models/FileOperation";
|
|
import BaseStore, { RPCAction } from "./BaseStore";
|
|
import RootStore from "./RootStore";
|
|
|
|
export default class FileOperationsStore extends BaseStore<FileOperation> {
|
|
actions = [RPCAction.List, RPCAction.Info, RPCAction.Delete];
|
|
|
|
constructor(rootStore: RootStore) {
|
|
super(rootStore, FileOperation);
|
|
}
|
|
|
|
@computed
|
|
get imports(): FileOperation[] {
|
|
return orderBy(
|
|
Array.from(this.data.values()).reduce(
|
|
(acc, fileOp) => (fileOp.type === "import" ? [...acc, fileOp] : acc),
|
|
[]
|
|
),
|
|
"createdAt",
|
|
"desc"
|
|
);
|
|
}
|
|
|
|
@computed
|
|
get exports(): FileOperation[] {
|
|
return orderBy(
|
|
Array.from(this.data.values()).reduce(
|
|
(acc, fileOp) => (fileOp.type === "export" ? [...acc, fileOp] : acc),
|
|
[]
|
|
),
|
|
"createdAt",
|
|
"desc"
|
|
);
|
|
}
|
|
}
|