43 lines
955 B
JavaScript
43 lines
955 B
JavaScript
import { fetchActorsById } from '#/src/actors.js';
|
|
import { fetchScenes } from '#/src/scenes.js';
|
|
import { curateScenesQuery } from '#/src/web/scenes.js';
|
|
|
|
export async function onBeforeRender(pageContext) {
|
|
const [[actor], actorScenes] = await Promise.all([
|
|
fetchActorsById([Number(pageContext.routeParams.actorId)], {}, pageContext.user),
|
|
fetchScenes(await curateScenesQuery({
|
|
...pageContext.urlQuery,
|
|
scope: pageContext.routeParams.scope || 'latest',
|
|
actorId: Number(pageContext.routeParams.actorId),
|
|
}), {
|
|
page: Number(pageContext.routeParams.page) || 1,
|
|
limit: Number(pageContext.urlParsed.search.limit) || 30,
|
|
aggregate: true,
|
|
}, pageContext.user),
|
|
]);
|
|
|
|
const {
|
|
scenes,
|
|
aggActors,
|
|
aggTags,
|
|
aggChannels,
|
|
total,
|
|
limit,
|
|
} = actorScenes;
|
|
|
|
return {
|
|
pageContext: {
|
|
title: actor.name,
|
|
pageProps: {
|
|
actor,
|
|
scenes,
|
|
aggActors,
|
|
aggTags,
|
|
aggChannels,
|
|
total,
|
|
limit,
|
|
},
|
|
},
|
|
};
|
|
}
|