Explorar o código

added like comment

makstravm %!s(int64=2) %!d(string=hai) anos
pai
achega
a0723536b7

+ 8 - 2
src/App.scss

@@ -533,10 +533,16 @@ video {
         margin-bottom: -5px;
         margin-left: auto;
         color: rgba(0, 0, 0, 0.45);
-        font-size: 12px;
+        width: 20px;
+        height: 20px;
         cursor: pointer;
         transition: color 0.3s;
-        font-size: 0.7em;
+        font-size: 1em;
+        transform: rotate(90deg);
+        svg {
+            width: 15px;
+            height: 20px;
+        }
         &:hover {
             color: #595959;
         }

+ 3 - 3
src/components/main/postsFeed/FieldComment.jsx

@@ -7,7 +7,7 @@ import { Button, Col, Row } from 'antd'
 import { actionAddSubComment, actionEditComment, actionFullAddComment } from '../../../actions'
 
 
-const FieldCommentSend = ({ id, sentComment, autoFocus, value = '', setOpen }) => {
+const FieldCommentSend = ({ id, sentComment, autoFocus, value = '', setOpen, rows = 1,bordered=false }) => {
     const [commentValue, setCommentValue] = useState(value)
     const [error, setError] = useState(false)
 
@@ -44,9 +44,9 @@ const FieldCommentSend = ({ id, sentComment, autoFocus, value = '', setOpen }) =
                     <TextArea value={commentValue}
                         autoFocus={autoFocus || false}
                         placeholder="Add a comment ..."
-                        autoSize={{ minRows: 1, maxRows: 1 }}
+                        autoSize={{ minRows: 1, maxRows: rows }}
                         onChange={changeComentTextarea}
-                        bordered={false}
+                        bordered={bordered}
                         onKeyPress={onKeyPressHandler}
                     />
                 </Col>

+ 24 - 23
src/pages/PostPage.jsx

@@ -1,5 +1,5 @@
 import React, { useState } from 'react'
-import { Button, Divider } from 'antd';
+import { Button, Divider, Dropdown, Menu } from 'antd';
 import { connect } from 'react-redux'
 import PostImage from '../components/main/postsFeed/PostImage'
 import { PostDescription } from './MainPostsFeed';
@@ -9,7 +9,7 @@ import { CPostUserPanel } from '../components/main/postsFeed/PostUserPanel';
 import { Comment, Tooltip } from 'antd';
 import moment from 'moment';
 import { Link } from 'react-router-dom';
-import { EditOutlined, LikeFilled, LikeOutlined } from '@ant-design/icons';
+import { DeleteOutlined, EditOutlined, LikeFilled, LikeOutlined, MoreOutlined } from '@ant-design/icons';
 import { actionLikeComment, actionDelLikeComment, actionSubComment } from '../actions';
 import { CPostTitle } from '../components/main/post/PostTitle';
 import { UserAvatar } from '../components/header/UserAvatar';
@@ -30,17 +30,28 @@ const PostCommentAuthor = ({ owner }) =>
     </>
 
 
-
+const EditMenu = ({ setEditComment }) =>
+    <Menu>
+        <Menu.Item key="1" onClick={() => setEditComment(true)}><EditOutlined /> Edit</Menu.Item>
+    </Menu>
 
 const PostCommentText = ({ myID, commentId, owner, text }) => {
     const [editComment, setEditComment] = useState(false)
     return (
         <>
-            {owner?._id === myID && <span className='PostOne__comment-edit' onClick={() => setEditComment(true)}>Edit <EditOutlined /></span >}
-            {!editComment ? <Paragraph ellipsis={{ rows: 2, expandable: true, symbol: 'more' }} >
-                {text}
-            </ Paragraph> :
-                <CFieldUpsertCommentSend value={text} id={commentId} autoFocus={true} setOpen={setEditComment} />}
+            {owner?._id === myID && <Dropdown overlay={<EditMenu setEditComment={setEditComment} />} placement="bottomRight">
+                <span className='PostOne__comment-edit'
+                >
+                    <MoreOutlined />
+                </span >
+            </Dropdown>}
+            {!editComment
+                ? <Dropdown overlay={owner?._id === myID && <EditMenu setEditComment={setEditComment} />} trigger={['contextMenu']}>
+                    <Paragraph ellipsis={{ rows: 2, expandable: true, symbol: 'more' }} >
+                        {text}
+                    </ Paragraph>
+                </Dropdown>
+                : <CFieldUpsertCommentSend value={text} id={commentId} autoFocus={true} setOpen={setEditComment} rows={4} bordered={true} />}
         </>)
 }
 
@@ -57,24 +68,14 @@ const PostCommentAction = ({ myID, commentId, likes, delLikeComment, addLikeComm
     const [open, setOpen] = useState(false);
     const likeId = likes.find(l => l?.owner?._id === myID)?._id
 
-    const changeLike = () => {
-
-
-        if (likeId) {
+    const changeLike = () => likeId ? delLikeComment(likeId, commentId) : addLikeComment(commentId)
 
-            delLikeComment(likeId, commentId)
-        } else {
-            
-            addLikeComment(commentId)
-
-        }
-    }
     return (
         <>
-            <Button onClick={changeLike}>
+            <span onClick={changeLike}>
                 {likeId ? <LikeFilled /> : <LikeOutlined />}
                 <span style={{ paddingLeft: 8, cursor: 'auto' }}>{likes.length ? likes.length : ''}</span>
-            </Button>
+            </span>
             <span onClick={() => setOpen(!open)}>Reply to</span>
             {open && <CFieldSubCommentSend autoFocus={true} id={commentId} setOpen={setOpen} />}
         </>
@@ -83,10 +84,10 @@ const PostCommentAction = ({ myID, commentId, likes, delLikeComment, addLikeComm
 
 const CPostCommentAction = connect(state => ({
     myID: state.auth.payload.sub.id || ''
-}, {
+}), {
     addLikeComment: actionLikeComment,
     delLikeComment: actionDelLikeComment
-}))(PostCommentAction)
+})(PostCommentAction)
 
 
 const PostComments = ({ comments, findSubComment, parentId, }) => {

+ 0 - 1
src/redux/saga/index.js

@@ -210,7 +210,6 @@ function* delLikePostWorker({ likeId, postId }) {
 }
 
 function* addLikeCommentWorker({ commentId }) {
-    debugger
     yield call(promiseWorker, actionAddLikeComment(commentId))
     const { likes } = yield call(promiseWorker, actionFindLikeComment(commentId))
     if (likes) {