mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 10:09:56 +00:00
fix: Remove tippy duplicate functions
This commit is contained in:
parent
be6ec3692e
commit
7af899ee75
1 changed files with 22 additions and 49 deletions
|
@ -23,6 +23,25 @@ interface VoteButtonsState {
|
||||||
downvoteLoading: boolean;
|
downvoteLoading: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const tippy = (counts: CommentAggregates | PostAggregates): string => {
|
||||||
|
const points = I18NextService.i18n.t("number_of_points", {
|
||||||
|
count: Number(counts.score),
|
||||||
|
formattedCount: Number(counts.score),
|
||||||
|
});
|
||||||
|
|
||||||
|
const upvotes = I18NextService.i18n.t("number_of_upvotes", {
|
||||||
|
count: Number(counts.upvotes),
|
||||||
|
formattedCount: Number(counts.upvotes),
|
||||||
|
});
|
||||||
|
|
||||||
|
const downvotes = I18NextService.i18n.t("number_of_downvotes", {
|
||||||
|
count: Number(counts.downvotes),
|
||||||
|
formattedCount: Number(counts.downvotes),
|
||||||
|
});
|
||||||
|
|
||||||
|
return `${points} • ${upvotes} • ${downvotes}`;
|
||||||
|
};
|
||||||
|
|
||||||
export class VoteButtonsCompact extends Component<
|
export class VoteButtonsCompact extends Component<
|
||||||
VoteButtonsProps,
|
VoteButtonsProps,
|
||||||
VoteButtonsState
|
VoteButtonsState
|
||||||
|
@ -36,29 +55,6 @@ export class VoteButtonsCompact extends Component<
|
||||||
super(props, context);
|
super(props, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
get pointsTippy(): string {
|
|
||||||
const points = I18NextService.i18n.t("number_of_points", {
|
|
||||||
count: Number(this.props.counts.score),
|
|
||||||
formattedCount: Number(this.props.counts.score),
|
|
||||||
});
|
|
||||||
|
|
||||||
const upvotes = I18NextService.i18n.t("number_of_upvotes", {
|
|
||||||
count: Number(this.props.counts.upvotes),
|
|
||||||
formattedCount: Number(this.props.counts.upvotes),
|
|
||||||
});
|
|
||||||
|
|
||||||
const downvotes = I18NextService.i18n.t("number_of_downvotes", {
|
|
||||||
count: Number(this.props.counts.downvotes),
|
|
||||||
formattedCount: Number(this.props.counts.downvotes),
|
|
||||||
});
|
|
||||||
|
|
||||||
return `${points} • ${upvotes} • ${downvotes}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
get tippy() {
|
|
||||||
return showScores() ? { "data-tippy-content": this.pointsTippy } : {};
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
@ -66,7 +62,7 @@ export class VoteButtonsCompact extends Component<
|
||||||
className={`btn-animate btn py-0 px-1 ${
|
className={`btn-animate btn py-0 px-1 ${
|
||||||
this.props.my_vote === 1 ? "text-info" : "text-muted"
|
this.props.my_vote === 1 ? "text-info" : "text-muted"
|
||||||
}`}
|
}`}
|
||||||
{...this.tippy}
|
data-tippy-content={tippy(this.props.counts)}
|
||||||
onClick={linkEvent(this.props.postListing, this.props.handleUpvote)}
|
onClick={linkEvent(this.props.postListing, this.props.handleUpvote)}
|
||||||
aria-label={I18NextService.i18n.t("upvote")}
|
aria-label={I18NextService.i18n.t("upvote")}
|
||||||
aria-pressed={this.props.my_vote === 1}
|
aria-pressed={this.props.my_vote === 1}
|
||||||
|
@ -93,7 +89,7 @@ export class VoteButtonsCompact extends Component<
|
||||||
this.props.postListing,
|
this.props.postListing,
|
||||||
this.props.handleDownvote
|
this.props.handleDownvote
|
||||||
)}
|
)}
|
||||||
{...this.tippy}
|
data-tippy-content={tippy(this.props.counts)}
|
||||||
aria-label={I18NextService.i18n.t("downvote")}
|
aria-label={I18NextService.i18n.t("downvote")}
|
||||||
aria-pressed={this.props.my_vote === -1}
|
aria-pressed={this.props.my_vote === -1}
|
||||||
>
|
>
|
||||||
|
@ -130,29 +126,6 @@ export class VoteButtons extends Component<VoteButtonsProps, VoteButtonsState> {
|
||||||
super(props, context);
|
super(props, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
get pointsTippy(): string {
|
|
||||||
const points = I18NextService.i18n.t("number_of_points", {
|
|
||||||
count: Number(this.props.counts.score),
|
|
||||||
formattedCount: Number(this.props.counts.score),
|
|
||||||
});
|
|
||||||
|
|
||||||
const upvotes = I18NextService.i18n.t("number_of_upvotes", {
|
|
||||||
count: Number(this.props.counts.upvotes),
|
|
||||||
formattedCount: Number(this.props.counts.upvotes),
|
|
||||||
});
|
|
||||||
|
|
||||||
const downvotes = I18NextService.i18n.t("number_of_downvotes", {
|
|
||||||
count: Number(this.props.counts.downvotes),
|
|
||||||
formattedCount: Number(this.props.counts.downvotes),
|
|
||||||
});
|
|
||||||
|
|
||||||
return `${points} • ${upvotes} • ${downvotes}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
get tippy() {
|
|
||||||
return showScores() ? { "data-tippy-content": this.pointsTippy } : {};
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div className={`vote-bar col-1 pe-0 small text-center`}>
|
<div className={`vote-bar col-1 pe-0 small text-center`}>
|
||||||
|
@ -174,7 +147,7 @@ export class VoteButtons extends Component<VoteButtonsProps, VoteButtonsState> {
|
||||||
{showScores() ? (
|
{showScores() ? (
|
||||||
<div
|
<div
|
||||||
className={`unselectable pointer text-muted px-1 post-score`}
|
className={`unselectable pointer text-muted px-1 post-score`}
|
||||||
data-tippy-content={this.pointsTippy}
|
data-tippy-content={tippy(this.props.counts)}
|
||||||
>
|
>
|
||||||
{numToSI(this.props.counts.score)}
|
{numToSI(this.props.counts.score)}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue