636ab7427d
owners can pin and unpin comments tweak pin icon styles move commenting activeChannel from localStorage to redux
53 lines
2.3 KiB
JavaScript
53 lines
2.3 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
doResolveUri,
|
|
makeSelectClaimIsPending,
|
|
makeSelectClaimForUri,
|
|
makeSelectThumbnailForUri,
|
|
makeSelectIsUriResolving,
|
|
selectMyChannelClaims,
|
|
makeSelectMyChannelPermUrlForName,
|
|
makeSelectChannelPermUrlForClaimUri,
|
|
} from 'lbry-redux';
|
|
import { doCommentAbandon, doCommentUpdate, doCommentPin, doCommentList } from 'redux/actions/comments';
|
|
import { doToggleBlockChannel } from 'redux/actions/blocked';
|
|
import { selectChannelIsBlocked } from 'redux/selectors/blocked';
|
|
import { doToast } from 'redux/actions/notifications';
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
|
import {
|
|
selectIsFetchingComments,
|
|
makeSelectOthersReactionsForComment,
|
|
selectCommentChannel,
|
|
} from 'redux/selectors/comments';
|
|
import Comment from './view';
|
|
|
|
const select = (state, props) => {
|
|
const channel = selectCommentChannel(state);
|
|
|
|
return {
|
|
activeChannel: channel,
|
|
pending: props.authorUri && makeSelectClaimIsPending(props.authorUri)(state),
|
|
channel: props.authorUri && makeSelectClaimForUri(props.authorUri)(state),
|
|
isResolvingUri: props.authorUri && makeSelectIsUriResolving(props.authorUri)(state),
|
|
thumbnail: props.authorUri && makeSelectThumbnailForUri(props.authorUri)(state),
|
|
channelIsBlocked: props.authorUri && selectChannelIsBlocked(props.authorUri)(state),
|
|
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
|
isFetchingComments: selectIsFetchingComments(state),
|
|
myChannels: selectMyChannelClaims(state),
|
|
othersReacts: makeSelectOthersReactionsForComment(props.commentId)(state),
|
|
commentIdentityChannel: makeSelectMyChannelPermUrlForName(channel)(state),
|
|
contentChannel: makeSelectChannelPermUrlForClaimUri(props.uri)(state),
|
|
};
|
|
};
|
|
|
|
const perform = dispatch => ({
|
|
resolveUri: uri => dispatch(doResolveUri(uri)),
|
|
updateComment: (commentId, comment) => dispatch(doCommentUpdate(commentId, comment)),
|
|
deleteComment: commentId => dispatch(doCommentAbandon(commentId)),
|
|
blockChannel: channelUri => dispatch(doToggleBlockChannel(channelUri)),
|
|
doToast: options => dispatch(doToast(options)),
|
|
pinComment: (commentId, remove) => dispatch(doCommentPin(commentId, remove)),
|
|
fetchComments: uri => dispatch(doCommentList(uri)),
|
|
});
|
|
|
|
export default connect(select, perform)(Comment);
|