Merge branch 'main' of github.com:fantasticit/think

This commit is contained in:
fantasticit 2022-06-03 16:32:41 +08:00
commit e382686b3b
2 changed files with 0 additions and 114 deletions

View File

@ -1,25 +0,0 @@
.wrap {
display: flex;
padding: 9px 0;
+ .wrap {
margin-top: 16px;
}
.rightWrap {
flex: 1;
margin-left: 16px;
overflow: auto;
> main {
margin: 10px 0;
color: var(--semi-color-text-0);
}
> footer {
span {
cursor: pointer;
}
}
}
}

View File

@ -1,89 +0,0 @@
import { IconUser } from '@douyinfe/semi-icons';
import { Avatar, Popconfirm, Skeleton, Space, Typography } from '@douyinfe/semi-ui';
import type { IComment, IUser } from '@think/domains';
import { LocaleTime } from 'components/locale-time';
import { useUser } from 'data/user';
import React from 'react';
import styles from './index.module.scss';
interface IProps {
comment: IComment;
replyComment: (comment: IComment) => void;
editComment: (comment: IComment) => void;
deleteComment: (comment: IComment) => void;
}
const { Text } = Typography;
export const CommentItem: React.FC<IProps> = ({ comment, replyComment, editComment, deleteComment }) => {
const { user } = useUser();
const { createUser = {} } = comment;
if (!comment) return null;
return (
<div className={styles.wrap}>
<div className={styles.leftWrap}>
<Avatar size="small" src={(createUser as IUser).avatar}>
<IconUser />
</Avatar>
</div>
<div className={styles.rightWrap}>
<header>
<Space>
<Text strong>{(createUser as IUser).name}</Text>
<Text type="tertiary">
<LocaleTime date={comment.createdAt} />
</Text>
</Space>
</header>
<main className="ProseMirror">
<div dangerouslySetInnerHTML={{ __html: comment.html }}></div>
</main>
<footer>
<Space>
<Text type="secondary" size="small" onClick={() => replyComment(comment)}>
</Text>
{user && user.id === comment.createUserId && (
<Text type="secondary" size="small" onClick={() => editComment(comment)}>
</Text>
)}
<Popconfirm showArrow title="确认删除该评论?" onConfirm={() => deleteComment(comment)}>
<Text type="secondary" size="small">
</Text>
</Popconfirm>
</Space>
</footer>
</div>
</div>
);
};
export const CommentItemPlaceholder = () => {
return (
<Skeleton
active
placeholder={
<div className={styles.wrap}>
<div className={styles.leftWrap}>
<Skeleton.Avatar size="small" />
</div>
<div className={styles.rightWrap}>
<header>
<Skeleton.Title style={{ width: 120 }} />
</header>
<main>
<div>
<Skeleton.Paragraph style={{ width: '100%' }} rows={3} />
</div>
</main>
</div>
</div>
}
></Skeleton>
);
};