webapp/src/pages/expo/expo.page.server.ts

19 lines
559 B
TypeScript
Raw Normal View History

2023-10-10 15:38:02 +00:00
import type { PageContext } from '../../renderer/types'
import type { PageProps } from '../types'
2023-10-10 15:38:02 +00:00
import { PRERENDERED_ARTICLES_COUNT } from '../../components/Views/Expo/Expo'
import { apiClient } from '../../utils/apiClient'
2023-10-10 15:38:02 +00:00
export const onBeforeRender = async (_pageContext: PageContext) => {
const expoShouts = await apiClient.getShouts({
filters: { excludeLayout: 'article' },
limit: PRERENDERED_ARTICLES_COUNT,
2023-10-10 15:38:02 +00:00
})
const pageProps: PageProps = { expoShouts, seo: { title: '' } }
2023-10-10 15:38:02 +00:00
return {
pageContext: {
pageProps,
},
2023-10-10 15:38:02 +00:00
}
}