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 { AllTopicsView } from '../components/Views/AllTopics' import { useLocalize } from '../context/localize' import { loadAllTopics } from '../stores/zine/topics' export const AllTopicsPage = (props: PageProps) => { const { t } = useLocalize() const [isLoaded, setIsLoaded] = createSignal(Boolean(props.allTopics)) onMount(async () => { if (isLoaded()) { return } await loadAllTopics() setIsLoaded(true) }) return ( }> ) } export const Page = AllTopicsPage