2019-06-26 19:59:27 -04:00
|
|
|
import { connect } from 'react-redux';
|
2021-07-15 22:43:28 +08:00
|
|
|
import {
|
|
|
|
makeSelectStakedLevelForChannelUri,
|
|
|
|
makeSelectClaimForUri,
|
|
|
|
makeSelectThumbnailForUri,
|
|
|
|
selectMyChannelClaims,
|
2021-10-07 23:47:39 -04:00
|
|
|
} from 'redux/selectors/claims';
|
2021-07-15 22:43:28 +08:00
|
|
|
import { doCommentUpdate, doCommentList } from 'redux/actions/comments';
|
2021-03-03 13:50:16 -05:00
|
|
|
import { makeSelectChannelIsMuted } from 'redux/selectors/blocked';
|
2020-09-11 13:51:31 -04:00
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2021-01-26 16:50:44 -03:00
|
|
|
import { doSetPlayingUri } from 'redux/actions/content';
|
2020-08-24 13:35:21 -04:00
|
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
2021-08-04 23:01:31 +08:00
|
|
|
import {
|
|
|
|
selectLinkedCommentAncestors,
|
2021-10-07 02:40:40 +08:00
|
|
|
selectOthersReactsForComment,
|
2021-08-04 23:01:31 +08:00
|
|
|
makeSelectTotalReplyPagesForParentId,
|
|
|
|
} from 'redux/selectors/comments';
|
2021-07-20 14:38:29 +08:00
|
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
2021-03-02 18:12:54 +08:00
|
|
|
import { selectPlayingUri } from 'redux/selectors/content';
|
2020-09-11 13:51:31 -04:00
|
|
|
import Comment from './view';
|
2019-06-26 19:59:27 -04:00
|
|
|
|
2021-07-15 22:43:28 +08:00
|
|
|
const select = (state, props) => {
|
2021-07-20 14:38:29 +08:00
|
|
|
const activeChannelClaim = selectActiveChannelClaim(state);
|
|
|
|
const activeChannelId = activeChannelClaim && activeChannelClaim.claim_id;
|
2021-07-15 22:43:28 +08:00
|
|
|
const reactionKey = activeChannelId ? `${props.commentId}:${activeChannelId}` : props.commentId;
|
|
|
|
|
|
|
|
return {
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
|
|
thumbnail: props.authorUri && makeSelectThumbnailForUri(props.authorUri)(state),
|
|
|
|
channelIsBlocked: props.authorUri && makeSelectChannelIsMuted(props.authorUri)(state),
|
|
|
|
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
2021-10-07 02:40:40 +08:00
|
|
|
othersReacts: selectOthersReactsForComment(state, reactionKey),
|
2021-07-20 14:38:29 +08:00
|
|
|
activeChannelClaim,
|
2021-07-15 22:43:28 +08:00
|
|
|
myChannels: selectMyChannelClaims(state),
|
|
|
|
playingUri: selectPlayingUri(state),
|
|
|
|
stakedLevel: makeSelectStakedLevelForChannelUri(props.authorUri)(state),
|
|
|
|
linkedCommentAncestors: selectLinkedCommentAncestors(state),
|
2021-08-04 23:01:31 +08:00
|
|
|
totalReplyPages: makeSelectTotalReplyPagesForParentId(props.commentId)(state),
|
2021-07-15 22:43:28 +08:00
|
|
|
};
|
|
|
|
};
|
2019-10-23 03:04:40 -04:00
|
|
|
|
2021-02-11 14:01:22 -05:00
|
|
|
const perform = (dispatch) => ({
|
2021-03-02 18:12:54 +08:00
|
|
|
clearPlayingUri: () => dispatch(doSetPlayingUri({ uri: null })),
|
2020-01-29 20:02:21 -05:00
|
|
|
updateComment: (commentId, comment) => dispatch(doCommentUpdate(commentId, comment)),
|
2021-07-15 22:43:28 +08:00
|
|
|
fetchReplies: (uri, parentId, page, pageSize, sortBy) =>
|
|
|
|
dispatch(doCommentList(uri, parentId, page, pageSize, sortBy)),
|
2021-02-11 14:01:22 -05:00
|
|
|
doToast: (options) => dispatch(doToast(options)),
|
2019-10-23 03:04:40 -04:00
|
|
|
});
|
|
|
|
|
2020-01-29 20:02:21 -05:00
|
|
|
export default connect(select, perform)(Comment);
|