webapp/src/components/Views/Expo/Expo.tsx

258 lines
9.0 KiB
TypeScript
Raw Normal View History

import { getPagePath } from '@nanostores/router'
import { clsx } from 'clsx'
2023-10-10 15:38:02 +00:00
import { createEffect, createMemo, createSignal, For, on, onCleanup, onMount, Show } from 'solid-js'
2023-10-10 15:38:02 +00:00
import { useLocalize } from '../../../context/localize'
2023-12-18 01:15:49 +00:00
import { apiClient } from '../../../graphql/client/core'
import { LoadShoutsFilters, LoadShoutsOptions, Shout } from '../../../graphql/schema/core.gen'
2023-10-10 15:38:02 +00:00
import { LayoutType } from '../../../pages/types'
import { router } from '../../../stores/router'
2023-10-10 15:38:02 +00:00
import { loadShouts, resetSortedArticles, useArticlesStore } from '../../../stores/zine/articles'
2023-12-18 01:15:49 +00:00
import { getUnixtime } from '../../../utils/getServerDate'
2023-10-10 15:38:02 +00:00
import { restoreScrollPosition, saveScrollPosition } from '../../../utils/scroll'
import { splitToPages } from '../../../utils/splitToPages'
import { Button } from '../../_shared/Button'
2023-10-10 15:38:02 +00:00
import { ConditionalWrapper } from '../../_shared/ConditionalWrapper'
import { Loading } from '../../_shared/Loading'
import { ArticleCardSwiper } from '../../_shared/SolidSwiper/ArticleCardSwiper'
import { ArticleCard } from '../../Feed/ArticleCard'
import styles from './Expo.module.scss'
2023-10-10 15:38:02 +00:00
type Props = {
shouts: Shout[]
layout: LayoutType
2023-10-10 15:38:02 +00:00
}
export const PRERENDERED_ARTICLES_COUNT = 24
2023-10-10 15:38:02 +00:00
const LOAD_MORE_PAGE_SIZE = 16
2023-10-10 15:38:02 +00:00
export const Expo = (props: Props) => {
const [isLoaded, setIsLoaded] = createSignal<boolean>(Boolean(props.shouts))
const [isLoadMoreButtonVisible, setIsLoadMoreButtonVisible] = createSignal(false)
const [randomTopArticles, setRandomTopArticles] = createSignal<Shout[]>([])
const [randomTopMonthArticles, setRandomTopMonthArticles] = createSignal<Shout[]>([])
2023-10-10 15:38:02 +00:00
const { t } = useLocalize()
2023-10-10 15:38:02 +00:00
const { sortedArticles } = useArticlesStore({
shouts: isLoaded() ? props.shouts : [],
2023-10-10 15:38:02 +00:00
})
const getLoadShoutsFilters = (additionalFilters: LoadShoutsFilters = {}): LoadShoutsFilters => {
const filters = { visibility: 'public', ...additionalFilters }
2023-12-18 01:15:49 +00:00
filters.layouts = []
if (props.layout) {
2023-12-18 01:15:49 +00:00
filters.layouts.push(props.layout)
} else {
2023-12-18 01:15:49 +00:00
filters.layouts.push('article')
}
return filters
}
const loadMore = async (count: number) => {
2023-10-10 15:38:02 +00:00
const options: LoadShoutsOptions = {
filters: getLoadShoutsFilters(),
2023-10-10 15:38:02 +00:00
limit: count,
offset: sortedArticles().length,
2023-10-10 15:38:02 +00:00
}
2023-12-18 01:15:49 +00:00
options.filters = props.layout
? { layouts: [props.layout] }
2023-11-28 13:18:25 +00:00
: { layouts: ['audio', 'video', 'image', 'literature'] }
2023-10-10 15:38:02 +00:00
const { hasMore } = await loadShouts(options)
setIsLoadMoreButtonVisible(hasMore)
}
const loadMoreWithoutScrolling = async (count: number) => {
saveScrollPosition()
await loadMore(count)
2023-10-10 15:38:02 +00:00
restoreScrollPosition()
}
const loadRandomTopArticles = async () => {
2023-12-18 01:15:49 +00:00
const options: LoadShoutsOptions = {
filters: getLoadShoutsFilters(),
limit: 10,
2023-12-18 01:15:49 +00:00
random_limit: 100,
}
2023-12-18 01:15:49 +00:00
const result = await apiClient.getRandomTopShouts({ options })
setRandomTopArticles(result)
}
const loadRandomTopMonthArticles = async () => {
const now = new Date()
2023-12-18 01:15:49 +00:00
const after = getUnixtime(new Date(now.setMonth(now.getMonth() - 1)))
2023-12-18 01:15:49 +00:00
const options: LoadShoutsOptions = {
filters: getLoadShoutsFilters({ after }),
limit: 10,
2023-12-18 01:15:49 +00:00
random_limit: 10,
}
2023-12-18 01:15:49 +00:00
const result = await apiClient.getRandomTopShouts({ options })
setRandomTopMonthArticles(result)
}
2023-10-10 15:38:02 +00:00
const pages = createMemo<Shout[][]>(() =>
splitToPages(sortedArticles(), PRERENDERED_ARTICLES_COUNT, LOAD_MORE_PAGE_SIZE),
2023-10-10 15:38:02 +00:00
)
onMount(() => {
if (isLoaded()) {
return
}
loadMore(PRERENDERED_ARTICLES_COUNT + LOAD_MORE_PAGE_SIZE)
setIsLoaded(true)
})
onMount(() => {
if (sortedArticles().length === PRERENDERED_ARTICLES_COUNT) {
loadMore(LOAD_MORE_PAGE_SIZE)
}
loadRandomTopArticles()
loadRandomTopMonthArticles()
2023-10-10 15:38:02 +00:00
})
createEffect(
on(
() => props.layout,
2023-10-10 15:38:02 +00:00
() => {
resetSortedArticles()
setRandomTopArticles([])
setRandomTopMonthArticles([])
2023-10-10 15:38:02 +00:00
loadMore(PRERENDERED_ARTICLES_COUNT + LOAD_MORE_PAGE_SIZE)
loadRandomTopArticles()
loadRandomTopMonthArticles()
2023-10-10 15:38:02 +00:00
},
{ defer: true },
),
2023-10-10 15:38:02 +00:00
)
onCleanup(() => {
resetSortedArticles()
})
const handleLoadMoreClick = () => {
loadMoreWithoutScrolling(LOAD_MORE_PAGE_SIZE)
2023-10-10 15:38:02 +00:00
}
return (
<div class={styles.Expo}>
<Show when={sortedArticles().length > 0} fallback={<Loading />}>
<div class="wide-container">
<ul class={clsx('view-switcher', styles.navigation)}>
<li class={clsx({ 'view-switcher__item--selected': !props.layout })}>
2023-10-10 15:38:02 +00:00
<ConditionalWrapper
condition={Boolean(props.layout)}
wrapper={(children) => <a href={getPagePath(router, 'expo', { layout: '' })}>{children}</a>}
2023-10-10 15:38:02 +00:00
>
<span class={clsx('linkReplacement')}>{t('All')}</span>
</ConditionalWrapper>
</li>
<li class={clsx({ 'view-switcher__item--selected': props.layout === 'literature' })}>
2023-10-10 15:38:02 +00:00
<ConditionalWrapper
condition={props.layout !== 'literature'}
2023-10-10 15:38:02 +00:00
wrapper={(children) => (
<a href={getPagePath(router, 'expo', { layout: 'literature' })}>{children}</a>
2023-10-10 15:38:02 +00:00
)}
>
<span class={clsx('linkReplacement')}>{t('Literature')}</span>
</ConditionalWrapper>
</li>
2023-12-18 01:15:49 +00:00
<li class={clsx({ 'view-switcher__item--selected': props.layout === 'audio' })}>
2023-10-10 15:38:02 +00:00
<ConditionalWrapper
2023-12-18 01:15:49 +00:00
condition={props.layout !== 'audio'}
2023-10-10 15:38:02 +00:00
wrapper={(children) => (
2023-12-18 01:15:49 +00:00
<a href={getPagePath(router, 'expo', { layout: 'audio' })}>{children}</a>
2023-10-10 15:38:02 +00:00
)}
>
<span class={clsx('linkReplacement')}>{t('Music')}</span>
</ConditionalWrapper>
</li>
<li class={clsx({ 'view-switcher__item--selected': props.layout === 'image' })}>
2023-10-10 15:38:02 +00:00
<ConditionalWrapper
condition={props.layout !== 'image'}
2023-10-10 15:38:02 +00:00
wrapper={(children) => (
<a href={getPagePath(router, 'expo', { layout: 'image' })}>{children}</a>
2023-10-10 15:38:02 +00:00
)}
>
<span class={clsx('linkReplacement')}>{t('Gallery')}</span>
</ConditionalWrapper>
</li>
<li class={clsx({ 'view-switcher__item--selected': props.layout === 'video' })}>
2023-10-10 15:38:02 +00:00
<ConditionalWrapper
condition={props.layout !== 'video'}
2023-10-10 15:38:02 +00:00
wrapper={(children) => (
<a href={getPagePath(router, 'expo', { layout: 'video' })}>{children}</a>
2023-10-10 15:38:02 +00:00
)}
>
<span class={clsx('cursorPointer linkReplacement')}>{t('Video')}</span>
</ConditionalWrapper>
</li>
</ul>
<div class="row">
<For each={sortedArticles().slice(0, PRERENDERED_ARTICLES_COUNT / 2)}>
{(shout) => (
<div class="col-md-6 mt-md-5 col-sm-8 mt-sm-3">
<ArticleCard
article={shout}
settings={{ nodate: true, nosubtitle: true, noAuthorLink: true }}
desktopCoverSize="XS"
2023-12-25 11:35:04 +00:00
withAspectRatio={true}
/>
</div>
)}
</For>
<Show when={randomTopMonthArticles().length > 0} keyed={true}>
<ArticleCardSwiper title={t('Top month articles')} slides={randomTopMonthArticles()} />
</Show>
<For each={sortedArticles().slice(PRERENDERED_ARTICLES_COUNT / 2, PRERENDERED_ARTICLES_COUNT)}>
2023-10-10 15:38:02 +00:00
{(shout) => (
<div class="col-md-6 mt-md-5 col-sm-8 mt-sm-3">
<ArticleCard
article={shout}
settings={{ nodate: true, nosubtitle: true, noAuthorLink: true }}
desktopCoverSize="XS"
2023-12-25 11:35:04 +00:00
withAspectRatio={true}
2023-10-10 15:38:02 +00:00
/>
</div>
)}
</For>
<Show when={randomTopArticles().length > 0} keyed={true}>
<ArticleCardSwiper title={t('Favorite')} slides={randomTopArticles()} />
</Show>
2023-10-10 15:38:02 +00:00
<For each={pages()}>
{(page) => (
<For each={page}>
{(shout) => (
<div class="col-md-6 mt-md-5 col-sm-8 mt-sm-3">
<ArticleCard
article={shout}
settings={{ nodate: true, nosubtitle: true, noAuthorLink: true }}
desktopCoverSize="XS"
2023-12-25 11:35:04 +00:00
withAspectRatio={true}
2023-10-10 15:38:02 +00:00
/>
</div>
)}
</For>
)}
</For>
</div>
<Show when={isLoadMoreButtonVisible()}>
<div class={styles.showMore}>
<Button size="L" onClick={handleLoadMoreClick} value={t('Load more')} />
</div>
</Show>
</div>
</Show>
</div>
)
}