Add score color to bar

pull/722/head
Dessalines 4 years ago
parent 2c2918cc9e
commit 7c274fdd35

@ -181,7 +181,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
})} })}
> >
<li className="list-inline-item"> <li className="list-inline-item">
<span className="text-danger"> <span className={this.scoreColor}>
<svg class="small icon icon-inline mr-1"> <svg class="small icon icon-inline mr-1">
<use xlinkHref="#icon-heart"></use> <use xlinkHref="#icon-heart"></use>
</svg> </svg>
@ -1144,4 +1144,14 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
i.setState(i.state); i.setState(i.state);
setupTippy(); setupTippy();
} }
get scoreColor() {
if (this.state.my_vote == 1) {
return 'text-info';
} else if (this.state.my_vote == -1) {
return 'text-danger';
} else {
return 'text-muted';
}
}
} }

Loading…
Cancel
Save