2023-05-11 18:34:04 +00:00
|
|
|
import { createSignal, For, Show } from 'solid-js'
|
2023-04-29 13:43:50 +00:00
|
|
|
import type { Author } from '../../../graphql/types.gen'
|
|
|
|
import { useAuthorsStore } from '../../../stores/zine/authors'
|
|
|
|
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 { useLocalize } from '../../../context/localize'
|
|
|
|
import styles from './Sidebar.module.scss'
|
2023-06-06 21:16:40 +00:00
|
|
|
import { clsx } from 'clsx'
|
2023-06-08 21:55:22 +00:00
|
|
|
import Userpic from '../../Author/Userpic'
|
2023-07-07 16:53:01 +00:00
|
|
|
import { getPagePath } from '@nanostores/router'
|
|
|
|
import { router, useRouter } from '../../../stores/router'
|
2023-04-29 13:43:50 +00:00
|
|
|
|
|
|
|
type FeedSidebarProps = {
|
|
|
|
authors: Author[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export const Sidebar = (props: FeedSidebarProps) => {
|
|
|
|
const { t } = useLocalize()
|
|
|
|
const { seen } = useSeenStore()
|
|
|
|
const { session } = useSession()
|
2023-07-07 16:53:01 +00:00
|
|
|
const { page } = useRouter()
|
2023-04-29 13:43:50 +00:00
|
|
|
const { authorEntities } = useAuthorsStore({ authors: props.authors })
|
|
|
|
const { articlesByTopic } = useArticlesStore()
|
|
|
|
const { topicEntities } = useTopicsStore()
|
2023-06-06 21:16:40 +00:00
|
|
|
const [isSubscriptionsVisible, setSubscriptionsVisible] = createSignal(true)
|
2023-04-29 13:43:50 +00:00
|
|
|
|
|
|
|
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>
|
2023-07-07 16:53:01 +00:00
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href={getPagePath(router, 'feed')}
|
|
|
|
class={clsx({
|
|
|
|
[styles.selected]: page().route === 'feed'
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<span class={styles.sidebarItemName}>
|
|
|
|
<Icon name="feed-all" class={styles.icon} />
|
|
|
|
{t('general feed')}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href={getPagePath(router, 'feedMy')}
|
|
|
|
class={clsx({
|
|
|
|
[styles.selected]: page().route === 'feedMy'
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<span class={styles.sidebarItemName}>
|
|
|
|
<Icon name="feed-my" class={styles.icon} />
|
|
|
|
{t('My feed')}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href={getPagePath(router, 'feedCollaborations')}
|
|
|
|
class={clsx({
|
|
|
|
[styles.selected]: page().route === 'feedCollaborations'
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<span class={styles.sidebarItemName}>
|
|
|
|
<Icon name="feed-collaborate" class={styles.icon} />
|
|
|
|
{t('Accomplices')}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href={getPagePath(router, 'feedDiscussions')}
|
|
|
|
class={clsx({
|
|
|
|
[styles.selected]: page().route === 'feedDiscussions'
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<span class={styles.sidebarItemName}>
|
|
|
|
<Icon name="feed-discussion" class={styles.icon} />
|
|
|
|
{t('Discussions')}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href={getPagePath(router, 'feedBookmarks')}
|
|
|
|
class={clsx({
|
|
|
|
[styles.selected]: page().route === 'feedBookmarks'
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<span class={styles.sidebarItemName}>
|
|
|
|
<Icon name="bookmark" class={styles.icon} />
|
|
|
|
{t('Bookmarks')}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href={getPagePath(router, 'feedNotifications')}
|
|
|
|
class={clsx({
|
|
|
|
[styles.selected]: page().route === 'feedNotifications'
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<span class={styles.sidebarItemName}>
|
|
|
|
<Icon name="feed-notifications" class={styles.icon} />
|
|
|
|
{t('Notifications')}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
2023-04-29 13:43:50 +00:00
|
|
|
</ul>
|
2023-05-11 11:52:56 +00:00
|
|
|
|
|
|
|
<Show when={session()?.news?.authors || session()?.news?.topics}>
|
|
|
|
<h4
|
|
|
|
classList={{ [styles.opened]: isSubscriptionsVisible() }}
|
|
|
|
onClick={() => {
|
|
|
|
setSubscriptionsVisible(!isSubscriptionsVisible())
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{t('My subscriptions')}
|
|
|
|
</h4>
|
2023-06-06 21:16:40 +00:00
|
|
|
|
|
|
|
<ul class={clsx(styles.subscriptions, { [styles.hidden]: !isSubscriptionsVisible() })}>
|
2023-05-11 11:52:56 +00:00
|
|
|
<For each={session()?.news?.authors}>
|
|
|
|
{(authorSlug: string) => (
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href={`/author/${authorSlug}`}
|
|
|
|
classList={{ [styles.unread]: checkAuthorIsSeen(authorSlug) }}
|
|
|
|
>
|
2023-06-06 21:16:40 +00:00
|
|
|
<div class={styles.sidebarItemName}>
|
2023-06-08 21:55:22 +00:00
|
|
|
<Show when={authorEntities()[authorSlug]}>
|
2023-06-08 22:04:55 +00:00
|
|
|
<Userpic user={authorEntities()[authorSlug]} />
|
2023-06-08 21:55:22 +00:00
|
|
|
</Show>
|
|
|
|
<Show when={!authorEntities()[authorSlug]}>
|
|
|
|
<Icon name="hash" class={styles.icon} />
|
|
|
|
</Show>
|
2023-06-06 21:16:40 +00:00
|
|
|
{authorSlug}
|
|
|
|
{authorEntities()[authorSlug]?.name}
|
|
|
|
</div>
|
2023-05-11 11:52:56 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
)}
|
|
|
|
</For>
|
|
|
|
<For each={session()?.news?.topics}>
|
|
|
|
{(topicSlug: string) => (
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href={`/topic/${topicSlug}`}
|
|
|
|
classList={{ [styles.unread]: checkTopicIsSeen(topicSlug) }}
|
|
|
|
>
|
2023-06-06 21:16:40 +00:00
|
|
|
<div class={styles.sidebarItemName}>
|
|
|
|
<Icon name="hash" class={styles.icon} />
|
|
|
|
{topicEntities()[topicSlug]?.title ?? topicSlug}
|
|
|
|
</div>
|
2023-05-11 11:52:56 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
)}
|
|
|
|
</For>
|
|
|
|
</ul>
|
|
|
|
</Show>
|
|
|
|
|
2023-04-29 13:43:50 +00:00
|
|
|
<div class={styles.settings}>
|
|
|
|
<a href="/feed/settings">
|
|
|
|
<Icon name="settings" class={styles.icon} />
|
|
|
|
{t('Feed settings')}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|