File size: 1,445 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | // freeze the local changes to mitigate races with note updates
// from the server which occurred before the action
import * as types from '../../action-types';
import actions from '../../actions';
/** @type {number} number of ms to hold on to local like overrides */
const LOCAL_ACTION_PERSISTENCE = 10000;
const timers = {
localApprovals: {},
localLikes: {},
};
const updateApprovals = ( { dispatch }, { noteId } ) => {
const approvalTimers = timers.localApprovals;
// local override should be a sliding window
// so update time if it's still counting down
if ( approvalTimers.hasOwnProperty( noteId ) ) {
clearTimeout( approvalTimers[ noteId ] );
}
approvalTimers[ noteId ] = setTimeout(
() => dispatch( actions.notes.resetLocalApproval( noteId ) ),
LOCAL_ACTION_PERSISTENCE
);
};
const updateLikes = ( { dispatch }, { noteId } ) => {
const likeTimers = timers.localLikes;
// local override should be a sliding window
// so update time if it's still counting down
if ( likeTimers.hasOwnProperty( noteId ) ) {
clearTimeout( likeTimers[ noteId ] );
}
likeTimers[ noteId ] = setTimeout(
() => dispatch( actions.notes.resetLocalLike( noteId ) ),
LOCAL_ACTION_PERSISTENCE
);
};
export default {
[ types.APPROVE_NOTE ]: [ updateApprovals, updateLikes ],
[ types.LIKE_NOTE ]: [ updateLikes ],
[ types.SPAM_NOTE ]: [ updateApprovals, updateLikes ],
[ types.TRASH_NOTE ]: [ updateApprovals, updateLikes ],
};
|