2019-06-27 01:59:27 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-02-11 06:12:41 +01:00
|
|
|
import { makeSelectThumbnailForUri } from 'lbry-redux';
|
|
|
|
import { doCommentUpdate } from 'redux/actions/comments';
|
2020-07-15 15:50:08 +02:00
|
|
|
import { selectChannelIsBlocked } from 'redux/selectors/blocked';
|
2020-09-11 19:51:31 +02:00
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2021-01-26 20:50:44 +01:00
|
|
|
import { doSetPlayingUri } from 'redux/actions/content';
|
2020-08-24 19:35:21 +02:00
|
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
2021-02-11 06:12:41 +01:00
|
|
|
import { makeSelectOthersReactionsForComment } from 'redux/selectors/comments';
|
2021-02-09 17:05:56 +01:00
|
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
2020-09-11 19:51:31 +02:00
|
|
|
import Comment from './view';
|
2019-06-27 01:59:27 +02:00
|
|
|
|
2021-02-09 17:05:56 +01:00
|
|
|
const select = (state, props) => ({
|
|
|
|
thumbnail: props.authorUri && makeSelectThumbnailForUri(props.authorUri)(state),
|
|
|
|
channelIsBlocked: props.authorUri && selectChannelIsBlocked(props.authorUri)(state),
|
|
|
|
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
|
|
|
othersReacts: makeSelectOthersReactionsForComment(props.commentId)(state),
|
|
|
|
activeChannelClaim: selectActiveChannelClaim(state),
|
|
|
|
});
|
2019-10-23 09:04:40 +02:00
|
|
|
|
|
|
|
const perform = dispatch => ({
|
2021-01-26 20:50:44 +01:00
|
|
|
closeInlinePlayer: () => dispatch(doSetPlayingUri({ uri: null })),
|
2020-01-30 02:02:21 +01:00
|
|
|
updateComment: (commentId, comment) => dispatch(doCommentUpdate(commentId, comment)),
|
2020-09-11 19:51:31 +02:00
|
|
|
doToast: options => dispatch(doToast(options)),
|
2019-10-23 09:04:40 +02:00
|
|
|
});
|
|
|
|
|
2020-01-30 02:02:21 +01:00
|
|
|
export default connect(select, perform)(Comment);
|