2023-01-20 04:40:55 +00:00
|
|
|
|
import { Show, createMemo, createSignal, Switch, onMount, For, Match, createEffect } from 'solid-js'
|
2022-09-22 09:37:49 +00:00
|
|
|
|
import type { Author, Shout } from '../../graphql/types.gen'
|
2023-01-20 04:40:55 +00:00
|
|
|
|
import { Row1 } from '../Feed/Row1'
|
2022-10-28 21:21:47 +00:00
|
|
|
|
import { Row2 } from '../Feed/Row2'
|
|
|
|
|
import { AuthorFull } from '../Author/Full'
|
2023-02-17 09:21:02 +00:00
|
|
|
|
|
2022-09-09 11:53:35 +00:00
|
|
|
|
import { useAuthorsStore } from '../../stores/zine/authors'
|
2022-11-18 02:23:04 +00:00
|
|
|
|
import { loadShouts, useArticlesStore } from '../../stores/zine/articles'
|
2022-09-22 09:37:49 +00:00
|
|
|
|
import { useRouter } from '../../stores/router'
|
2022-10-28 21:21:47 +00:00
|
|
|
|
import { restoreScrollPosition, saveScrollPosition } from '../../utils/scroll'
|
|
|
|
|
import { splitToPages } from '../../utils/splitToPages'
|
2023-01-20 04:40:55 +00:00
|
|
|
|
import styles from './Author.module.scss'
|
2023-01-23 21:31:47 +00:00
|
|
|
|
import stylesArticle from '../../styles/Article.module.scss'
|
2023-01-20 04:40:55 +00:00
|
|
|
|
import { clsx } from 'clsx'
|
|
|
|
|
import Userpic from '../Author/Userpic'
|
|
|
|
|
import { Popup } from '../_shared/Popup'
|
|
|
|
|
import { AuthorCard } from '../Author/Card'
|
|
|
|
|
import { apiClient } from '../../utils/apiClient'
|
2023-01-20 10:53:35 +00:00
|
|
|
|
import { Comment } from '../Article/Comment'
|
2023-02-17 09:21:02 +00:00
|
|
|
|
import { useLocalize } from '../../context/localize'
|
2023-03-03 18:26:26 +00:00
|
|
|
|
import { AuthorRatingControl } from '../Author/AuthorRatingControl'
|
2022-09-09 11:53:35 +00:00
|
|
|
|
|
|
|
|
|
type AuthorProps = {
|
2022-11-15 14:24:50 +00:00
|
|
|
|
shouts: Shout[]
|
2022-09-09 11:53:35 +00:00
|
|
|
|
author: Author
|
2022-10-05 15:11:14 +00:00
|
|
|
|
authorSlug: string
|
2022-09-09 11:53:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-04-01 04:20:14 +00:00
|
|
|
|
export type AuthorPageSearchParams = {
|
2023-01-20 04:40:55 +00:00
|
|
|
|
by: '' | 'viewed' | 'rating' | 'commented' | 'recent' | 'followed' | 'about' | 'popular'
|
2022-09-22 09:37:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-28 21:21:47 +00:00
|
|
|
|
export const PRERENDERED_ARTICLES_COUNT = 12
|
2023-02-17 09:21:02 +00:00
|
|
|
|
const LOAD_MORE_PAGE_SIZE = 9
|
2022-10-28 21:21:47 +00:00
|
|
|
|
|
2022-09-22 09:37:49 +00:00
|
|
|
|
export const AuthorView = (props: AuthorProps) => {
|
2023-02-17 09:21:02 +00:00
|
|
|
|
const { t } = useLocalize()
|
2023-04-20 14:01:15 +00:00
|
|
|
|
const { sortedArticles } = useArticlesStore({ shouts: props.shouts })
|
|
|
|
|
const { searchParams, changeSearchParam } = useRouter<AuthorPageSearchParams>()
|
2022-09-28 20:16:44 +00:00
|
|
|
|
const { authorEntities } = useAuthorsStore({ authors: [props.author] })
|
2023-04-20 14:01:15 +00:00
|
|
|
|
const author = authorEntities()[props.authorSlug]
|
2022-10-28 21:21:47 +00:00
|
|
|
|
const [isLoadMoreButtonVisible, setIsLoadMoreButtonVisible] = createSignal(false)
|
2023-02-13 13:48:05 +00:00
|
|
|
|
const [followers, setFollowers] = createSignal<Author[]>([])
|
2022-09-13 09:59:04 +00:00
|
|
|
|
|
2023-04-03 12:55:00 +00:00
|
|
|
|
onMount(() => {
|
|
|
|
|
if (!searchParams().by) {
|
|
|
|
|
changeSearchParam('by', 'rating')
|
|
|
|
|
}
|
|
|
|
|
})
|
2023-01-23 22:12:28 +00:00
|
|
|
|
|
2022-10-28 21:21:47 +00:00
|
|
|
|
const loadMore = async () => {
|
|
|
|
|
saveScrollPosition()
|
2022-11-18 02:23:04 +00:00
|
|
|
|
const { hasMore } = await loadShouts({
|
2023-04-20 14:01:15 +00:00
|
|
|
|
filters: { author: props.authorSlug },
|
2022-10-28 21:21:47 +00:00
|
|
|
|
limit: LOAD_MORE_PAGE_SIZE,
|
|
|
|
|
offset: sortedArticles().length
|
|
|
|
|
})
|
|
|
|
|
setIsLoadMoreButtonVisible(hasMore)
|
|
|
|
|
restoreScrollPosition()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMount(async () => {
|
|
|
|
|
if (sortedArticles().length === PRERENDERED_ARTICLES_COUNT) {
|
2023-04-20 14:01:15 +00:00
|
|
|
|
await loadMore()
|
2022-10-28 21:21:47 +00:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
2023-02-17 09:21:02 +00:00
|
|
|
|
// 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')
|
|
|
|
|
// })
|
2022-09-09 11:53:35 +00:00
|
|
|
|
|
2022-10-28 21:21:47 +00:00
|
|
|
|
const pages = createMemo<Shout[][]>(() =>
|
|
|
|
|
splitToPages(sortedArticles(), PRERENDERED_ARTICLES_COUNT, LOAD_MORE_PAGE_SIZE)
|
|
|
|
|
)
|
|
|
|
|
|
2023-01-20 04:40:55 +00:00
|
|
|
|
const [commented, setCommented] = createSignal([])
|
2023-04-20 14:01:15 +00:00
|
|
|
|
|
|
|
|
|
onMount(async () => {
|
|
|
|
|
try {
|
|
|
|
|
const authorSubscribers = await apiClient.getAuthorFollowers({ slug: props.authorSlug })
|
|
|
|
|
setFollowers(authorSubscribers)
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.log('[getAuthorSubscribers]', error)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
2023-01-20 04:40:55 +00:00
|
|
|
|
createEffect(async () => {
|
|
|
|
|
if (searchParams().by === 'commented') {
|
|
|
|
|
try {
|
|
|
|
|
const data = await apiClient.getReactionsBy({
|
2023-02-17 09:21:02 +00:00
|
|
|
|
by: { comment: true, createdBy: props.authorSlug }
|
2023-01-20 04:40:55 +00:00
|
|
|
|
})
|
|
|
|
|
setCommented(data)
|
|
|
|
|
} catch (error) {
|
2023-03-05 13:31:36 +00:00
|
|
|
|
console.error('[getReactionsBy comment]', error)
|
2023-01-20 04:40:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
2022-09-09 11:53:35 +00:00
|
|
|
|
return (
|
2022-11-20 22:10:07 +00:00
|
|
|
|
<div class="author-page">
|
2023-02-17 09:21:02 +00:00
|
|
|
|
<div class="wide-container">
|
2023-04-20 14:01:15 +00:00
|
|
|
|
<AuthorFull author={author} />
|
2023-02-17 09:21:02 +00:00
|
|
|
|
<div class="row group__controls">
|
2023-03-10 17:42:48 +00:00
|
|
|
|
<div class="col-md-16">
|
2023-02-17 09:21:02 +00:00
|
|
|
|
<ul class="view-switcher">
|
|
|
|
|
<li classList={{ selected: searchParams().by === 'rating' }}>
|
|
|
|
|
<button type="button" onClick={() => changeSearchParam('by', 'rating')}>
|
|
|
|
|
{t('Publications')}
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
<li classList={{ selected: searchParams().by === 'followed' }}>
|
|
|
|
|
<button type="button" onClick={() => changeSearchParam('by', 'followed')}>
|
|
|
|
|
{t('Followers')}
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
<li classList={{ selected: searchParams().by === 'commented' }}>
|
|
|
|
|
<button type="button" onClick={() => changeSearchParam('by', 'commented')}>
|
|
|
|
|
{t('Comments')}
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
{/*
|
2023-01-20 04:40:55 +00:00
|
|
|
|
<li classList={{ selected: searchParams().by === 'popular' }}>
|
|
|
|
|
<button type="button" onClick={() => changeSearchParam('by', 'popular')}>
|
|
|
|
|
Популярное
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
2023-01-30 13:42:07 +00:00
|
|
|
|
*/}
|
2023-02-17 09:21:02 +00:00
|
|
|
|
<li classList={{ selected: searchParams().by === 'about' }}>
|
|
|
|
|
<button type="button" onClick={() => changeSearchParam('by', 'about')}>
|
2023-04-01 04:20:14 +00:00
|
|
|
|
{t('About myself')}
|
2023-02-17 09:21:02 +00:00
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2023-03-10 17:42:48 +00:00
|
|
|
|
<div class={clsx('col-md-8', styles.additionalControls)}>
|
2023-02-17 09:21:02 +00:00
|
|
|
|
<Popup
|
|
|
|
|
trigger={
|
|
|
|
|
<div class={styles.subscribers}>
|
|
|
|
|
<Switch>
|
|
|
|
|
<Match when={followers().length <= 3}>
|
|
|
|
|
<For each={followers().slice(0, 3)}>
|
|
|
|
|
{(f) => <Userpic user={f} class={styles.userpic} />}
|
|
|
|
|
</For>
|
|
|
|
|
</Match>
|
|
|
|
|
<Match when={followers().length > 3}>
|
|
|
|
|
<For each={followers().slice(0, 2)}>
|
|
|
|
|
{(f) => <Userpic user={f} class={styles.userpic} />}
|
|
|
|
|
</For>
|
|
|
|
|
<div class={clsx(styles.userpic, styles.subscribersCounter)}>
|
|
|
|
|
{followers().length}
|
|
|
|
|
</div>
|
|
|
|
|
</Match>
|
|
|
|
|
</Switch>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
variant="tiny"
|
|
|
|
|
>
|
|
|
|
|
<ul class={clsx('nodash', styles.subscribersList)}>
|
|
|
|
|
<For each={followers()}>
|
|
|
|
|
{(item: Author) => (
|
|
|
|
|
<li class={styles.subscriber}>
|
|
|
|
|
<AuthorCard
|
|
|
|
|
author={item}
|
|
|
|
|
isNowrap={true}
|
|
|
|
|
hideDescription={true}
|
|
|
|
|
hideFollow={true}
|
|
|
|
|
hasLink={true}
|
|
|
|
|
/>
|
|
|
|
|
</li>
|
|
|
|
|
)}
|
|
|
|
|
</For>
|
2022-11-20 22:10:07 +00:00
|
|
|
|
</ul>
|
2023-02-17 09:21:02 +00:00
|
|
|
|
</Popup>
|
|
|
|
|
|
|
|
|
|
<div class={styles.ratingContainer}>
|
|
|
|
|
{t('Karma')}
|
2023-03-03 18:26:26 +00:00
|
|
|
|
<AuthorRatingControl author={props.author} class={styles.ratingControl} />
|
2022-09-09 11:53:35 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-02-17 09:21:02 +00:00
|
|
|
|
</div>
|
2022-09-09 11:53:35 +00:00
|
|
|
|
|
2023-02-17 09:21:02 +00:00
|
|
|
|
<Switch
|
|
|
|
|
fallback={
|
|
|
|
|
<div class="wide-container">
|
|
|
|
|
<p>{t('Nothing here yet')}</p>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
>
|
|
|
|
|
<Match when={searchParams().by === 'about'}>
|
|
|
|
|
<div class="wide-container">
|
2023-04-20 14:01:15 +00:00
|
|
|
|
<p>{author.bio}</p>
|
2023-02-17 09:21:02 +00:00
|
|
|
|
</div>
|
|
|
|
|
</Match>
|
|
|
|
|
<Match when={searchParams().by === 'commented'}>
|
|
|
|
|
<div class="wide-container">
|
|
|
|
|
<ul class={stylesArticle.comments}>
|
|
|
|
|
<For each={commented()}>{(comment) => <Comment comment={comment} />}</For>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</Match>
|
2023-03-05 13:31:36 +00:00
|
|
|
|
<Match when={searchParams().by === 'followed'}>
|
|
|
|
|
<div class="wide-container">
|
2023-03-23 21:39:13 +00:00
|
|
|
|
<div class="row">
|
|
|
|
|
<For each={followers()}>
|
|
|
|
|
{(follower: Author) => (
|
|
|
|
|
<div class="col-md-6 col-lg-4">
|
|
|
|
|
<AuthorCard author={follower} hideWriteButton={true} hasLink={true} />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</For>
|
|
|
|
|
</div>
|
2023-03-05 13:31:36 +00:00
|
|
|
|
</div>
|
|
|
|
|
</Match>
|
2023-02-17 09:21:02 +00:00
|
|
|
|
<Match when={searchParams().by === 'rating'}>
|
|
|
|
|
<Row1 article={sortedArticles()[0]} />
|
|
|
|
|
<Row2 articles={sortedArticles().slice(1, 3)} isEqual={true} />
|
|
|
|
|
<Row1 article={sortedArticles()[3]} />
|
|
|
|
|
<Row2 articles={sortedArticles().slice(4, 6)} isEqual={true} />
|
|
|
|
|
<Row1 article={sortedArticles()[6]} />
|
|
|
|
|
<Row2 articles={sortedArticles().slice(7, 9)} isEqual={true} />
|
|
|
|
|
|
|
|
|
|
<For each={pages()}>
|
|
|
|
|
{(page) => (
|
|
|
|
|
<>
|
|
|
|
|
<Row1 article={page[0]} />
|
|
|
|
|
<Row2 articles={page.slice(1, 3)} isEqual={true} />
|
|
|
|
|
<Row1 article={page[3]} />
|
|
|
|
|
<Row2 articles={page.slice(4, 6)} isEqual={true} />
|
|
|
|
|
<Row1 article={page[6]} />
|
|
|
|
|
<Row2 articles={page.slice(7, 9)} isEqual={true} />
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
</For>
|
|
|
|
|
|
|
|
|
|
<Show when={isLoadMoreButtonVisible()}>
|
|
|
|
|
<p class="load-more-container">
|
|
|
|
|
<button class="button" onClick={loadMore}>
|
|
|
|
|
{t('Load more')}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</Show>
|
|
|
|
|
</Match>
|
|
|
|
|
</Switch>
|
2022-09-09 11:53:35 +00:00
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|