2019-06-26 19:59:27 -04:00
|
|
|
import { connect } from 'react-redux';
|
2021-07-15 22:43:28 +08:00
|
|
|
import {
|
2021-11-10 23:30:58 +08:00
|
|
|
selectStakedLevelForChannelUri,
|
2021-07-15 22:43:28 +08:00
|
|
|
makeSelectClaimForUri,
|
2021-11-12 23:59:11 +08:00
|
|
|
selectThumbnailForUri,
|
2021-11-08 14:27:14 +08:00
|
|
|
selectHasChannels,
|
2022-02-09 12:27:11 -03:00
|
|
|
selectMyClaimIdsRaw,
|
2022-03-09 19:05:37 +01:00
|
|
|
selectOdyseeMembershipForUri,
|
2021-10-17 16:36:14 +08: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';
|
2022-02-09 12:27:11 -03:00
|
|
|
import { doClearPlayingUri } from 'redux/actions/content';
|
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';
|
2022-03-09 19:05:37 +01:00
|
|
|
import {
|
|
|
|
selectUserVerifiedEmail,
|
|
|
|
} from 'redux/selectors/user';
|
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) => {
|
2022-02-09 12:27:11 -03:00
|
|
|
const { comment, uri } = props;
|
2022-02-14 13:14:23 +08:00
|
|
|
const { comment_id, channel_url } = comment || {};
|
2022-02-09 12:27:11 -03:00
|
|
|
|
2021-07-20 14:38:29 +08:00
|
|
|
const activeChannelClaim = selectActiveChannelClaim(state);
|
|
|
|
const activeChannelId = activeChannelClaim && activeChannelClaim.claim_id;
|
2022-02-09 12:27:11 -03:00
|
|
|
const reactionKey = activeChannelId ? `${comment_id}:${activeChannelId}` : comment_id;
|
2021-07-15 22:43:28 +08:00
|
|
|
|
|
|
|
return {
|
2022-02-09 12:27:11 -03:00
|
|
|
myChannelIds: selectMyClaimIdsRaw(state),
|
|
|
|
claim: makeSelectClaimForUri(uri)(state),
|
2022-02-14 13:14:23 +08:00
|
|
|
thumbnail: channel_url && selectThumbnailForUri(state, channel_url),
|
|
|
|
channelIsBlocked: channel_url && makeSelectChannelIsMuted(channel_url)(state),
|
2022-03-09 19:05:37 +01:00
|
|
|
commentingEnabled: Boolean(selectUserVerifiedEmail(state)),
|
2021-10-07 02:40:40 +08:00
|
|
|
othersReacts: selectOthersReactsForComment(state, reactionKey),
|
2021-07-20 14:38:29 +08:00
|
|
|
activeChannelClaim,
|
2021-11-08 14:27:14 +08:00
|
|
|
hasChannels: selectHasChannels(state),
|
2021-07-15 22:43:28 +08:00
|
|
|
playingUri: selectPlayingUri(state),
|
2022-02-14 13:14:23 +08:00
|
|
|
stakedLevel: selectStakedLevelForChannelUri(state, channel_url),
|
2021-07-15 22:43:28 +08:00
|
|
|
linkedCommentAncestors: selectLinkedCommentAncestors(state),
|
2022-02-09 12:27:11 -03:00
|
|
|
totalReplyPages: makeSelectTotalReplyPagesForParentId(comment_id)(state),
|
2022-03-09 19:05:37 +01:00
|
|
|
selectOdyseeMembershipForUri: channel_url && selectOdyseeMembershipForUri(state, channel_url),
|
2021-07-15 22:43:28 +08:00
|
|
|
};
|
|
|
|
};
|
2019-10-23 03:04:40 -04:00
|
|
|
|
2022-02-09 12:27:11 -03:00
|
|
|
const perform = {
|
|
|
|
doClearPlayingUri,
|
2022-02-09 17:36:36 -03:00
|
|
|
updateComment: doCommentUpdate,
|
2022-02-09 12:27:11 -03:00
|
|
|
fetchReplies: doCommentList,
|
|
|
|
doToast,
|
|
|
|
};
|
2019-10-23 03:04:40 -04:00
|
|
|
|
2020-01-29 20:02:21 -05:00
|
|
|
export default connect(select, perform)(Comment);
|