forked from pterodactyl/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabases.ts
More file actions
31 lines (25 loc) · 1007 Bytes
/
databases.ts
File metadata and controls
31 lines (25 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { action, Action } from 'easy-peasy';
import { ServerDatabase } from '@/api/server/databases/getServerDatabases';
export interface ServerDatabaseStore {
data: ServerDatabase[];
setDatabases: Action<ServerDatabaseStore, ServerDatabase[]>;
appendDatabase: Action<ServerDatabaseStore, ServerDatabase>;
removeDatabase: Action<ServerDatabaseStore, string>;
}
const databases: ServerDatabaseStore = {
data: [],
setDatabases: action((state, payload) => {
state.data = payload;
}),
appendDatabase: action((state, payload) => {
if (state.data.find((database) => database.id === payload.id)) {
state.data = state.data.map((database) => (database.id === payload.id ? payload : database));
} else {
state.data = [...state.data, payload];
}
}),
removeDatabase: action((state, payload) => {
state.data = [...state.data.filter((database) => database.id !== payload)];
}),
};
export default databases;