fastcomments-react-native-sdk
Version:
React Native FastComments Components. Add live commenting to any React Native application.
17 lines (16 loc) • 596 B
JavaScript
export function incOverallCommentCount(countAll, state, parentId) {
if (!parentId || (parentId && countAll)) {
state.commentCountOnServer.set((commentCountOnServer) => {
commentCountOnServer++;
return commentCountOnServer;
});
}
}
export function decOverallCommentCount(countAll, state, parentId) {
if (!parentId || (parentId && countAll)) {
state.commentCountOnServer.set((commentCountOnServer) => {
commentCountOnServer = Math.max(commentCountOnServer - 1, 0);
return commentCountOnServer;
});
}
}