webapp/src/components/Feed/Card.tsx

202 lines
6.9 KiB
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { t } from '../../utils/intl'
2022-10-31 16:40:55 +00:00
import { createMemo, For, Show } from 'solid-js'
2022-09-22 09:37:49 +00:00
import type { Shout } from '../../graphql/types.gen'
2022-09-09 11:53:35 +00:00
import { capitalize } from '../../utils'
import { translit } from '../../utils/ru2en'
2022-09-22 09:37:49 +00:00
import { Icon } from '../Nav/Icon'
2022-10-25 21:45:37 +00:00
import styles from './Card.module.scss'
2022-09-23 23:42:19 +00:00
import { locale } from '../../stores/ui'
2022-09-22 09:37:49 +00:00
import { handleClientRouteLinkClick } from '../../stores/router'
2022-10-19 14:26:49 +00:00
import { clsx } from 'clsx'
import CardTopic from './CardTopic'
2022-09-09 11:53:35 +00:00
interface ArticleCardProps {
settings?: {
noicon?: boolean
noimage?: boolean
nosubtitle?: boolean
noauthor?: boolean
nodate?: boolean
isGroup?: boolean
photoBottom?: boolean
additionalClass?: string
isFeedMode?: boolean
2022-10-19 14:26:49 +00:00
isFloorImportant?: boolean
isWithCover?: boolean
isBigTitle?: boolean
isVertical?: boolean
isShort?: boolean
withBorder?: boolean
isCompact?: boolean
isSingle?: boolean
2022-09-09 11:53:35 +00:00
}
article: Shout
}
2022-09-22 09:37:49 +00:00
const getTitleAndSubtitle = (article: Shout): { title: string; subtitle: string } => {
let title = article.title
let subtitle = article.subtitle
2022-09-09 11:53:35 +00:00
2022-09-22 09:37:49 +00:00
if (!subtitle) {
let tt = article.title?.split('. ') || []
2022-09-09 11:53:35 +00:00
2022-09-22 09:37:49 +00:00
if (tt?.length === 1) {
tt = article.title?.split(/{!|\?|:|;}\s/) || []
}
2022-09-09 11:53:35 +00:00
2022-09-22 09:37:49 +00:00
if (tt && tt.length > 1) {
const sep = article.title?.replace(tt[0], '').split(' ', 1)[0]
title = tt[0] + (!(sep === '.' || sep === ':') ? sep : '')
subtitle = capitalize(article.title?.replace(tt[0] + sep, ''), true)
2022-09-09 11:53:35 +00:00
}
}
2022-09-22 09:37:49 +00:00
return { title, subtitle }
}
export const ArticleCard = (props: ArticleCardProps) => {
const mainTopic = props.article.topics.find(
(articleTopic) => articleTopic.slug === props.article.mainTopic
)
const formattedDate = createMemo<string>(() => {
return new Date(props.article.createdAt)
.toLocaleDateString(locale(), { month: 'long', day: 'numeric', year: 'numeric' })
.replace(' г.', '')
})
const { title, subtitle } = getTitleAndSubtitle(props.article)
const { cover, layout, slug, authors, stat } = props.article
2022-09-09 11:53:35 +00:00
return (
<section
2022-10-25 21:45:37 +00:00
class={clsx(styles.shoutCard, `${props.settings?.additionalClass || ''}`)}
2022-09-09 11:53:35 +00:00
classList={{
2022-10-25 21:45:37 +00:00
[styles.shoutCardShort]: props.settings?.isShort,
[styles.shoutCardPhotoBottom]: props.settings?.noimage && props.settings?.photoBottom,
[styles.shoutCardFeed]: props.settings?.isFeedMode,
[styles.shoutCardFloorImportant]: props.settings?.isFloorImportant,
[styles.shoutCardWithCover]: props.settings?.isWithCover,
[styles.shoutCardBigTitle]: props.settings?.isBigTitle,
[styles.shoutCardVertical]: props.settings?.isVertical,
[styles.shoutCardWithBorder]: props.settings?.withBorder,
[styles.shoutCardCompact]: props.settings?.isCompact,
[styles.shoutCardSingle]: props.settings?.isSingle
2022-09-09 11:53:35 +00:00
}}
>
2022-09-28 10:34:21 +00:00
<Show when={!props.settings?.noimage && cover}>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutCardCoverContainer}>
<div class={styles.shoutCardCover}>
2022-09-28 10:34:21 +00:00
<img src={cover || ''} alt={title || ''} loading="lazy" />
</div>
</div>
</Show>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutCardContent}>
2022-09-28 10:34:21 +00:00
<Show when={layout && layout !== 'article' && !(props.settings?.noicon || props.settings?.noimage)}>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutCardType}>
2022-09-28 10:34:21 +00:00
<a href={`/topic/${mainTopic.slug}`}>
2022-10-25 21:45:37 +00:00
<Icon name={layout} class={styles.icon} />
2022-09-28 10:34:21 +00:00
</a>
2022-09-09 11:53:35 +00:00
</div>
</Show>
2022-09-28 10:34:21 +00:00
<Show when={!props.settings?.isGroup}>
2022-10-19 14:26:49 +00:00
<CardTopic
title={
locale() === 'ru' && mainTopic.title ? mainTopic.title : mainTopic.slug.replace('-', ' ')
}
slug={mainTopic.slug}
isFloorImportant={props.settings?.isFloorImportant}
/>
2022-09-28 10:34:21 +00:00
</Show>
2022-09-09 11:53:35 +00:00
2022-10-25 21:45:37 +00:00
<div class={styles.shoutCardTitlesContainer}>
2022-09-28 10:34:21 +00:00
<a href={`/${slug || ''}`} onClick={handleClientRouteLinkClick}>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutCardTitle}>
<span class={styles.shoutCardLinkContainer}>{title}</span>
2022-09-09 11:53:35 +00:00
</div>
2022-09-28 10:34:21 +00:00
<Show when={!props.settings?.nosubtitle && subtitle}>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutCardSubtitle}>
<span class={styles.shoutCardLinkContainer}>{subtitle}</span>
2022-09-09 11:53:35 +00:00
</div>
2022-09-28 10:34:21 +00:00
</Show>
</a>
</div>
2022-09-09 11:53:35 +00:00
2022-09-28 10:34:21 +00:00
<Show when={!props.settings?.noauthor || !props.settings?.nodate}>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutDetails}>
2022-09-28 10:34:21 +00:00
<Show when={!props.settings?.noauthor}>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutAuthor}>
2022-09-28 10:34:21 +00:00
<For each={authors}>
{(author, index) => {
const name =
author.name === 'Дискурс' && locale() !== 'ru'
? 'Discours'
: translit(author.name || '', locale() || 'ru')
return (
<>
<Show when={index() > 0}>, </Show>
<a href={`/author/${author.slug}`}>{name}</a>
</>
)
}}
</For>
</div>
</Show>
<Show when={!props.settings?.nodate}>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutDate}>{formattedDate()}</div>
2022-09-28 10:34:21 +00:00
</Show>
2022-09-09 11:53:35 +00:00
</div>
2022-09-28 10:34:21 +00:00
</Show>
2022-09-09 11:53:35 +00:00
2022-09-28 10:34:21 +00:00
<Show when={props.settings?.isFeedMode}>
2022-10-25 21:45:37 +00:00
<section class={styles.shoutCardDetails}>
<div class={styles.shoutCardDetailsContent}>
<div class={clsx(styles.shoutCardDetailsItem, styles.rating)}>
<button class={styles.ratingControl}>&minus;</button>
<span class={styles.ratingValue}>{stat?.rating || ''}</span>
<button class={styles.ratingControl}>+</button>
2022-09-28 10:34:21 +00:00
</div>
2022-10-25 21:45:37 +00:00
<div
class={clsx(
styles.shoutCardDetailsItem,
styles.shoutCardDetailsViewed,
styles.shoutCardComments
)}
>
<Icon name="eye" class={styles.icon} />
2022-09-28 10:34:21 +00:00
{stat?.viewed}
</div>
2022-10-25 21:45:37 +00:00
<div class={clsx(styles.shoutCardDetailsItem, styles.shoutCardComments)}>
2022-09-28 10:34:21 +00:00
<a href={`/${slug + '#comments' || ''}`}>
2022-10-25 21:45:37 +00:00
<Icon name="comment" class={styles.icon} />
2022-09-28 10:34:21 +00:00
{stat?.commented || ''}
</a>
2022-09-09 11:53:35 +00:00
</div>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutCardDetailsItem}>
2022-09-28 10:34:21 +00:00
<button>
2022-10-25 21:45:37 +00:00
<Icon name="bookmark" class={styles.icon} />
2022-09-28 10:34:21 +00:00
</button>
</div>
2022-10-25 21:45:37 +00:00
<div class={styles.shoutCardDetailsItem}>
2022-09-28 10:34:21 +00:00
<button>
2022-10-25 21:45:37 +00:00
<Icon name="ellipsis" class={styles.icon} />
2022-09-28 10:34:21 +00:00
</button>
</div>
</div>
2022-10-25 21:45:37 +00:00
<button class={clsx('button--light', styles.shoutCardEditControl)}>{t('Collaborate')}</button>
2022-09-28 10:34:21 +00:00
</section>
</Show>
</div>
2022-09-09 11:53:35 +00:00
</section>
)
}