2022-09-09 11:53:35 +00:00
|
|
|
|
import { capitalize } from '../../utils'
|
|
|
|
|
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 ArticleComment from './Comment'
|
|
|
|
|
import { AuthorCard } from '../Author/Card'
|
2022-11-23 19:14:59 +00:00
|
|
|
|
import { createMemo, createSignal, For, onMount, Show } from 'solid-js'
|
2022-09-09 11:53:35 +00:00
|
|
|
|
import type { Author, Reaction, Shout } from '../../graphql/types.gen'
|
|
|
|
|
import { t } from '../../utils/intl'
|
|
|
|
|
import { showModal } from '../../stores/ui'
|
2022-10-07 11:02:34 +00:00
|
|
|
|
import MD from './MD'
|
2022-10-25 15:36:32 +00:00
|
|
|
|
import { SharePopup } from './SharePopup'
|
2022-11-14 10:02:08 +00:00
|
|
|
|
import { useSession } from '../../context/session'
|
2022-11-23 19:14:59 +00:00
|
|
|
|
import stylesHeader from '../Nav/Header.module.scss'
|
|
|
|
|
import styles from '../../styles/Article.module.scss'
|
|
|
|
|
import RatingControl from './RatingControl'
|
|
|
|
|
import { clsx } from 'clsx'
|
2022-09-13 09:59:04 +00:00
|
|
|
|
|
2022-09-09 11:53:35 +00:00
|
|
|
|
const MAX_COMMENT_LEVEL = 6
|
|
|
|
|
|
|
|
|
|
const getCommentLevel = (comment: Reaction, level = 0) => {
|
|
|
|
|
if (comment && comment.replyTo && level < MAX_COMMENT_LEVEL) {
|
|
|
|
|
return 0 // FIXME: getCommentLevel(commentsById[c.replyTo], level + 1)
|
|
|
|
|
}
|
|
|
|
|
return level
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ArticleProps {
|
|
|
|
|
article: Shout
|
|
|
|
|
reactions: Reaction[]
|
|
|
|
|
isCommentsLoading: boolean
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const formatDate = (date: Date) => {
|
|
|
|
|
return date
|
|
|
|
|
.toLocaleDateString('ru', {
|
|
|
|
|
month: 'long',
|
|
|
|
|
day: 'numeric',
|
|
|
|
|
year: 'numeric'
|
|
|
|
|
})
|
|
|
|
|
.replace(' г.', '')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const FullArticle = (props: ArticleProps) => {
|
2022-11-14 10:02:08 +00:00
|
|
|
|
const { session } = useSession()
|
2022-09-09 11:53:35 +00:00
|
|
|
|
const formattedDate = createMemo(() => formatDate(new Date(props.article.createdAt)))
|
2022-11-23 19:14:59 +00:00
|
|
|
|
const [isSharePopupVisible, setIsSharePopupVisible] = createSignal(false)
|
2022-09-09 11:53:35 +00:00
|
|
|
|
|
|
|
|
|
const mainTopic = () =>
|
|
|
|
|
(props.article.topics?.find((topic) => topic?.slug === props.article.mainTopic)?.title || '').replace(
|
|
|
|
|
' ',
|
|
|
|
|
' '
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
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'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div class="shout wide-container">
|
|
|
|
|
<article class="col-md-6 shift-content">
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<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>
|
|
|
|
|
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<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>
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={styles.shoutCover} style={{ 'background-image': `url('${props.article.cover}')` }} />
|
2022-09-09 11:53:35 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
2022-10-09 10:56:39 +00:00
|
|
|
|
<Show when={Boolean(props.article.body)}>
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={styles.shoutBody}>
|
2022-10-09 10:56:39 +00:00
|
|
|
|
<Show
|
|
|
|
|
when={!props.article.body.startsWith('<')}
|
|
|
|
|
fallback={<div innerHTML={props.article.body} />}
|
|
|
|
|
>
|
|
|
|
|
<MD body={props.article.body} />
|
|
|
|
|
</Show>
|
|
|
|
|
</div>
|
|
|
|
|
</Show>
|
2022-09-09 11:53:35 +00:00
|
|
|
|
</article>
|
|
|
|
|
|
|
|
|
|
<div class="col-md-8 shift-content">
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={styles.shoutStats}>
|
|
|
|
|
<div class={styles.shoutStatsItem}>
|
|
|
|
|
<RatingControl rating={props.article.stat?.rating} />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class={clsx(styles.shoutStatsItem, styles.shoutStatsItemLikes)}>
|
|
|
|
|
<Icon name="like" class={styles.icon} />
|
2022-09-09 11:53:35 +00:00
|
|
|
|
{props.article.stat?.rating || ''}
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={styles.shoutStatsItem}>
|
|
|
|
|
<Icon name="comment" class={styles.icon} />
|
2022-09-09 11:53:35 +00:00
|
|
|
|
{props.article.stat?.commented || ''}
|
|
|
|
|
</div>
|
|
|
|
|
{/*FIXME*/}
|
2022-11-23 19:14:59 +00:00
|
|
|
|
{/*<div class={styles.shoutStatsItem}>*/}
|
2022-09-09 11:53:35 +00:00
|
|
|
|
{/* <a href="#bookmark" onClick={() => console.log(props.article.slug, 'articles')}>*/}
|
|
|
|
|
{/* <Icon name={'bookmark' + (bookmarked() ? '' : '-x')} />*/}
|
|
|
|
|
{/* </a>*/}
|
|
|
|
|
{/*</div>*/}
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={styles.shoutStatsItem}>
|
2022-10-25 15:36:32 +00:00
|
|
|
|
<SharePopup
|
2022-11-23 19:14:59 +00:00
|
|
|
|
onVisibilityChange={(isVisible) => {
|
|
|
|
|
setIsSharePopupVisible(isVisible)
|
|
|
|
|
}}
|
|
|
|
|
containerCssClass={stylesHeader.control}
|
|
|
|
|
trigger={<Icon name="share" class={styles.icon} />}
|
2022-10-25 15:36:32 +00:00
|
|
|
|
/>
|
2022-09-09 11:53:35 +00:00
|
|
|
|
</div>
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={styles.shoutStatsItem}>
|
|
|
|
|
<Icon name="bookmark" class={styles.icon} />
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-09-09 11:53:35 +00:00
|
|
|
|
{/*FIXME*/}
|
|
|
|
|
{/*<Show when={canEdit()}>*/}
|
2022-11-23 19:14:59 +00:00
|
|
|
|
{/* <div class={styles.shoutStatsItem}>*/}
|
2022-09-09 11:53:35 +00:00
|
|
|
|
{/* <a href="/edit">*/}
|
|
|
|
|
{/* <Icon name="edit" />*/}
|
|
|
|
|
{/* {t('Edit')}*/}
|
|
|
|
|
{/* </a>*/}
|
|
|
|
|
{/* </div>*/}
|
|
|
|
|
{/*</Show>*/}
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={clsx(styles.shoutStatsItem, styles.shoutStatsItemAdditionalData)}>
|
|
|
|
|
<div class={clsx(styles.shoutStatsItem, styles.shoutStatsItemAdditionalDataItem)}>
|
|
|
|
|
{formattedDate}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Show when={props.article.stat?.viewed}>
|
|
|
|
|
<div class={clsx(styles.shoutStatsItem, styles.shoutStatsItemAdditionalDataItem)}>
|
|
|
|
|
<Icon name="view" class={styles.icon} />
|
|
|
|
|
{props.article.stat?.viewed}
|
|
|
|
|
</div>
|
|
|
|
|
</Show>
|
|
|
|
|
</div>
|
2022-09-09 11:53:35 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={styles.topicsList}>
|
2022-09-13 09:59:04 +00:00
|
|
|
|
<For each={props.article.topics}>
|
|
|
|
|
{(topic) => (
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<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
|
|
|
|
|
2022-11-23 19:14:59 +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}>
|
2022-11-23 19:14:59 +00:00
|
|
|
|
{(a: Author) => (
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<AuthorCard author={a} compact={false} hasLink={true} liteButtons={true} />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2022-09-09 11:53:35 +00:00
|
|
|
|
</For>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Show when={props.reactions?.length}>
|
|
|
|
|
<h2 id="comments">
|
|
|
|
|
{t('Comments')} {props.reactions?.length.toString() || ''}
|
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
|
|
<For each={props.reactions?.filter((r) => r.body)}>
|
|
|
|
|
{(reaction) => (
|
|
|
|
|
<ArticleComment
|
|
|
|
|
comment={reaction}
|
|
|
|
|
level={getCommentLevel(reaction)}
|
2022-09-30 14:22:33 +00:00
|
|
|
|
canEdit={reaction.createdBy?.slug === session()?.user?.slug}
|
2022-09-09 11:53:35 +00:00
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</For>
|
|
|
|
|
</Show>
|
2022-09-30 14:22:33 +00:00
|
|
|
|
<Show when={!session()?.user?.slug}>
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<div class={styles.commentWarning} id="comments">
|
2022-09-13 09:59:04 +00:00
|
|
|
|
{t('To leave a comment you please')}
|
|
|
|
|
<a
|
|
|
|
|
href={''}
|
|
|
|
|
onClick={(evt) => {
|
|
|
|
|
evt.preventDefault()
|
|
|
|
|
showModal('auth')
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<i>{t('sign up or sign in')}</i>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</Show>
|
2022-09-30 14:22:33 +00:00
|
|
|
|
<Show when={session()?.user?.slug}>
|
2022-11-23 19:14:59 +00:00
|
|
|
|
<textarea class={styles.writeComment} rows="1" placeholder={t('Write comment')} />
|
2022-09-13 09:59:04 +00:00
|
|
|
|
</Show>
|
2022-09-09 11:53:35 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|