Merge branch 'main' into auth-error-message

This commit is contained in:
SleeplessOne1917 2023-07-02 22:14:46 +00:00 committed by GitHub
commit 73198ac03a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,8 +64,6 @@ const handleUpvote = (i: VoteButtons) => {
auth: myAuthRequired(), auth: myAuthRequired(),
}); });
} }
i.setState({ upvoteLoading: false });
}; };
const handleDownvote = (i: VoteButtons) => { const handleDownvote = (i: VoteButtons) => {
@ -86,7 +84,6 @@ const handleDownvote = (i: VoteButtons) => {
auth: myAuthRequired(), auth: myAuthRequired(),
}); });
} }
i.setState({ downvoteLoading: false });
}; };
export class VoteButtonsCompact extends Component< export class VoteButtonsCompact extends Component<
@ -102,6 +99,15 @@ export class VoteButtonsCompact extends Component<
super(props, context); super(props, context);
} }
componentWillReceiveProps(nextProps: VoteButtonsProps) {
if (this.props !== nextProps) {
this.setState({
upvoteLoading: false,
downvoteLoading: false,
});
}
}
render() { render() {
return ( return (
<> <>
@ -172,6 +178,15 @@ export class VoteButtons extends Component<VoteButtonsProps, VoteButtonsState> {
super(props, context); super(props, context);
} }
componentWillReceiveProps(nextProps: VoteButtonsProps) {
if (this.props !== nextProps) {
this.setState({
upvoteLoading: false,
downvoteLoading: false,
});
}
}
render() { render() {
return ( return (
<div className="vote-bar small text-center"> <div className="vote-bar small text-center">