summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-01-25 13:39:22 -0500
committerDessalines <tyhou13@gmx.com>2020-01-25 13:39:22 -0500
commitf4ecb53342254c40de4695480c4ae6f102ad760a (patch)
treed3679a8d49d91897130f7dc3c9b1d4483c7704e4
parent1da94464eb57cf8a22e48301c59713d2aa2da3b9 (diff)
Removing disabled from comment and post upvoting, showing toast now. Fixes #450
-rw-r--r--ui/src/components/comment-node.tsx18
-rw-r--r--ui/src/components/post-listing.tsx11
2 files changed, 17 insertions, 12 deletions
diff --git a/ui/src/components/comment-node.tsx b/ui/src/components/comment-node.tsx
index 046fc88d..a42d096e 100644
--- a/ui/src/components/comment-node.tsx
+++ b/ui/src/components/comment-node.tsx
@@ -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,
diff --git a/ui/src/components/post-listing.tsx b/ui/src/components/post-listing.tsx
index aab2cea5..c9a29e87 100644
--- a/ui/src/components/post-listing.tsx
+++ b/ui/src/components/post-listing.tsx
@@ -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,