mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
feat(catalog): add sticky and closed icons
This commit is contained in:
@@ -21,6 +21,31 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.threadIcons {
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
right: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.threadIcons span {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
display: inline-block;
|
||||||
|
border: none;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
image-rendering: pixelated;
|
||||||
|
}
|
||||||
|
|
||||||
|
.threadIcons .stickyIcon {
|
||||||
|
background-image: url("/public/assets/icons/sticky.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
.threadIcons .closedIcon {
|
||||||
|
background-image: url("/public/assets/icons/closed.gif");
|
||||||
}
|
}
|
||||||
|
|
||||||
.mediaWrapper {
|
.mediaWrapper {
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
import { Comment } from '@plebbit/plebbit-react-hooks';
|
import { Comment } from '@plebbit/plebbit-react-hooks';
|
||||||
import { getCommentMediaInfo, getHasThumbnail } from '../../lib/utils/media-utils';
|
import { getCommentMediaInfo, getHasThumbnail } from '../../lib/utils/media-utils';
|
||||||
import useFetchGifFirstFrame from '../../hooks/use-fetch-gif-first-frame';
|
import useFetchGifFirstFrame from '../../hooks/use-fetch-gif-first-frame';
|
||||||
import useCountLinksInReplies from '../../hooks/use-count-links-in-replies';
|
import useCountLinksInReplies from '../../hooks/use-count-links-in-replies';
|
||||||
import styles from './catalog-row.module.css';
|
import styles from './catalog-row.module.css';
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
|
|
||||||
const CatalogPostMedia = ({ commentMediaInfo, link }: { commentMediaInfo: any; link: string }) => {
|
const CatalogPostMedia = ({ commentMediaInfo, link }: { commentMediaInfo: any; link: string }) => {
|
||||||
const { patternThumbnailUrl, thumbnail, type, url } = commentMediaInfo || {};
|
const { patternThumbnailUrl, thumbnail, type, url } = commentMediaInfo || {};
|
||||||
@@ -28,7 +29,8 @@ const CatalogPostMedia = ({ commentMediaInfo, link }: { commentMediaInfo: any; l
|
|||||||
};
|
};
|
||||||
|
|
||||||
const CatalogPost = ({ post }: { post: Comment }) => {
|
const CatalogPost = ({ post }: { post: Comment }) => {
|
||||||
const { cid, content, isDescription, isRules, link, linkHeight, linkWidth, replyCount, subplebbitAddress, title } = post || {};
|
const { t } = useTranslation();
|
||||||
|
const { cid, content, isDescription, isRules, link, linkHeight, linkWidth, locked, pinned, replyCount, subplebbitAddress, title } = post || {};
|
||||||
const commentMediaInfo = getCommentMediaInfo(post);
|
const commentMediaInfo = getCommentMediaInfo(post);
|
||||||
const { type } = commentMediaInfo || {};
|
const { type } = commentMediaInfo || {};
|
||||||
const hasThumbnail = getHasThumbnail(commentMediaInfo, link);
|
const hasThumbnail = getHasThumbnail(commentMediaInfo, link);
|
||||||
@@ -50,21 +52,36 @@ const CatalogPost = ({ post }: { post: Comment }) => {
|
|||||||
displayHeight = '75px';
|
displayHeight = '75px';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isDescription || isRules) {
|
||||||
|
displayWidth = 'unset';
|
||||||
|
displayHeight = 'unset';
|
||||||
|
}
|
||||||
|
|
||||||
const thumbnailDimensions = { '--width': displayWidth, '--height': displayHeight } as React.CSSProperties;
|
const thumbnailDimensions = { '--width': displayWidth, '--height': displayHeight } as React.CSSProperties;
|
||||||
const postLink = `/p/${subplebbitAddress}/${isDescription ? 'description' : isRules ? 'rules' : `c/${cid}`}`;
|
const postLink = `/p/${subplebbitAddress}/${isDescription ? 'description' : isRules ? 'rules' : `c/${cid}`}`;
|
||||||
|
|
||||||
const linkCount = useCountLinksInReplies(post);
|
const linkCount = useCountLinksInReplies(post);
|
||||||
|
|
||||||
|
const threadIcons = (
|
||||||
|
<div className={styles.threadIcons}>
|
||||||
|
{pinned && <span className={styles.stickyIcon} title={t('sticky')} />}
|
||||||
|
{locked && <span className={styles.closedIcon} title={t('closed')} />}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.post}>
|
<div className={styles.post}>
|
||||||
{hasThumbnail && (
|
{hasThumbnail ? (
|
||||||
<Link to={postLink}>
|
<Link to={postLink}>
|
||||||
<div className={styles.mediaPaddingWrapper}>
|
<div className={styles.mediaPaddingWrapper}>
|
||||||
|
{threadIcons}
|
||||||
<div className={styles.mediaWrapper} style={thumbnailDimensions}>
|
<div className={styles.mediaWrapper} style={thumbnailDimensions}>
|
||||||
<CatalogPostMedia commentMediaInfo={commentMediaInfo} link={link} />
|
<CatalogPostMedia commentMediaInfo={commentMediaInfo} link={link} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
|
) : (
|
||||||
|
threadIcons
|
||||||
)}
|
)}
|
||||||
<div className={styles.meta}>
|
<div className={styles.meta}>
|
||||||
R: <b>{replyCount || '0'}</b>
|
R: <b>{replyCount || '0'}</b>
|
||||||
|
|||||||
@@ -2,10 +2,6 @@
|
|||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.catalog {
|
|
||||||
padding-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 640px) {
|
@media (max-width: 640px) {
|
||||||
.footer {
|
.footer {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
|||||||
Reference in New Issue
Block a user