Add score color to bar

This commit is contained in:
Dessalines 2020-03-04 14:06:03 -05:00
parent 2c2918cc9e
commit 7c274fdd35

View file

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