/* * @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) => ( ); // 评论信息 const commentInfo = () => (

用户名 {moment(new Date(), 'YYYYMMDD HHmmss').fromNow()}

); // 评论内容 const commentCtx = (ctx) => (

这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容这是评论内容

); // 加载更多 const handleOnLoadMore = () => { if (!arrow) { // 展开所有 } else { // 收起 } setArrow(!arrow); }; // 评论追加内容 const commentAppend = () => { return ( ); }; // 点击图标 const handleIconClick = () => {} // 点击评论icon const handleClickMessage = () => { setShowQuill(true); } // 点击取消 const handleClickCancel = () => { setShowQuill(false); } // 点击保存 const handleClickSubmit = (content) => { // 保存并关闭 setShowQuill(false); console.log('获取保存内容', content); } return (
  • {commentAvatar()}
    {commentInfo()} {commentCtx()} {commentAppend()}
    {/* 回复 */} {/* 点赞 */}
  • ); } export default CNotificationHOC() (CommentItem);