2019-05-17 20:21:07 +02:00
|
|
|
import { connect } from 'react-redux';
|
2020-10-02 23:17:12 +02:00
|
|
|
import { makeSelectClaimIsMine, selectFetchingMyChannels, selectMyChannelClaims } from 'lbry-redux';
|
2020-09-30 20:46:17 +02:00
|
|
|
import {
|
|
|
|
makeSelectTopLevelCommentsForUri,
|
2021-06-17 05:11:40 +02:00
|
|
|
makeSelectTopLevelTotalPagesForUri,
|
2020-09-30 20:46:17 +02:00
|
|
|
selectIsFetchingComments,
|
|
|
|
makeSelectTotalCommentsCountForUri,
|
2020-10-06 21:35:13 +02:00
|
|
|
selectOthersReactsById,
|
2021-06-03 07:57:50 +02:00
|
|
|
makeSelectCommentsDisabledForUri,
|
2021-06-17 05:11:40 +02:00
|
|
|
selectMyReactionsByCommentId,
|
|
|
|
makeSelectCommentIdsForUri,
|
2020-09-30 20:46:17 +02:00
|
|
|
} from 'redux/selectors/comments';
|
2021-06-17 05:11:40 +02:00
|
|
|
import { doCommentReset, doCommentList, doCommentById, doCommentReactList } from 'redux/actions/comments';
|
2020-08-24 19:35:21 +02:00
|
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
2021-02-09 17:05:56 +01:00
|
|
|
import { selectActiveChannelId } from 'redux/selectors/app';
|
2020-10-20 19:10:02 +02:00
|
|
|
import CommentsList from './view';
|
2019-05-17 20:21:07 +02:00
|
|
|
|
2021-06-17 05:11:40 +02:00
|
|
|
const select = (state, props) => {
|
|
|
|
return {
|
|
|
|
myChannels: selectMyChannelClaims(state),
|
|
|
|
allCommentIds: makeSelectCommentIdsForUri(props.uri)(state),
|
|
|
|
topLevelComments: makeSelectTopLevelCommentsForUri(props.uri)(state),
|
|
|
|
topLevelTotalPages: makeSelectTopLevelTotalPagesForUri(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),
|
|
|
|
myReactsByCommentId: selectMyReactionsByCommentId(state),
|
|
|
|
othersReactsById: selectOthersReactsById(state),
|
|
|
|
activeChannelId: selectActiveChannelId(state),
|
|
|
|
};
|
|
|
|
};
|
2019-05-17 20:21:07 +02:00
|
|
|
|
2021-06-03 07:57:50 +02:00
|
|
|
const perform = (dispatch) => ({
|
2021-06-17 05:11:40 +02:00
|
|
|
fetchTopLevelComments: (uri, page, pageSize, sortBy) => dispatch(doCommentList(uri, '', page, pageSize, sortBy)),
|
|
|
|
fetchComment: (commentId) => dispatch(doCommentById(commentId)),
|
|
|
|
fetchReacts: (commentIds) => dispatch(doCommentReactList(commentIds)),
|
|
|
|
resetComments: (uri) => dispatch(doCommentReset(uri)),
|
2019-05-17 20:21:07 +02:00
|
|
|
});
|
2019-06-27 01:59:27 +02:00
|
|
|
|
2020-01-30 02:02:21 +01:00
|
|
|
export default connect(select, perform)(CommentsList);
|