Removing disabled from comment and post upvoting, showing toast now. Fixes #450

This commit is contained in:
Dessalines 2020-01-25 13:39:22 -05:00
parent 1da94464eb
commit f4ecb53342
2 changed files with 17 additions and 12 deletions

View file

@ -117,7 +117,6 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
.viewOnly && 'no-click'}`}
>
<button
disabled={!UserService.Instance.user}
className={`btn p-0 ${
node.comment.my_vote == 1 ? 'text-info' : 'text-muted'
}`}
@ -138,7 +137,6 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
</div>
{WebSocketService.Instance.site.enable_downvotes && (
<button
disabled={!UserService.Instance.user}
className={`btn p-0 ${
node.comment.my_vote == -1 ? 'text-danger' : 'text-muted'
}`}
@ -761,9 +759,11 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
}
handleCommentUpvote(i: CommentNodeI) {
this.setState({
upvoteLoading: true,
});
if (UserService.Instance.user) {
this.setState({
upvoteLoading: true,
});
}
let form: CommentLikeForm = {
comment_id: i.comment.id,
post_id: i.comment.post_id,
@ -773,9 +773,11 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
}
handleCommentDownvote(i: CommentNodeI) {
this.setState({
downvoteLoading: true,
});
if (UserService.Instance.user) {
this.setState({
downvoteLoading: true,
});
}
let form: CommentLikeForm = {
comment_id: i.comment.id,
post_id: i.comment.post_id,

View file

@ -119,7 +119,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<div class="listing col-12">
<div className={`vote-bar mr-2 float-left small text-center`}>
<button
disabled={!UserService.Instance.user}
className={`btn p-0 ${
post.my_vote == 1 ? 'text-info' : 'text-muted'
}`}
@ -138,7 +137,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<div class={`font-weight-bold text-muted`}>{post.score}</div>
{WebSocketService.Instance.site.enable_downvotes && (
<button
disabled={!UserService.Instance.user}
className={`btn p-0 ${
post.my_vote == -1 ? 'text-danger' : 'text-muted'
}`}
@ -740,17 +738,22 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
}
handlePostLike(i: PostListing) {
i.setState({ upvoteLoading: true });
if (UserService.Instance.user) {
i.setState({ upvoteLoading: true });
}
let form: CreatePostLikeForm = {
post_id: i.props.post.id,
score: i.props.post.my_vote == 1 ? 0 : 1,
};
WebSocketService.Instance.likePost(form);
}
handlePostDisLike(i: PostListing) {
i.setState({ downvoteLoading: true });
if (UserService.Instance.user) {
i.setState({ downvoteLoading: true });
}
let form: CreatePostLikeForm = {
post_id: i.props.post.id,