lbry-desktop/ui/component/commentsList/index.js

32 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-05-17 20:21:07 +02:00
import { connect } from 'react-redux';
import { makeSelectClaimIsMine, selectFetchingMyChannels, selectMyChannelClaims } from 'lbry-redux';
2020-09-30 20:46:17 +02:00
import {
makeSelectTopLevelCommentsForUri,
selectIsFetchingComments,
makeSelectTotalCommentsCountForUri,
selectOthersReactsById,
2020-10-20 05:20:38 +02:00
selectCommentChannel,
2020-09-30 20:46:17 +02:00
} from 'redux/selectors/comments';
2020-09-29 16:10:23 +02:00
import { doCommentList, doCommentReactList } from 'redux/actions/comments';
2019-05-17 20:21:07 +02:00
import CommentsList from './view';
2020-08-24 19:35:21 +02:00
import { selectUserVerifiedEmail } from 'redux/selectors/user';
2019-05-17 20:21:07 +02:00
const select = (state, props) => ({
myChannels: selectMyChannelClaims(state),
2020-08-24 19:35:21 +02:00
comments: makeSelectTopLevelCommentsForUri(props.uri)(state),
2020-09-30 20:46:17 +02:00
totalComments: makeSelectTotalCommentsCountForUri(props.uri)(state),
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
isFetchingComments: selectIsFetchingComments(state),
2020-08-24 19:35:21 +02:00
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
fetchingChannels: selectFetchingMyChannels(state),
reactionsById: selectOthersReactsById(state),
2020-10-20 05:20:38 +02:00
activeChannel: selectCommentChannel(state),
2019-05-17 20:21:07 +02:00
});
const perform = dispatch => ({
2019-06-27 01:59:27 +02:00
fetchComments: uri => dispatch(doCommentList(uri)),
2020-09-29 16:10:23 +02:00
fetchReacts: uri => dispatch(doCommentReactList(uri)),
2019-05-17 20:21:07 +02:00
});
2019-06-27 01:59:27 +02:00
export default connect(select, perform)(CommentsList);