d6ac2c7954
## Issue Closes 6159 "Support Comments Enabled/Disabled for comment.List API" ## New behavior - `disable-comments` tag will block the comments component entirely. - `settings.commentsEnabled`: - When false, will pause comment fetching, posting and replying. - Any already-fetched comments will stay on screen (unless user reloads/F5).
33 lines
1.4 KiB
JavaScript
33 lines
1.4 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { makeSelectClaimIsMine, selectFetchingMyChannels, selectMyChannelClaims } from 'lbry-redux';
|
|
import {
|
|
makeSelectTopLevelCommentsForUri,
|
|
selectIsFetchingComments,
|
|
makeSelectTotalCommentsCountForUri,
|
|
selectOthersReactsById,
|
|
makeSelectCommentsDisabledForUri,
|
|
} from 'redux/selectors/comments';
|
|
import { doCommentList, doCommentReactList } from 'redux/actions/comments';
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
|
import { selectActiveChannelId } from 'redux/selectors/app';
|
|
import CommentsList from './view';
|
|
|
|
const select = (state, props) => ({
|
|
myChannels: selectMyChannelClaims(state),
|
|
comments: makeSelectTopLevelCommentsForUri(props.uri)(state),
|
|
totalComments: makeSelectTotalCommentsCountForUri(props.uri)(state),
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
|
isFetchingComments: selectIsFetchingComments(state),
|
|
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
|
commentsDisabledBySettings: makeSelectCommentsDisabledForUri(props.uri)(state),
|
|
fetchingChannels: selectFetchingMyChannels(state),
|
|
reactionsById: selectOthersReactsById(state),
|
|
activeChannelId: selectActiveChannelId(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
fetchComments: (uri) => dispatch(doCommentList(uri)),
|
|
fetchReacts: (uri) => dispatch(doCommentReactList(uri)),
|
|
});
|
|
|
|
export default connect(select, perform)(CommentsList);
|