import type { PageProps } from './types' import { createEffect, createSignal, onMount } from 'solid-js' import { AllAuthors } from '../components/Views/AllAuthors/' import { PageLayout } from '../components/_shared/PageLayout' import { useLocalize } from '../context/localize' import {loadAllAuthors, loadAuthors} from '../stores/zine/authors' import {PAGE_SIZE} from "../components/Views/AllTopics/AllTopics"; export const AllAuthorsPage = (props: PageProps) => { const [isLoaded, setIsLoaded] = createSignal(Boolean(props.allAuthors && props.topFollowedAuthors && props.topWritingAuthors)) const { t } = useLocalize() onMount(async () => { if (isLoaded()) { return } await loadAllAuthors() await loadAuthors({ by: { order: 'shouts' }, limit: PAGE_SIZE }) await loadAuthors({ by: { order: 'followers' }, limit: PAGE_SIZE }) setIsLoaded(true) }) return ( ) } export const Page = AllAuthorsPage