24 lines
522 B
JavaScript
24 lines
522 B
JavaScript
import { fetchScenes } from '#/src/scenes.js';
|
|
|
|
export async function onBeforeRender(pageContext) {
|
|
const { scenes, limit, total } = await fetchScenes({
|
|
scope: pageContext.routeParams.scope || 'latest',
|
|
isShowcased: true,
|
|
}, {
|
|
page: Number(pageContext.routeParams.page) || 1,
|
|
limit: Number(pageContext.urlParsed.search.limit) || 30,
|
|
aggregate: false,
|
|
}, pageContext.user);
|
|
|
|
return {
|
|
pageContext: {
|
|
title: pageContext.routeParams.scope,
|
|
pageProps: {
|
|
scenes,
|
|
limit,
|
|
total,
|
|
},
|
|
},
|
|
};
|
|
}
|