27 lines
1.3 KiB
JavaScript
27 lines
1.3 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { makeSelectThumbnailForUri, selectMyChannelClaims } from 'lbry-redux';
|
|
import { doCommentUpdate } from 'redux/actions/comments';
|
|
import { selectChannelIsBlocked } from 'redux/selectors/blocked';
|
|
import { doToast } from 'redux/actions/notifications';
|
|
import { doSetPlayingUri } from 'redux/actions/content';
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
|
import { makeSelectOthersReactionsForComment } from 'redux/selectors/comments';
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
|
import Comment from './view';
|
|
|
|
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),
|
|
myChannels: selectMyChannelClaims(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
closeInlinePlayer: () => dispatch(doSetPlayingUri({ uri: null })),
|
|
updateComment: (commentId, comment) => dispatch(doCommentUpdate(commentId, comment)),
|
|
doToast: (options) => dispatch(doToast(options)),
|
|
});
|
|
|
|
export default connect(select, perform)(Comment);
|