webapp/src/components/Article/FullArticle.tsx

230 lines
7.0 KiB
TypeScript
Raw Normal View History

2022-11-26 21:27:54 +00:00
import { capitalize, formatDate } from '../../utils'
2022-09-09 11:53:35 +00:00
import './Full.scss'
2022-11-14 17:41:05 +00:00
import { Icon } from '../_shared/Icon'
2022-09-09 11:53:35 +00:00
import { AuthorCard } from '../Author/Card'
import { createMemo, For, Match, onMount, Show, Switch } from 'solid-js'
2022-11-27 11:00:44 +00:00
import type { Author, Shout } from '../../graphql/types.gen'
2022-09-09 11:53:35 +00:00
import { t } from '../../utils/intl'
2022-10-07 11:02:34 +00:00
import MD from './MD'
2022-10-25 15:36:32 +00:00
import { SharePopup } from './SharePopup'
import stylesHeader from '../Nav/Header.module.scss'
import styles from '../../styles/Article.module.scss'
import { RatingControl } from './RatingControl'
import { clsx } from 'clsx'
2022-11-26 16:51:08 +00:00
import { CommentsTree } from './CommentsTree'
2022-11-27 11:00:44 +00:00
import { useSession } from '../../context/session'
2022-11-27 11:35:27 +00:00
import VideoPlayer from './VideoPlayer'
2022-11-27 17:02:04 +00:00
import Slider from '../_shared/Slider'
2022-11-27 11:00:44 +00:00
2022-09-09 11:53:35 +00:00
interface ArticleProps {
article: Shout
}
2022-11-27 11:00:44 +00:00
interface MediaItem {
url?: string
pic?: string
title?: string
body?: string
}
const MediaView = (props: { media: MediaItem; kind: Shout['layout'] }) => {
return (
<>
2022-11-27 17:02:04 +00:00
<Switch fallback={<a href={props.media.url}>{t('Cannot show this media type')}</a>}>
2022-11-27 11:00:44 +00:00
<Match when={props.kind === 'audio'}>
<div>
<h5>{props.media.title}</h5>
<audio controls>
<source src={props.media.url} />
</audio>
<hr />
</div>
</Match>
<Match when={props.kind === 'video'}>
2022-11-27 11:35:27 +00:00
<VideoPlayer url={props.media.url} />
2022-11-27 11:00:44 +00:00
</Match>
</Switch>
</>
)
}
2022-09-09 11:53:35 +00:00
export const FullArticle = (props: ArticleProps) => {
2022-11-27 11:00:44 +00:00
const { session } = useSession()
2022-09-09 11:53:35 +00:00
const formattedDate = createMemo(() => formatDate(new Date(props.article.createdAt)))
const mainTopic = () =>
(props.article.topics?.find((topic) => topic?.slug === props.article.mainTopic)?.title || '').replace(
' ',
'&nbsp;'
)
onMount(() => {
const windowHash = window.location.hash
if (windowHash?.length > 0) {
const comments = document.querySelector(windowHash)
if (comments) {
window.scrollTo({
top: comments.getBoundingClientRect().top,
behavior: 'smooth'
})
}
}
})
2022-11-27 11:00:44 +00:00
const canEdit = () => props.article.authors?.some((a) => a.slug === session()?.user?.slug)
const bookmark = (ev) => {
// TODO: implement bookmark clicked
ev.preventDefault()
}
const body = createMemo(() => props.article.body)
const media = createMemo(() => {
const mi = JSON.parse(props.article.media || '[]')
console.debug(mi)
return mi
})
2022-09-09 11:53:35 +00:00
return (
<div class="shout wide-container">
<article class="col-md-6 shift-content">
<div class={styles.shoutHeader}>
<div class={styles.shoutTopic}>
2022-09-09 11:53:35 +00:00
<a href={`/topic/${props.article.mainTopic}`} innerHTML={mainTopic() || ''} />
</div>
<h1>{props.article.title}</h1>
<Show when={props.article.subtitle}>
<h4>{capitalize(props.article.subtitle, false)}</h4>
</Show>
<div class={styles.shoutAuthor}>
2022-09-09 11:53:35 +00:00
<For each={props.article.authors}>
{(a: Author, index) => (
<>
<Show when={index() > 0}>, </Show>
<a href={`/author/${a.slug}`}>{a.name}</a>
</>
)}
</For>
</div>
<div class={styles.shoutCover} style={{ 'background-image': `url('${props.article.cover}')` }} />
2022-09-09 11:53:35 +00:00
</div>
2022-11-27 17:02:04 +00:00
<Show
when={media() && props.article.layout !== 'image'}
fallback={
<Slider>
<For each={media() || []}>
{(m: MediaItem) => (
<>
<img src={m.url || m.pic} alt={m.title} />
<div innerHTML={m.body} />
</>
)}
</For>
</Slider>
}
>
2022-11-27 11:00:44 +00:00
<div class="media-items">
<For each={media() || []}>
{(m: MediaItem) => (
<div class={styles.shoutMediaBody}>
<MediaView media={m} kind={props.article.layout} />
<Show when={m?.body}>
<div innerHTML={m.body} />
</Show>
</div>
)}
</For>
</div>
</Show>
<Show when={body()}>
<div class={styles.shoutBody}>
2022-11-27 11:00:44 +00:00
<Show when={!body().startsWith('<')} fallback={<div innerHTML={body()} />}>
<MD body={body()} />
2022-10-09 10:56:39 +00:00
</Show>
</div>
</Show>
2022-09-09 11:53:35 +00:00
</article>
<div class="col-md-8 shift-content">
<div class={styles.shoutStats}>
<div class={styles.shoutStatsItem}>
2022-11-26 21:27:54 +00:00
<RatingControl rating={props.article.stat?.rating} class={styles.ratingControl} />
</div>
2022-11-27 11:00:44 +00:00
<Show when={props.article.stat?.viewed}>
<div class={clsx(styles.shoutStatsItem)}>
2022-12-04 15:10:27 +00:00
<Icon name="eye" class={clsx(styles.icon, styles.iconEye)} />
2022-11-27 17:02:04 +00:00
{props.article.stat?.viewed}
2022-11-27 11:00:44 +00:00
</div>
</Show>
<div class={styles.shoutStatsItem}>
<Icon name="comment" class={styles.icon} />
2022-09-09 11:53:35 +00:00
{props.article.stat?.commented || ''}
</div>
2022-11-27 11:00:44 +00:00
<div class={styles.shoutStatsItem}>
2022-10-25 15:36:32 +00:00
<SharePopup
containerCssClass={stylesHeader.control}
2022-12-04 15:10:27 +00:00
trigger={<Icon name="share-outline" class={styles.icon} />}
2022-10-25 15:36:32 +00:00
/>
2022-09-09 11:53:35 +00:00
</div>
2022-11-27 11:00:44 +00:00
<div class={styles.shoutStatsItem} onClick={bookmark}>
<Icon name="bookmark" class={styles.icon} />
</div>
2022-11-27 11:00:44 +00:00
<Show when={canEdit()}>
<div class={styles.shoutStatsItem}>
<a href="/edit">
<Icon name="edit" />
{t('Edit')}
</a>
</div>
</Show>
<div class={clsx(styles.shoutStatsItem, styles.shoutStatsItemAdditionalData)}>
<div class={clsx(styles.shoutStatsItem, styles.shoutStatsItemAdditionalDataItem)}>
2022-11-26 16:51:08 +00:00
{formattedDate()}
</div>
</div>
2022-09-09 11:53:35 +00:00
</div>
2022-11-26 21:27:54 +00:00
<div class={styles.help}>
2022-11-27 11:00:44 +00:00
<Show when={session()?.token}>
<button class="button">{t('Cooperate')}</button>
</Show>
<Show when={canEdit()}>
<button class="button button--light">{t('Invite to collab')}</button>
</Show>
2022-11-26 21:27:54 +00:00
</div>
<div class={styles.topicsList}>
2022-09-13 09:59:04 +00:00
<For each={props.article.topics}>
{(topic) => (
<div class={styles.shoutTopic}>
2022-09-13 09:59:04 +00:00
<a href={`/topic/${topic.slug}`}>{topic.title}</a>
</div>
)}
</For>
</div>
2022-09-09 11:53:35 +00:00
<div class={styles.shoutAuthorsList}>
2022-09-09 11:53:35 +00:00
<Show when={props.article?.authors?.length > 1}>
<h4>{t('Authors')}</h4>
</Show>
<For each={props.article?.authors}>
{(a: Author) => (
2022-11-26 21:27:54 +00:00
<div class="col-xl-6">
<AuthorCard author={a} compact={false} hasLink={true} liteButtons={true} />
</div>
)}
2022-09-09 11:53:35 +00:00
</For>
</div>
2022-11-26 16:51:08 +00:00
<CommentsTree shout={props.article?.slug} />
2022-09-09 11:53:35 +00:00
</div>
</div>
)
}