Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix comments bugs #2384

Merged
merged 12 commits into from May 11, 2021
Merged
1 change: 0 additions & 1 deletion src/actions/api.js
Expand Up @@ -980,7 +980,6 @@ export const onCommentVote = (currentUserID, token, commentid, vote, state) =>
dispatch(act.RECEIVE_SYNC_LIKE_COMMENT({ token, commentid, vote }));
})
.catch((error) => {
dispatch(act.RESET_SYNC_LIKE_COMMENT({ token }));
dispatch(act.RECEIVE_LIKE_COMMENT(null, error));
});
});
Expand Down
5 changes: 0 additions & 5 deletions src/actions/tests/api.test.js
Expand Up @@ -669,11 +669,6 @@ describe("test api actions (actions/api.js)", () => {
error: false,
payload: { commentid, token: FAKE_PROPOSAL_TOKEN }
},
{
type: act.RESET_SYNC_LIKE_COMMENT,
error: false,
payload: { token: FAKE_PROPOSAL_TOKEN }
},
{
error: true,
payload: { errorcode },
Expand Down
130 changes: 45 additions & 85 deletions src/components/Likes/Likes.jsx
@@ -1,64 +1,33 @@
import React, { useCallback, useState, useEffect } from "react";
import React, { useCallback } from "react";
import PropTypes from "prop-types";
import { delay } from "lodash";
import {
Icon,
useTheme,
Text,
getThemeProperty,
useHover,
Spinner,
classNames
} from "pi-ui";
import { debounce } from "lodash";
import { Icon, useTheme, Text, getThemeProperty, classNames } from "pi-ui";
import styles from "./Likes.module.css";

export const isLiked = (action) => action === 1 || action === "1";
export const isDisliked = (action) => action === -1 || action === "-1";

const Likes = ({
upLikes,
downLikes,
onLike,
onDislike,
option,
disabled,
apiLoading
}) => {
const [loading, setLoading] = useState(false);
const [likeRef, isLikeHovered] = useHover();
const [dislikeRef, isDislikeHovered] = useHover();
const Likes = ({ upLikes, downLikes, onLike, onDislike, option, disabled }) => {
const { theme } = useTheme();
const defaultColor = getThemeProperty(theme, "comment-like-color");
const activeColor = getThemeProperty(theme, "comment-like-color-active");
const liked = isLiked(option);
const disliked = isDisliked(option);
const likeColor = liked || isLikeHovered ? activeColor : defaultColor;
const dislikeColor =
disliked || isDislikeHovered ? activeColor : defaultColor;
const likeColor = liked ? activeColor : defaultColor;
const dislikeColor = disliked ? activeColor : defaultColor;

useEffect(() => {
if (apiLoading) {
delay(() => setLoading(true), 1000);
} else if (loading) {
setLoading(false);
}
}, [apiLoading, loading, setLoading]);
async function handleLike() {
if (disabled) return;
await onLike();
}

const handleLike = useCallback(
async function handleLike() {
if (disabled) return;
await onLike();
},
[disabled, onLike]
);
async function handleDislike() {
if (disabled) return;
await onDislike();
}

const handleDislike = useCallback(
async function handleDislike() {
if (disabled) return;
await onDislike();
},
[disabled, onDislike]
);
const debouncedHandleDislike = debounce(handleDislike, 500);
const debouncedHandleLike = debounce(handleLike, 500);

const renderCount = useCallback(
(count) => (
Expand All @@ -73,44 +42,35 @@ const Likes = ({
);

return (
<div
className={classNames("align-center", disabled && styles.likeDisabled)}>
{loading && apiLoading ? (
<div className={styles.likeBoxSpinner}>
<Spinner invert />
</div>
) : (
<>
<div className={styles.leftLikeBox}>
<button
ref={likeRef}
className={styles.likeBtn}
data-testid="like-btn"
onClick={handleLike}>
<Icon
iconColor={likeColor}
backgroundColor={likeColor}
type="like"
/>
</button>
{renderCount(upLikes)}
</div>
<div className={styles.rightLikeBox}>
<button
ref={dislikeRef}
className={styles.likeBtn}
data-testid="dislike-btn"
onClick={handleDislike}>
<Icon
iconColor={dislikeColor}
backgroundColor={dislikeColor}
type="dislike"
/>
</button>
{renderCount(downLikes)}
</div>
</>
)}
<div className={"align-center"}>
<div className={styles.leftLikeBox}>
<button
className={classNames(
styles.likeBtn,
disabled && styles.likeDisabled
)}
data-testid="like-btn"
onClick={debouncedHandleLike}>
<Icon iconColor={likeColor} backgroundColor={likeColor} type="like" />
</button>
{renderCount(upLikes)}
</div>
<div className={styles.rightLikeBox}>
<button
className={classNames(
styles.likeBtn,
disabled && styles.likeDisabled
)}
data-testid="dislike-btn"
onClick={debouncedHandleDislike}>
<Icon
iconColor={dislikeColor}
backgroundColor={dislikeColor}
type="dislike"
/>
</button>
{renderCount(downLikes)}
</div>
</div>
);
};
Expand Down
6 changes: 3 additions & 3 deletions src/components/Likes/Likes.module.css
Expand Up @@ -33,10 +33,10 @@
color: var(--color-gray) !important;
}

.likeDisabled .likeBtn {
.likeDisabled {
cursor: not-allowed;
}

.likeBtn:hover > svg {
fill: black;
.likeBtn:not(.likeDisabled):hover svg > g > path {
fill: var(--comment-like-color-active) !important;
}
2 changes: 0 additions & 2 deletions src/containers/Comments/Comment/Comment.jsx
Expand Up @@ -45,7 +45,6 @@ const Comment = ({
censorable,
isFlatMode,
seeInContextLink,
loadingLikeAction,
...props
}) => {
const extraSmall = useMediaQuery("(max-width: 560px)");
Expand Down Expand Up @@ -100,7 +99,6 @@ const Comment = ({
<div className={styles.likesWrapper}>
<Likes
disabled={disableLikesClick}
apiLoading={!!loadingLikeAction}
upLikes={likesUpCount}
downLikes={likesDownCount}
option={likeOption}
Expand Down
3 changes: 0 additions & 3 deletions src/containers/Comments/Comment/CommentWrapper.jsx
Expand Up @@ -78,7 +78,6 @@ const CommentWrapper = ({
recordAuthorID,
recordAuthorUsername,
loadingLikes,
loadingLikeAction,
userLoggedIn,
recordToken,
readOnly,
Expand Down Expand Up @@ -172,7 +171,6 @@ const CommentWrapper = ({

const isLikeCommentDisabled =
loadingLikes ||
!!loadingLikeAction ||
readOnly ||
(userLoggedIn &&
(identityError || paywallMissing || currentUser.username === username));
Expand All @@ -199,7 +197,6 @@ const CommentWrapper = ({
likeOption={getCommentLikeOption(commentid)}
onLike={handleLikeComment}
onDislike={handleDislikeComment}
loadingLikeAction={loadingLikeAction[commentid]}
showReplies={showReplies}
isFlatMode={isFlatMode}
onClickCensor={handleClickCensor}
Expand Down
9 changes: 7 additions & 2 deletions src/containers/Comments/helpers.js
Expand Up @@ -38,7 +38,7 @@ export const getSort = (sortOption) => {
[commentSortOptions.SORT_BY_OLD]: orderBy(["timestamp"], ["asc"]),
[commentSortOptions.SORT_BY_TOP]: orderBy(
["resultvotes", "timestamp"],
["desc", "desc"]
["desc", "asc"]
)
};

Expand All @@ -50,7 +50,12 @@ export const getSort = (sortOption) => {

export const sortComments = (sortOption, comments) => {
const sorter = getSort(sortOption);
return sorter(comments);
return sorter(
comments.map((comment) => ({
...comment,
resultvotes: comment.upvotes - comment.downvotes
}))
);
};

/**
Expand Down
6 changes: 2 additions & 4 deletions src/containers/Comments/hooks.js
Expand Up @@ -56,7 +56,6 @@ export function useComments(recordToken, proposalState) {
? act.onFetchDccComments
: act.onFetchInvoiceComments
);
const loadingLikeAction = useSelector(sel.isApiRequestingLikeComment);
const onFetchLikes = useAction(act.onFetchLikedComments);
const onCommentVoteAction = useAction(act.onCommentVote);
const onCensorComment = useAction(act.onCensorComment);
Expand Down Expand Up @@ -111,9 +110,9 @@ export function useComments(recordToken, proposalState) {
(cl) => cl.commentid === commentID
);
if (actionData) {
return actionData.action;
return actionData.vote;
}
return actionData ? actionData.action : 0;
return actionData ? actionData.vote : 0;
},
[commentsLikes]
);
Expand All @@ -131,7 +130,6 @@ export function useComments(recordToken, proposalState) {
lastVisitTimestamp,
loading,
loadingLikes,
loadingLikeAction,
onSubmitComment,
error
};
Expand Down