fix!: Try to get Vote Buttons component working in Comments

This commit is contained in:
Jay Sitter 2023-06-23 00:15:24 -04:00
parent e9341e791b
commit 787a75396b
2 changed files with 21 additions and 98 deletions

View file

@ -3,7 +3,6 @@ import {
getCommentParentId, getCommentParentId,
myAuth, myAuth,
myAuthRequired, myAuthRequired,
newVote,
showScores, showScores,
} from "@utils/app"; } from "@utils/app";
import { futureDaysToUnixTime, numToSI } from "@utils/helpers"; import { futureDaysToUnixTime, numToSI } from "@utils/helpers";
@ -53,13 +52,13 @@ import {
CommentNodeI, CommentNodeI,
CommentViewType, CommentViewType,
PurgeType, PurgeType,
VoteType,
} from "../../interfaces"; } from "../../interfaces";
import { mdToHtml, mdToHtmlNoImages } from "../../markdown"; import { mdToHtml, mdToHtmlNoImages } from "../../markdown";
import { I18NextService, UserService } from "../../services"; import { I18NextService, UserService } from "../../services";
import { setupTippy } from "../../tippy"; import { setupTippy } from "../../tippy";
import { Icon, PurgeWarning, Spinner } from "../common/icon"; import { Icon, PurgeWarning, Spinner } from "../common/icon";
import { MomentTime } from "../common/moment-time"; import { MomentTime } from "../common/moment-time";
import { VoteButtonsCompact } from "../common/vote-buttons";
import { CommunityLink } from "../community/community-link"; import { CommunityLink } from "../community/community-link";
import { PersonListing } from "../person/person-listing"; import { PersonListing } from "../person/person-listing";
import { CommentForm } from "./comment-form"; import { CommentForm } from "./comment-form";
@ -280,7 +279,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
node.comment_view.counts.child_count > 0; node.comment_view.counts.child_count > 0;
return ( return (
<li className="comment" role="comment"> <li className="comment">
<article <article
id={`comment-${cv.comment.id}`} id={`comment-${cv.comment.id}`}
className={classNames(`details comment-node py-2`, { className={classNames(`details comment-node py-2`, {
@ -353,29 +352,18 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
)} )}
{/* This is an expanding spacer for mobile */} {/* This is an expanding spacer for mobile */}
<div className="me-lg-5 flex-grow-1 flex-lg-grow-0 unselectable pointer mx-2" /> <div className="me-lg-5 flex-grow-1 flex-lg-grow-0 unselectable pointer mx-2" />
{showScores() && ( {showScores() && (
<> <>
<a
className={`unselectable pointer ${this.scoreColor}`}
onClick={linkEvent(this, this.handleUpvote)}
data-tippy-content={this.pointsTippy}
>
{this.state.upvoteLoading ? (
<Spinner />
) : (
<span <span
className="me-1 font-weight-bold" className="me-1 font-weight-bold"
aria-label={I18NextService.i18n.t("number_of_points", { aria-label={I18NextService.i18n.t("number_of_points", {
count: Number(this.commentView.counts.score), count: Number(this.commentView.counts.score),
formattedCount: numToSI( formattedCount: numToSI(this.commentView.counts.score),
this.commentView.counts.score
),
})} })}
> >
{numToSI(this.commentView.counts.score)} {numToSI(this.commentView.counts.score)}
</span> </span>
)}
</a>
<span className="me-1"></span> <span className="me-1"></span>
</> </>
)} )}
@ -448,60 +436,13 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
)} )}
{UserService.Instance.myUserInfo && !this.props.viewOnly && ( {UserService.Instance.myUserInfo && !this.props.viewOnly && (
<> <>
<button <VoteButtonsCompact
className={`btn btn-link btn-animate ${ id={this.commentView.comment.id}
this.commentView.my_vote === 1 onVote={this.props.onCommentVote}
? "text-info" enableDownvotes={this.props.enableDownvotes}
: "text-muted" counts={this.commentView.counts}
}`} my_vote={this.commentView.my_vote}
onClick={linkEvent(this, this.handleUpvote)} />
data-tippy-content={I18NextService.i18n.t("upvote")}
aria-label={I18NextService.i18n.t("upvote")}
aria-pressed={this.commentView.my_vote === 1}
>
{this.state.upvoteLoading ? (
<Spinner />
) : (
<>
<Icon icon="arrow-up1" classes="icon-inline" />
{showScores() &&
this.commentView.counts.upvotes !==
this.commentView.counts.score && (
<span className="ms-1">
{numToSI(this.commentView.counts.upvotes)}
</span>
)}
</>
)}
</button>
{this.props.enableDownvotes && (
<button
className={`btn btn-link btn-animate ${
this.commentView.my_vote === -1
? "text-danger"
: "text-muted"
}`}
onClick={linkEvent(this, this.handleDownvote)}
data-tippy-content={I18NextService.i18n.t("downvote")}
aria-label={I18NextService.i18n.t("downvote")}
aria-pressed={this.commentView.my_vote === -1}
>
{this.state.downvoteLoading ? (
<Spinner />
) : (
<>
<Icon icon="arrow-down1" classes="icon-inline" />
{showScores() &&
this.commentView.counts.upvotes !==
this.commentView.counts.score && (
<span className="ms-1">
{numToSI(this.commentView.counts.downvotes)}
</span>
)}
</>
)}
</button>
)}
<button <button
className="btn btn-link btn-animate text-muted" className="btn btn-link btn-animate text-muted"
onClick={linkEvent(this, this.handleReplyClick)} onClick={linkEvent(this, this.handleReplyClick)}
@ -1480,24 +1421,6 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
}); });
} }
handleUpvote(i: CommentNode) {
i.setState({ upvoteLoading: true });
i.props.onCommentVote({
comment_id: i.commentId,
score: newVote(VoteType.Upvote, i.commentView.my_vote),
auth: myAuthRequired(),
});
}
handleDownvote(i: CommentNode) {
i.setState({ downvoteLoading: true });
i.props.onCommentVote({
comment_id: i.commentId,
score: newVote(VoteType.Downvote, i.commentView.my_vote),
auth: myAuthRequired(),
});
}
handleBlockPerson(i: CommentNode) { handleBlockPerson(i: CommentNode) {
i.setState({ blockPersonLoading: true }); i.setState({ blockPersonLoading: true });
i.props.onBlockPerson({ i.props.onBlockPerson({

View file

@ -14,7 +14,7 @@ import { Icon, Spinner } from "../common/icon";
interface VoteButtonsProps { interface VoteButtonsProps {
id: number; id: number;
onVote: (i: CreatePostLike | CreateCommentLike) => void; onVote: (i: CreateCommentLike | CreatePostLike) => void;
enableDownvotes?: boolean; enableDownvotes?: boolean;
counts: CommentAggregates | PostAggregates; counts: CommentAggregates | PostAggregates;
my_vote?: number; my_vote?: number;
@ -47,7 +47,7 @@ const tippy = (counts: CommentAggregates | PostAggregates): string => {
const handleUpvote = (i: VoteButtons) => { const handleUpvote = (i: VoteButtons) => {
i.setState({ upvoteLoading: true }); i.setState({ upvoteLoading: true });
i.props.onVote({ i.props.onVote({
post_id: i.props.id, id: i.props.id,
score: newVote(VoteType.Upvote, i.props.my_vote), score: newVote(VoteType.Upvote, i.props.my_vote),
auth: myAuthRequired(), auth: myAuthRequired(),
}); });
@ -57,7 +57,7 @@ const handleUpvote = (i: VoteButtons) => {
const handleDownvote = (i: VoteButtons) => { const handleDownvote = (i: VoteButtons) => {
i.setState({ downvoteLoading: true }); i.setState({ downvoteLoading: true });
i.props.onVote({ i.props.onVote({
post_id: i.props.id, id: i.props.id,
score: newVote(VoteType.Downvote, i.props.my_vote), score: newVote(VoteType.Downvote, i.props.my_vote),
auth: myAuthRequired(), auth: myAuthRequired(),
}); });