v0.1.11 - Editor
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { redirect } from '@sveltejs/kit';
|
||||
import { api } from '$lib/api';
|
||||
import { getStoredClientSession, hasStoredClientSession } from '$lib/session';
|
||||
import { canOpenEditor, getWorkspaceHomeHref } from '$lib/workspace-access';
|
||||
|
||||
export async function load({ fetch }) {
|
||||
if (!hasStoredClientSession()) {
|
||||
return { rows: [] };
|
||||
}
|
||||
|
||||
const session = getStoredClientSession();
|
||||
if (!canOpenEditor(session)) {
|
||||
throw redirect(307, getWorkspaceHomeHref(session));
|
||||
}
|
||||
|
||||
try {
|
||||
const [rows, rawMaterials] = await Promise.all([
|
||||
api.editorProducts({ limit: 1000 }, fetch),
|
||||
api.rawMaterials(fetch)
|
||||
]);
|
||||
|
||||
return {
|
||||
rows,
|
||||
rawMaterials
|
||||
};
|
||||
} catch {
|
||||
return { rows: [], rawMaterials: [] };
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user