fix slow mode chat

set last comment time when comment is submitted
This commit is contained in:
DispatchCommit 2021-03-22 14:13:15 -07:00
parent f18ad64527
commit 0ec31d3c29

View file

@ -98,11 +98,11 @@ export function CommentCreate(props: Props) {
if (activeChannelClaim && commentValue.length) { if (activeChannelClaim && commentValue.length) {
const timeUntilCanComment = !lastCommentTime const timeUntilCanComment = !lastCommentTime
? 0 ? 0
: lastCommentTime / 1000 - Date.now() / 1000 + COMMENT_SLOW_MODE_SECONDS; : (lastCommentTime - Date.now()) / 1000 + COMMENT_SLOW_MODE_SECONDS;
if (livestream && !claimIsMine && timeUntilCanComment > 0) { if (livestream && !claimIsMine && timeUntilCanComment > 0) {
toast( toast(
__('Slowmode is on. You can comment again in %time% seconds.', { time: Math.floor(timeUntilCanComment) }) __('Slowmode is on. You can comment again in %time% seconds.', { time: Math.ceil(timeUntilCanComment) })
); );
return; return;
} }
@ -110,6 +110,7 @@ export function CommentCreate(props: Props) {
createComment(commentValue, claimId, parentId).then((res) => { createComment(commentValue, claimId, parentId).then((res) => {
if (res && res.signature) { if (res && res.signature) {
setCommentValue(''); setCommentValue('');
setLastCommentTime(Date.now());
if (onDoneReplying) { if (onDoneReplying) {
onDoneReplying(); onDoneReplying();