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