webapp/src/components/Views/Author/Author.tsx

262 lines
9.4 KiB
TypeScript

import { Show, createMemo, createSignal, Switch, onMount, For, Match, createEffect } from 'solid-js'
import type { Author, Shout, Topic } from '../../../graphql/types.gen'
import { Row1 } from '../../Feed/Row1'
import { Row2 } from '../../Feed/Row2'
import { Row3 } from '../../Feed/Row3'
import { useAuthorsStore } from '../../../stores/zine/authors'
import { loadShouts, useArticlesStore } from '../../../stores/zine/articles'
import { useRouter } from '../../../stores/router'
import { restoreScrollPosition, saveScrollPosition } from '../../../utils/scroll'
import { splitToPages } from '../../../utils/splitToPages'
import styles from './Author.module.scss'
import stylesArticle from '../../Article/Article.module.scss'
import { clsx } from 'clsx'
import { AuthorCard } from '../../Author/AuthorCard'
import { apiClient } from '../../../utils/apiClient'
import { Comment } from '../../Article/Comment'
import { useLocalize } from '../../../context/localize'
import { AuthorRatingControl } from '../../Author/AuthorRatingControl'
import { hideModal } from '../../../stores/ui'
type AuthorProps = {
shouts: Shout[]
author: Author
authorSlug: string
}
export type AuthorPageSearchParams = {
by: '' | 'viewed' | 'rating' | 'commented' | 'recent' | 'about' | 'popular'
}
export const PRERENDERED_ARTICLES_COUNT = 12
const LOAD_MORE_PAGE_SIZE = 9
export const AuthorView = (props: AuthorProps) => {
const { t } = useLocalize()
const { sortedArticles } = useArticlesStore({ shouts: props.shouts })
const { searchParams, changeSearchParam } = useRouter<AuthorPageSearchParams>()
const { authorEntities } = useAuthorsStore({ authors: [props.author] })
const author = createMemo(() => authorEntities()[props.authorSlug])
const [isLoadMoreButtonVisible, setIsLoadMoreButtonVisible] = createSignal(false)
const [isBioExpanded, setIsBioExpanded] = createSignal(false)
const [followers, setFollowers] = createSignal<Author[]>([])
const [subscriptions, setSubscriptions] = createSignal<Array<Author | Topic>>([])
const [bioWrapper, setBioWrapper] = createSignal<HTMLElement>()
const [bioContainer, setBioContainer] = createSignal<HTMLElement>()
const [showExpandBioControl, setShowExpandBioControl] = createSignal(false)
const fetchSubscriptions = async (): Promise<{ authors: Author[]; topics: Topic[] }> => {
try {
const [getAuthors, getTopics] = await Promise.all([
apiClient.getAuthorFollowingUsers({ slug: props.authorSlug }),
apiClient.getAuthorFollowingTopics({ slug: props.authorSlug })
])
const authors = getAuthors
const topics = getTopics
return { authors, topics }
} catch (error) {
console.error('[fetchSubscriptions] :', error)
throw error
}
}
const checkBioHeight = () => {
if (bioContainer()) {
setShowExpandBioControl(bioContainer().offsetHeight > bioWrapper().offsetHeight)
}
}
onMount(async () => {
hideModal()
try {
const userSubscribers = await apiClient.getAuthorFollowers({ slug: props.authorSlug })
setFollowers(userSubscribers)
} catch (error) {
console.error('[getAuthorFollowers]', error)
}
checkBioHeight()
if (!searchParams().by) {
changeSearchParam('by', 'rating')
}
if (sortedArticles().length === PRERENDERED_ARTICLES_COUNT) {
await loadMore()
}
const { authors, topics } = await fetchSubscriptions()
setSubscriptions([...authors, ...topics])
})
const loadMore = async () => {
saveScrollPosition()
const { hasMore } = await loadShouts({
filters: { author: props.authorSlug },
limit: LOAD_MORE_PAGE_SIZE,
offset: sortedArticles().length
})
setIsLoadMoreButtonVisible(hasMore)
restoreScrollPosition()
}
// TODO: use title
// const title = createMemo(() => {
// const m = searchParams().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')
// })
const pages = createMemo<Shout[][]>(() =>
splitToPages(sortedArticles(), PRERENDERED_ARTICLES_COUNT, LOAD_MORE_PAGE_SIZE)
)
const [commented, setCommented] = createSignal([])
createEffect(async () => {
if (searchParams().by === 'commented') {
try {
const data = await apiClient.getReactionsBy({
by: { comment: true, createdBy: props.authorSlug }
})
setCommented(data)
} catch (error) {
console.error('[getReactionsBy comment]', error)
}
}
})
return (
<div class={styles.authorPage}>
<div class="wide-container">
<Show when={author()}>
<AuthorCard
author={author()}
isAuthorPage={true}
followers={followers()}
subscriptions={subscriptions()}
/>
</Show>
<div class={clsx(styles.groupControls, 'row')}>
<div class="col-md-16">
<ul class="view-switcher">
<li classList={{ 'view-switcher__item--selected': searchParams().by === 'rating' }}>
<button type="button" onClick={() => changeSearchParam('by', 'rating')}>
{t('Publications')}
</button>
</li>
<li classList={{ 'view-switcher__item--selected': searchParams().by === 'commented' }}>
<button type="button" onClick={() => changeSearchParam('by', 'commented')}>
{t('Comments')}
</button>
</li>
<li classList={{ 'view-switcher__item--selected': searchParams().by === 'about' }}>
<button
type="button"
onClick={() => {
changeSearchParam('by', 'about')
checkBioHeight()
}}
>
{t('About myself')}
</button>
</li>
</ul>
</div>
<div class={clsx('col-md-8', styles.additionalControls)}>
<div class={styles.ratingContainer}>
{t('Karma')}
<AuthorRatingControl author={props.author} class={styles.ratingControl} />
</div>
</div>
</div>
</div>
<Switch>
<Match when={searchParams().by === 'about'}>
<div class="wide-container">
<div class="row">
<div class="col-md-20 col-lg-18">
<div
ref={setBioWrapper}
class={styles.longBio}
classList={{ [styles.longBioExpanded]: isBioExpanded() }}
>
<div ref={setBioContainer}>{author().about}</div>
</div>
<Show when={showExpandBioControl()}>
<button
class={clsx('button button--subscribe-topic', styles.longBioExpandedControl)}
onClick={() => setIsBioExpanded(!isBioExpanded())}
>
{t('Show more')}
</button>
</Show>
</div>
</div>
</div>
</Match>
<Match when={searchParams().by === 'commented'}>
<div class="wide-container">
<div class="row">
<div class="col-md-20 col-lg-18">
<ul class={stylesArticle.comments}>
<For each={commented()}>
{(comment) => <Comment comment={comment} class={styles.comment} showArticleLink />}
</For>
</ul>
</div>
</div>
</div>
</Match>
<Match when={searchParams().by === 'rating'}>
<Show when={sortedArticles().length === 1}>
<Row1 article={sortedArticles()[0]} noAuthorLink={true} />
</Show>
<Show when={sortedArticles().length === 2}>
<Row2 articles={sortedArticles()} isEqual={true} noAuthorLink={true} />
</Show>
<Show when={sortedArticles().length === 3}>
<Row3 articles={sortedArticles()} noAuthorLink={true} />
</Show>
<Show when={sortedArticles().length > 3}>
<Row1 article={sortedArticles()[0]} noAuthorLink={true} />
<Row2 articles={sortedArticles().slice(1, 3)} isEqual={true} noAuthorLink={true} />
<Row1 article={sortedArticles()[3]} noAuthorLink={true} />
<Row2 articles={sortedArticles().slice(4, 6)} isEqual={true} noAuthorLink={true} />
<Row1 article={sortedArticles()[6]} noAuthorLink={true} />
<Row2 articles={sortedArticles().slice(7, 9)} isEqual={true} noAuthorLink={true} />
<For each={pages()}>
{(page) => (
<>
<Row1 article={page[0]} noAuthorLink={true} />
<Row2 articles={page.slice(1, 3)} isEqual={true} noAuthorLink={true} />
<Row1 article={page[3]} noAuthorLink={true} />
<Row2 articles={page.slice(4, 6)} isEqual={true} noAuthorLink={true} />
<Row1 article={page[6]} noAuthorLink={true} />
<Row2 articles={page.slice(7, 9)} isEqual={true} noAuthorLink={true} />
</>
)}
</For>
</Show>
<Show when={isLoadMoreButtonVisible()}>
<p class="load-more-container">
<button class="button" onClick={loadMore}>
{t('Load more')}
</button>
</p>
</Show>
</Match>
</Switch>
</div>
)
}