2020-08-24 19:35:21 +02:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { makeSelectClaimIsMine, selectMyChannelClaims } from 'lbry-redux';
|
|
|
|
import { makeSelectRepliesForParentId } from 'redux/selectors/comments';
|
|
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
2020-08-25 21:54:06 +02:00
|
|
|
import CommentsReplies from './view';
|
2020-08-24 19:35:21 +02:00
|
|
|
|
|
|
|
const select = (state, props) => ({
|
2020-10-07 21:14:52 +02:00
|
|
|
comments: makeSelectRepliesForParentId(props.parentId)(state),
|
2020-08-24 19:35:21 +02:00
|
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
|
|
|
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
2020-09-11 19:51:31 +02:00
|
|
|
myChannels: selectMyChannelClaims(state),
|
2020-08-24 19:35:21 +02:00
|
|
|
});
|
|
|
|
|
2020-09-11 19:51:31 +02:00
|
|
|
export default connect(select)(CommentsReplies);
|