mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
116 lines
2.7 KiB
TypeScript
116 lines
2.7 KiB
TypeScript
import React, { memo, VFC } from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import { Icon } from '~/components/input/Icon';
|
|
import { SeparatedMenu } from '~/components/menu/SeparatedMenu';
|
|
import { NodeEditMenu } from '~/components/node/NodeEditMenu';
|
|
import { Placeholder } from '~/components/placeholders/Placeholder';
|
|
import { getPrettyDate } from '~/utils/dom';
|
|
|
|
import styles from './styles.module.scss';
|
|
|
|
interface IProps {
|
|
id?: number;
|
|
title: string;
|
|
username?: string;
|
|
createdAt: string;
|
|
likeCount: number;
|
|
|
|
isHeroic: boolean;
|
|
isLocked: boolean;
|
|
isLiked: boolean;
|
|
|
|
canEdit: boolean;
|
|
canLike: boolean;
|
|
canStar: boolean;
|
|
|
|
isLoading: boolean;
|
|
|
|
onLike: () => void;
|
|
onStar: () => void;
|
|
onLock: () => void;
|
|
onEdit: () => void;
|
|
}
|
|
|
|
const NodeTitle: VFC<IProps> = memo(
|
|
({
|
|
title,
|
|
username,
|
|
createdAt,
|
|
likeCount,
|
|
|
|
isHeroic,
|
|
isLocked,
|
|
isLiked,
|
|
|
|
canStar,
|
|
canEdit,
|
|
canLike,
|
|
|
|
isLoading,
|
|
|
|
onStar,
|
|
onLike,
|
|
onLock,
|
|
onEdit,
|
|
}) => {
|
|
return (
|
|
<div className={classNames(styles.wrap)}>
|
|
<div className={styles.content}>
|
|
<div className={styles.panel}>
|
|
<div className={styles.title}>
|
|
{isLoading ? <Placeholder width="40%" /> : title || '...'}
|
|
</div>
|
|
|
|
{!!username && (
|
|
<aside className={styles.name}>
|
|
{isLoading ? (
|
|
<Placeholder width="100px" />
|
|
) : (
|
|
`~${username.toLocaleLowerCase()}, ${getPrettyDate(
|
|
createdAt,
|
|
)}`
|
|
)}
|
|
</aside>
|
|
)}
|
|
</div>
|
|
|
|
<SeparatedMenu className={styles.buttons}>
|
|
{canEdit && (
|
|
<NodeEditMenu
|
|
className={styles.button}
|
|
canStar={canStar}
|
|
isHeroic={isHeroic}
|
|
isLocked={isLocked}
|
|
onStar={onStar}
|
|
onLock={onLock}
|
|
onEdit={onEdit}
|
|
/>
|
|
)}
|
|
|
|
{canLike && (
|
|
<div
|
|
className={classNames(styles.button, styles.like, {
|
|
[styles.is_liked]: isLiked,
|
|
})}
|
|
>
|
|
{isLiked ? (
|
|
<Icon icon="heart_full" size={24} onClick={onLike} />
|
|
) : (
|
|
<Icon icon="heart" size={24} onClick={onLike} />
|
|
)}
|
|
|
|
{!!likeCount && likeCount > 0 && (
|
|
<div className={styles.like_count}>{likeCount}</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</SeparatedMenu>
|
|
</div>
|
|
</div>
|
|
);
|
|
},
|
|
);
|
|
|
|
export { NodeTitle };
|