import type { Author } from '../../graphql/schema/core.gen' import { Meta } from '@solidjs/meta' import { clsx } from 'clsx' import { For, Show, createEffect, createMemo, createSignal } from 'solid-js' import { useFollowing } from '../../context/following' import { useLocalize } from '../../context/localize' import { useRouter } from '../../stores/router' import { loadAuthors, setAuthorsSort, useAuthorsStore } from '../../stores/zine/authors' import { dummyFilter } from '../../utils/dummyFilter' import { getImageUrl } from '../../utils/getImageUrl' import { scrollHandler } from '../../utils/scroll' import { authorLetterReduce, translateAuthor } from '../../utils/translate' import { AuthorBadge } from '../Author/AuthorBadge' import { Loading } from '../_shared/Loading' import { SearchField } from '../_shared/SearchField' import styles from './AllAuthors.module.scss' type AllAuthorsPageSearchParams = { by: '' | 'name' | 'shouts' | 'followers' } type Props = { authors: Author[] isLoaded: boolean } const PAGE_SIZE = 20 export const AllAuthorsView = (props: Props) => { const { t, lang } = useLocalize() const ALPHABET = lang() === 'ru' ? [...'АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ@'] : [...'ABCDEFGHIJKLMNOPQRSTUVWXYZ@'] const [offsetByShouts, setOffsetByShouts] = createSignal(0) const [offsetByFollowers, setOffsetByFollowers] = createSignal(0) const { searchParams, changeSearchParams } = useRouter() const { sortedAuthors } = useAuthorsStore({ authors: props.authors, sortBy: searchParams().by || 'name', }) const [searchQuery, setSearchQuery] = createSignal('') const offset = searchParams()?.by === 'shouts' ? offsetByShouts : offsetByFollowers createEffect(() => { let by = searchParams().by if (by) { setAuthorsSort(by) } else { by = 'name' changeSearchParams({ by }) } }) const loadMoreByShouts = async () => { await loadAuthors({ by: { order: 'shouts_stat' }, limit: PAGE_SIZE, offset: offsetByShouts() }) setOffsetByShouts((o) => o + PAGE_SIZE) } const loadMoreByFollowers = async () => { await loadAuthors({ by: { order: 'followers_stat' }, limit: PAGE_SIZE, offset: offsetByFollowers() }) setOffsetByFollowers((o) => o + PAGE_SIZE) } const isStatsLoaded = createMemo(() => sortedAuthors()?.some((author) => author.stat)) createEffect(async () => { if (!isStatsLoaded()) { await loadMoreByShouts() await loadMoreByFollowers() } }) const showMore = async () => await { shouts: loadMoreByShouts, followers: loadMoreByFollowers, }[searchParams().by]() const byLetter = createMemo<{ [letter: string]: Author[] }>(() => { return sortedAuthors().reduce( (acc, author) => authorLetterReduce(acc, author, lang()), {} as { [letter: string]: Author[] }, ) }) const { isOwnerSubscribed } = useFollowing() const sortedKeys = createMemo(() => { const keys = Object.keys(byLetter()) keys.sort() keys.push(keys.shift()) return keys }) const filteredAuthors = createMemo(() => { return dummyFilter(sortedAuthors(), searchQuery(), lang()) }) const ogImage = getImageUrl('production/image/logo_image.png') const ogTitle = t('Authors') const description = t('List of authors of the open editorial community') return (
}>

{t('Authors')}

{t('Subscribe who you like to tune your personal feed')}

0}> {(letter) => (

{letter}

{(author) => (
{translateAuthor(author, lang())} {author.stat.shouts}
)}
)}
{(author) => (
)}
PAGE_SIZE + offset() && searchParams().by !== 'name'}>
) }