/* * @Description: 评论单列 * @Author: tangjiang * @Github: * @Date: 2019-12-17 17:35:17 * @LastEditors: tangjiang * @LastEditTime: 2019-12-19 18:02:28 */ import './index.scss'; import React, { useState } from 'react'; import CommentIcon from './CommentIcon'; import { getImageUrl, CNotificationHOC } from 'educoder' import { Icon } from 'antd'; import moment from 'moment'; // import QuillForEditor from '../../quillForEditor'; import CommentForm from './CommentForm'; // import {ModalConfirm} from '../ModalConfirm'; function CommentItem ({ options, confirm }) { // 显示评论输入框 const [showQuill, setShowQuill] = useState(false); // 加载更多评论内容 const [showMore, setShowMore] = useState(false); // 箭头方向 const [arrow, setArrow] = useState(false); // 删除评论 const deleteComment = () => { console.log('删除评论...'); confirm({ title: '提示', content: (
确定要删除该条回复吗?
), onOk () { console.log('点击了删除'); } }); // ModalConfirm('提示', (确定要删除该条回复吗?
), () => { // console.log('点击了删除'); // }); } // 评论头像 const commentAvatar = (url) => (
用户名
{moment(new Date(), 'YYYYMMDD HHmmss').fromNow()}
这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容
); // 加载更多 const handleOnLoadMore = () => { if (!arrow) { // 展开所有 } else { // 收起 } setArrow(!arrow); }; // 评论追加内容 const commentAppend = () => { return (展开其余23条评论