-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.ts
More file actions
392 lines (345 loc) · 13 KB
/
store.ts
File metadata and controls
392 lines (345 loc) · 13 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
import { create } from "zustand";
import { subscribeWithSelector } from "zustand/middleware";
import { isEmpty, isEqual, get as lodashGet } from "lodash-es";
import { PackingResult, RecipeData, RecipeManifest } from "../types";
import { jsonToString } from "../utils/recipeLoader";
import {
getRecipeDataFromFirebase,
getRecipeManifestFromFirebase,
} from "../utils/firebase";
import { EMPTY_PACKING_RESULT } from "./constants";
import { applyChangesToNestedObject } from "./utils";
export interface RecipeState {
selectedRecipeId: string;
inputOptions: Record<string, RecipeManifest>;
recipes: Record<string, RecipeData>;
packingResults: Record<string, PackingResult>;
}
export interface UIState {
isPacking: boolean;
localRecipeString?: string;
}
type Actions = {
loadInputOptions: () => Promise<void>;
loadRecipe: (recipeId: string) => Promise<void>;
loadAllRecipes: () => Promise<void>;
selectRecipe: (recipeId: string) => Promise<void>;
editRecipe: (
recipeID: string,
path: string,
value: string | number
) => void;
restoreRecipeDefault: (recipeId: string) => void;
getCurrentValue: (path: string) => string | number | undefined;
getOriginalValue: (path: string) => string | number | undefined;
startPacking: (
callback: (
recipeId: string,
configId: string,
recipeString: string
) => Promise<void>
) => Promise<void>;
setPackingResults: (results: PackingResult) => void;
setJobLogs: (logs: string) => void;
setJobId: (jobId: string) => void;
setLocalRecipe: (recipeString?: string) => void;
};
export type RecipeStore = RecipeState & UIState & Actions;
export const INITIAL_RECIPE_ID = "peroxisome_v_gradient_packing";
export const LOCAL_RECIPE_ID = "LOCAL_RECIPE";
const initialState: RecipeState & UIState = {
selectedRecipeId: INITIAL_RECIPE_ID,
inputOptions: {},
recipes: {},
isPacking: false,
localRecipeString: undefined,
packingResults: { [INITIAL_RECIPE_ID]: EMPTY_PACKING_RESULT },
};
export const useRecipeStore = create<RecipeStore>()(
subscribeWithSelector((set, get) => ({
...initialState,
loadInputOptions: async () => {
// Early return to prevent re-querying after options have loaded
if (!isEmpty(get().inputOptions)) return;
const inputOptions = await getRecipeManifestFromFirebase();
set({ inputOptions });
},
loadRecipe: async (recipeId) => {
const { recipes, inputOptions } = get();
if (recipes[recipeId]) return;
const editableFieldIds = inputOptions[recipeId].editableFieldIds;
const rec = await getRecipeDataFromFirebase(
recipeId,
editableFieldIds
);
set((s) => ({
recipes: {
...s.recipes,
[recipeId]: rec,
},
}));
},
loadAllRecipes: async () => {
const { inputOptions, loadRecipe } = get();
const optionList = Object.values(inputOptions || {});
if (optionList.length === 0) return;
const recipeIds = optionList
.map((o) => o?.recipeId)
.filter((id) => id && !get().recipes[id]);
// Make sure our default initial is in the options we queried
const initialIdToLoad = recipeIds.includes(INITIAL_RECIPE_ID)
? INITIAL_RECIPE_ID
: recipeIds[0];
// Ensure the bootstrap recipe is loaded & selected
await loadRecipe(initialIdToLoad);
// Load remaining recipes in the background (don’t block)
const remainingRecipesToLoad = recipeIds.filter(
(id) => id !== initialIdToLoad
);
Promise.all(
remainingRecipesToLoad.map((id) => loadRecipe(id))
).catch((err) => {
console.error("Error loading remaining recipes:", err);
});
},
selectRecipe: async (recipeId) => {
const sel = get().inputOptions[recipeId];
if (!sel) return;
set({
selectedRecipeId: recipeId,
});
if (sel.recipeId && !get().recipes[sel.recipeId]) {
await get().loadRecipe(sel.recipeId);
}
},
setLocalRecipe: (recipeString?: string) => {
if (recipeString) {
set({
localRecipeString: recipeString,
selectedRecipeId: LOCAL_RECIPE_ID
});
} else {
// Clear local recipe
set({
localRecipeString: undefined,
selectedRecipeId: INITIAL_RECIPE_ID,
packingResults: {
...get().packingResults,
[LOCAL_RECIPE_ID]: EMPTY_PACKING_RESULT,
},
});
}
},
setPackingResults: (results: PackingResult) => {
const currentRecipeId = get().selectedRecipeId;
set({
packingResults: {
...get().packingResults,
[currentRecipeId]: results,
},
});
},
setJobLogs: (logs: string) => {
const currentRecipeId = get().selectedRecipeId;
set({
packingResults: {
...get().packingResults,
[currentRecipeId]: {
...get().packingResults[currentRecipeId],
jobLogs: logs,
},
},
});
},
setJobId: (jobId: string) => {
const currentRecipeId = get().selectedRecipeId;
set({
packingResults: {
...get().packingResults,
[currentRecipeId]: {
...get().packingResults[currentRecipeId],
jobId: jobId,
},
},
});
},
editRecipe: (recipeId, path, value) => {
const rec = get().recipes[recipeId];
if (!rec) return;
const newEdits = { ...rec.edits };
const defaultValue = lodashGet(rec.defaultRecipe, path);
if (isEqual(defaultValue, value)) {
delete newEdits[path]; // no longer different from default
} else {
newEdits[path] = value;
}
set((state) => ({
recipes: {
...state.recipes,
[recipeId]: {
...rec,
edits: newEdits,
},
},
}));
},
getCurrentValue: (path) => {
const { selectedRecipeId, recipes } = get();
const rec = recipes[selectedRecipeId];
if (!rec) return undefined;
// First check if an edited value exists at this path
const editedValue = lodashGet(rec.edits, path);
if (editedValue !== undefined) {
if (
typeof editedValue === "string" ||
typeof editedValue === "number"
) {
return editedValue;
}
return undefined;
}
// Otherwise, fall back to the default recipe
const defaultValue = lodashGet(rec.defaultRecipe, path);
if (
typeof defaultValue === "string" ||
typeof defaultValue === "number"
) {
return defaultValue;
}
return undefined;
},
getOriginalValue: (path) => {
const { selectedRecipeId, recipes } = get();
const rec = recipes[selectedRecipeId]?.defaultRecipe;
if (!rec) return undefined;
const v = lodashGet(rec, path);
return typeof v === "string" || typeof v === "number"
? v
: undefined;
},
startPacking: async (callback) => {
const s = get();
const input = s.inputOptions[s.selectedRecipeId];
const configId = input?.configId ?? "";
const { defaultRecipe, edits } = s.recipes[s.selectedRecipeId];
const recipeObject = applyChangesToNestedObject(
defaultRecipe,
edits
);
if (!recipeObject) return;
const recipeString = jsonToString(recipeObject);
set({ isPacking: true });
try {
await callback(s.selectedRecipeId, configId, recipeString);
} finally {
set({ isPacking: false });
}
},
restoreRecipeDefault: (recipeId) => {
set((state) => {
const rec = state.recipes[recipeId];
if (!rec) return {};
return {
recipes: {
...state.recipes,
[recipeId]: {
...rec,
edits: {},
},
},
};
});
},
}))
);
// Basic selectors
export const useSelectedRecipeId = () =>
useRecipeStore((s) => s.selectedRecipeId);
export const useInputOptions = () => useRecipeStore((s) => s.inputOptions);
export const useIsPacking = () => useRecipeStore((s) => s.isPacking);
export const useFieldsToDisplay = () =>
useRecipeStore((s) => s.recipes[s.selectedRecipeId]?.editableFields);
export const useRecipes = () => useRecipeStore((s) => s.recipes);
export const usePackingResults = () => useRecipeStore((s) => s.packingResults);
export const useLocalRecipeString = () => useRecipeStore((s) => s.localRecipeString);
export const useCurrentRecipeObject = () => {
const recipe = useCurrentRecipeData();
return recipe
? applyChangesToNestedObject(recipe.defaultRecipe, recipe.edits)
: undefined;
};
const useCurrentRecipeManifest = () => {
const selectedRecipeId = useSelectedRecipeId();
const inputOptions = useInputOptions();
if (!selectedRecipeId) return undefined;
return inputOptions[selectedRecipeId];
};
export const useCurrentRecipeData = () => {
const selectedRecipeId = useSelectedRecipeId();
const recipes = useRecipes();
return recipes[selectedRecipeId] || undefined;
};
const useCurrentPackingResult = () => {
const selectedRecipeId = useSelectedRecipeId();
const packingResults = usePackingResults();
return packingResults[selectedRecipeId] || EMPTY_PACKING_RESULT;
};
const useDefaultResultPath = () => {
const manifest = useCurrentRecipeManifest();
// the default URL is stored in the manifest which loads before
// the recipe is queried, using both data here prevents the viewer
// loading ahead of the recipe
const recipe = useCurrentRecipeData();
return (recipe && manifest?.defaultResultPath) || "";
};
export const useRunTime = () => {
const results = useCurrentPackingResult();
return results.runTime;
};
export const useJobLogs = () => {
const results = useCurrentPackingResult();
return results.jobLogs;
};
export const useJobId = () => {
const results = useCurrentPackingResult();
return results.jobId;
};
export const useOutputsDirectory = () => {
const results = useCurrentPackingResult();
return results.outputDir;
};
export const useResultUrl = () => {
const results = useCurrentPackingResult();
const currentRecipeId = useSelectedRecipeId();
const defaultResultPath = useDefaultResultPath();
let path = "";
if (results.resultUrl) {
path = results.resultUrl;
} else if (currentRecipeId) {
path = defaultResultPath;
}
return path;
};
export const useIsOriginalRecipe = () => {
const recipe = useCurrentRecipeData();
if (!recipe) return true;
return Object.keys(recipe.edits).length === 0;
};
// Action selectors
export const useLoadInputOptions = () =>
useRecipeStore((s) => s.loadInputOptions);
export const useLoadAllRecipes = () => useRecipeStore((s) => s.loadAllRecipes);
export const useSelectRecipe = () => useRecipeStore((s) => s.selectRecipe);
export const useEditRecipe = () => useRecipeStore((s) => s.editRecipe);
export const useRestoreRecipeDefault = () =>
useRecipeStore((s) => s.restoreRecipeDefault);
export const useStartPacking = () => useRecipeStore((s) => s.startPacking);
export const useGetCurrentValue = () =>
useRecipeStore((s) => s.getCurrentValue);
export const useGetOriginalValue = () =>
useRecipeStore((s) => s.getOriginalValue);
export const useSetPackingResults = () =>
useRecipeStore((s) => s.setPackingResults);
export const useSetJobLogs = () => useRecipeStore((s) => s.setJobLogs);
export const useSetJobId = () => useRecipeStore((s) => s.setJobId);
export const useSetLocalRecipe = () => useRecipeStore((s) => s.setLocalRecipe);