2020-08-24 13:35:21 -04: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 15:54:06 -04:00
|
|
|
import CommentsReplies from './view';
|
2020-08-24 13:35:21 -04:00
|
|
|
|
|
|
|
const select = (state, props) => ({
|
2020-10-07 15:14:52 -04:00
|
|
|
comments: makeSelectRepliesForParentId(props.parentId)(state),
|
2020-08-24 13:35:21 -04:00
|
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
|
|
|
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
2020-09-11 13:51:31 -04:00
|
|
|
myChannels: selectMyChannelClaims(state),
|
2020-08-24 13:35:21 -04:00
|
|
|
});
|
|
|
|
|
2020-09-11 13:51:31 -04:00
|
|
|
export default connect(select)(CommentsReplies);
|