webapp/src/components/Feed/Sidebar.tsx
Ilya Y 714c11e591 Social share (#88)
add social sharing and og:meta
2023-01-31 15:47:44 +03:00

126 lines
3.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { For } from 'solid-js'
import type { Author } from '../../graphql/types.gen'
import { useAuthorsStore } from '../../stores/zine/authors'
import { t } from '../../utils/intl'
import { Icon } from '../_shared/Icon'
import { useTopicsStore } from '../../stores/zine/topics'
import { useArticlesStore } from '../../stores/zine/articles'
import { useSeenStore } from '../../stores/zine/seen'
import { useSession } from '../../context/session'
import styles from './Sidebar.module.scss'
type FeedSidebarProps = {
authors: Author[]
}
export const FeedSidebar = (props: FeedSidebarProps) => {
const { seen } = useSeenStore()
const { session } = useSession()
const { authorEntities } = useAuthorsStore({ authors: props.authors })
const { articlesByTopic } = useArticlesStore()
const { topicEntities } = useTopicsStore()
const checkTopicIsSeen = (topicSlug: string) => {
return articlesByTopic()[topicSlug]?.every((article) => Boolean(seen()[article.slug]))
}
const checkAuthorIsSeen = (authorSlug: string) => {
return Boolean(seen()[authorSlug])
}
return (
<div class={styles.sidebar}>
<ul>
<li>
<a href="#">
<Icon name="feed-all" class={styles.icon} />
<strong>общая лента</strong>
</a>
</li>
<li>
<a href="#">
<Icon name="feed-my" class={styles.icon} />
моя лента
</a>
</li>
</ul>
<ul>
<li>
<a href="#">
<Icon name="feed-collaborate" class={styles.icon} />
соучастие
</a>
<span class={styles.counter}>7</span>
</li>
<li>
<a href="#">
<Icon name="feed-discussion" class={styles.icon} />
дискуссии
</a>
<span class={styles.counter}>18</span>
</li>
<li>
<a href="#">
<Icon name="feed-drafts" class={styles.icon} />
черновики
</a>
<span class={styles.counter}>283</span>
</li>
<li>
<a href="#">
<Icon name="bookmark" class={styles.icon} />
закладки
</a>
</li>
<li>
<a href="#">
<Icon name="feed-notifications" class={styles.icon} />
уведомления
</a>
<span class={styles.counter}>283</span>
</li>
</ul>
<ul>
<li>
<a href="/feed?by=subscribed">
<strong>{t('My subscriptions')}</strong>
</a>
</li>
<For each={session()?.news?.authors}>
{(authorSlug: string) => (
<li>
<a
href={`/author/${authorSlug}`}
classList={{ [styles.unread]: checkAuthorIsSeen(authorSlug) }}
>
<small>@{authorSlug}</small>
{authorEntities()[authorSlug]?.name}
</a>
</li>
)}
</For>
<For each={session()?.news?.topics}>
{(topicSlug: string) => (
<li>
<a href={`/author/${topicSlug}`} classList={{ [styles.unread]: checkTopicIsSeen(topicSlug) }}>
{topicEntities()[topicSlug]?.title}
</a>
</li>
)}
</For>
</ul>
<div class={styles.settings}>
<a href="/feed/settings">
<Icon name="settings" class={styles.icon} />
{t('Feed settings')}
</a>
</div>
</div>
)
}