webapp/src/pages/allAuthors.page.tsx
2024-02-04 14:25:21 +03:00

32 lines
798 B
TypeScript

import type { PageProps } from './types'
import { createSignal, onMount } from 'solid-js'
import { AllAuthorsView } from '../components/Views/AllAuthors'
import { PageLayout } from '../components/_shared/PageLayout'
import { useLocalize } from '../context/localize'
import { loadAllAuthors } from '../stores/zine/authors'
export const AllAuthorsPage = (props: PageProps) => {
const [isLoaded, setIsLoaded] = createSignal<boolean>(Boolean(props.allAuthors))
const { t } = useLocalize()
onMount(async () => {
if (isLoaded()) {
return
}
await loadAllAuthors()
setIsLoaded(true)
})
return (
<PageLayout title={t('Authors')}>
<AllAuthorsView isLoaded={isLoaded()} authors={props.allAuthors} />
</PageLayout>
)
}
export const Page = AllAuthorsPage