2019-05-17 14:21:07 -04:00
|
|
|
import { connect } from 'react-redux';
|
2022-03-11 12:11:01 +08:00
|
|
|
import {
|
|
|
|
selectClaimForUri,
|
2022-03-09 19:05:37 +01:00
|
|
|
selectClaimIsMine,
|
|
|
|
selectFetchingMyChannels,
|
|
|
|
selectClaimsByUri,
|
|
|
|
} from 'redux/selectors/claims';
|
2020-09-30 14:46:17 -04:00
|
|
|
import {
|
2021-10-11 14:02:17 +08:00
|
|
|
selectTopLevelCommentsForUri,
|
2021-07-15 22:43:28 +08:00
|
|
|
makeSelectTopLevelTotalPagesForUri,
|
2020-09-30 14:46:17 -04:00
|
|
|
selectIsFetchingComments,
|
2021-10-01 15:49:37 +08:00
|
|
|
selectIsFetchingCommentsById,
|
2021-07-16 00:13:01 +08:00
|
|
|
selectIsFetchingReacts,
|
2022-03-11 12:11:01 +08:00
|
|
|
selectTotalCommentsCountForUri,
|
2021-10-07 02:40:40 +08:00
|
|
|
selectOthersReacts,
|
|
|
|
selectMyReacts,
|
2021-11-09 23:32:16 +08:00
|
|
|
selectCommentIdsForUri,
|
2021-07-29 22:53:36 +08:00
|
|
|
selectSettingsByChannelId,
|
2021-10-11 14:02:17 +08:00
|
|
|
selectPinnedCommentsForUri,
|
2020-09-30 14:46:17 -04:00
|
|
|
} from 'redux/selectors/comments';
|
2021-07-15 22:43:28 +08:00
|
|
|
import { doCommentReset, doCommentList, doCommentById, doCommentReactList } from 'redux/actions/comments';
|
2021-07-20 14:38:29 +08:00
|
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
2022-02-09 12:27:11 -03:00
|
|
|
import { getChannelIdFromClaim } from 'util/claim';
|
2022-03-09 19:05:37 +01:00
|
|
|
import { doFetchUserMemberships } from 'redux/actions/user';
|
2020-10-20 13:10:02 -04:00
|
|
|
import CommentsList from './view';
|
2019-05-17 14:21:07 -04:00
|
|
|
|
2021-07-15 22:43:28 +08:00
|
|
|
const select = (state, props) => {
|
2022-02-09 12:27:11 -03:00
|
|
|
const { uri } = props;
|
|
|
|
|
|
|
|
const claim = selectClaimForUri(state, uri);
|
2021-07-20 14:38:29 +08:00
|
|
|
const activeChannelClaim = selectActiveChannelClaim(state);
|
2021-10-13 17:28:19 -03:00
|
|
|
|
2021-07-15 22:43:28 +08:00
|
|
|
return {
|
2022-03-02 09:10:52 -03:00
|
|
|
topLevelComments: selectTopLevelCommentsForUri(state, uri),
|
2022-02-09 12:27:11 -03:00
|
|
|
allCommentIds: selectCommentIdsForUri(state, uri),
|
|
|
|
pinnedComments: selectPinnedCommentsForUri(state, uri),
|
|
|
|
topLevelTotalPages: makeSelectTopLevelTotalPagesForUri(uri)(state),
|
2022-03-11 12:11:01 +08:00
|
|
|
totalComments: selectTotalCommentsCountForUri(state, uri),
|
2022-02-09 12:27:11 -03:00
|
|
|
claimId: claim && claim.claim_id,
|
2022-03-02 09:10:52 -03:00
|
|
|
channelId: getChannelIdFromClaim(claim),
|
2021-11-11 12:48:10 +08:00
|
|
|
claimIsMine: selectClaimIsMine(state, claim),
|
2021-07-15 22:43:28 +08:00
|
|
|
isFetchingComments: selectIsFetchingComments(state),
|
2021-10-01 15:49:37 +08:00
|
|
|
isFetchingCommentsById: selectIsFetchingCommentsById(state),
|
2021-07-16 00:13:01 +08:00
|
|
|
isFetchingReacts: selectIsFetchingReacts(state),
|
2021-07-15 22:43:28 +08:00
|
|
|
fetchingChannels: selectFetchingMyChannels(state),
|
2021-07-29 22:53:36 +08:00
|
|
|
settingsByChannelId: selectSettingsByChannelId(state),
|
2021-10-07 02:40:40 +08:00
|
|
|
myReactsByCommentId: selectMyReacts(state),
|
|
|
|
othersReactsById: selectOthersReacts(state),
|
2021-07-20 14:38:29 +08:00
|
|
|
activeChannelId: activeChannelClaim && activeChannelClaim.claim_id,
|
2022-03-09 19:05:37 +01:00
|
|
|
claimsByUri: selectClaimsByUri(state),
|
2021-07-15 22:43:28 +08:00
|
|
|
};
|
|
|
|
};
|
2019-05-17 14:21:07 -04:00
|
|
|
|
2022-02-09 12:27:11 -03:00
|
|
|
const perform = {
|
|
|
|
fetchTopLevelComments: doCommentList,
|
|
|
|
fetchComment: doCommentById,
|
|
|
|
fetchReacts: doCommentReactList,
|
|
|
|
resetComments: doCommentReset,
|
2022-03-09 19:05:37 +01:00
|
|
|
doFetchUserMemberships,
|
2022-02-09 12:27:11 -03:00
|
|
|
};
|
2019-06-26 19:59:27 -04:00
|
|
|
|
2020-01-29 20:02:21 -05:00
|
|
|
export default connect(select, perform)(CommentsList);
|