lbry-desktop/ui/component/commentCreate/index.js

21 lines
686 B
JavaScript
Raw Normal View History

2019-05-17 20:21:07 +02:00
import { connect } from 'react-redux';
2019-06-12 16:53:27 +02:00
import { doCommentCreate, makeSelectClaimForUri } from 'lbry-redux';
2019-11-14 21:02:15 +01:00
import { doOpenModal } from 'redux/actions/app';
2019-06-12 16:53:27 +02:00
import { CommentCreate } from './view';
2019-11-14 21:02:15 +01:00
import { selectUserVerifiedEmail } from 'lbryinc';
2019-05-17 20:21:07 +02:00
const select = (state, props) => ({
2019-11-14 21:02:15 +01:00
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
2019-05-17 20:21:07 +02:00
claim: makeSelectClaimForUri(props.uri)(state),
});
const perform = dispatch => ({
2019-06-12 16:53:27 +02:00
createComment: (comment, claimId, channel) => dispatch(doCommentCreate(comment, claimId, channel)),
2019-11-14 21:02:15 +01:00
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
2019-05-17 20:21:07 +02:00
});
export default connect(
select,
perform
)(CommentCreate);