webapp/src/components/Views/Topic.tsx
2022-09-28 22:16:44 +02:00

122 lines
4.2 KiB
TypeScript

import { For, Show, createMemo } from 'solid-js'
import type { Shout, Topic } from '../../graphql/types.gen'
import Row3 from '../Feed/Row3'
import Row2 from '../Feed/Row2'
import Beside from '../Feed/Beside'
import { ArticleCard } from '../Feed/Card'
import '../../styles/Topic.scss'
import { FullTopic } from '../Topic/Full'
import { t } from '../../utils/intl'
import { useRouter } from '../../stores/router'
import { useTopicsStore } from '../../stores/zine/topics'
import { useArticlesStore } from '../../stores/zine/articles'
import { useAuthorsStore } from '../../stores/zine/authors'
type TopicsPageSearchParams = {
by: 'comments' | '' | 'recent' | 'viewed' | 'rating' | 'commented'
}
interface TopicProps {
topic: Topic
topicArticles: Shout[]
}
export const TopicView = (props: TopicProps) => {
const { getSearchParams, changeSearchParam } = useRouter<TopicsPageSearchParams>()
const { sortedArticles } = useArticlesStore({ sortedArticles: props.topicArticles })
const { topicEntities } = useTopicsStore({ topics: [props.topic] })
const { authorsByTopic } = useAuthorsStore()
const topic = createMemo(() => topicEntities()[props.topic.slug])
/*
const slug = createMemo<string>(() => {
let slug = props?.slug
if (props?.slug.startsWith('@')) slug = slug.replace('@', '')
return slug
})
*/
const title = createMemo(() => {
// FIXME
// const m = getSearchParams().by
// if (m === 'viewed') return t('Top viewed')
// if (m === 'rating') return t('Top rated')
// if (m === 'commented') return t('Top discussed')
return t('Top recent')
})
return (
<div class="topic-page container">
<Show when={topic()}>
<FullTopic topic={topic()} />
<div class="row group__controls">
<div class="col-md-8">
<ul class="view-switcher">
<li classList={{ selected: getSearchParams().by === 'recent' || !getSearchParams().by }}>
<button type="button" onClick={() => changeSearchParam('by', 'recent')}>
{t('Recent')}
</button>
</li>
<li classList={{ selected: getSearchParams().by === 'rating' }}>
<button type="button" onClick={() => changeSearchParam('by', 'rating')}>
{t('Popular')}
</button>
</li>
<li classList={{ selected: getSearchParams().by === 'viewed' }}>
<button type="button" onClick={() => changeSearchParam('by', 'viewed')}>
{t('Views')}
</button>
</li>
<li classList={{ selected: getSearchParams().by === 'commented' }}>
<button type="button" onClick={() => changeSearchParam('by', 'commented')}>
{t('Discussing')}
</button>
</li>
</ul>
</div>
<div class="col-md-4">
<div class="mode-switcher">
{`${t('Show')} `}
<span class="mode-switcher__control">{t('All posts')}</span>
</div>
</div>
</div>
<div class="row floor floor--important">
<div class="container">
<div class="row">
<h3 class="col-12">{title()}</h3>
<For each={sortedArticles().slice(0, 6)}>
{(article) => (
<div class="col-md-6">
<ArticleCard article={article} />
</div>
)}
</For>
</div>
</div>
</div>
<div class="row">
<Show when={sortedArticles().length > 5}>
<Beside
title={t('Topic is supported by')}
values={authorsByTopic()[topic().slug].slice(0, 7)}
beside={sortedArticles()[6]}
wrapper={'author'}
/>
<Row3 articles={sortedArticles().slice(6, 9)} />
<Row2 articles={sortedArticles().slice(9, 11)} />
<Row3 articles={sortedArticles().slice(11, 14)} />
<Row3 articles={sortedArticles().slice(14, 17)} />
<Row3 articles={sortedArticles().slice(17, 20)} />
</Show>
</div>
</Show>
</div>
)
}