traxxx-web/pages/scene/+onBeforeRender.js

15 lines
300 B
JavaScript

import { fetchScenesById } from '#/src/scenes.js';
export async function onBeforeRender(pageContext) {
const [scene] = await fetchScenesById([Number(pageContext.routeParams.sceneId)], pageContext.user);
return {
pageContext: {
title: scene.title,
pageProps: {
scene,
},
},
};
}