mirror of https://github.com/fantasticit/think.git
client: fix name case
This commit is contained in:
parent
f65b202778
commit
e0f09caa3d
|
@ -1,7 +1,7 @@
|
||||||
import type { IComment } from '@think/domains';
|
import type { IComment } from '@think/domains';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { CommentItem } from './Item';
|
import { CommentItem } from './item';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
comments: Array<IComment>;
|
comments: Array<IComment>;
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,89 @@
|
||||||
|
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>
|
||||||
|
);
|
||||||
|
};
|
Loading…
Reference in New Issue