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

19 lines
698 B
JavaScript
Raw Normal View History

2019-05-17 20:21:07 +02:00
import { connect } from 'react-redux';
2020-06-23 19:38:18 +02:00
import { makeSelectClaimIsMine, selectMyChannelClaims } from 'lbry-redux';
import { makeSelectCommentsForUri, selectIsFetchingComments } from 'redux/selectors/comments';
import { doCommentList } from 'redux/actions/comments';
2019-05-17 20:21:07 +02:00
import CommentsList from './view';
const select = (state, props) => ({
myChannels: selectMyChannelClaims(state),
2019-05-17 20:21:07 +02:00
comments: makeSelectCommentsForUri(props.uri)(state),
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
isFetchingComments: selectIsFetchingComments(state),
2019-05-17 20:21:07 +02:00
});
const perform = dispatch => ({
2019-06-27 01:59:27 +02:00
fetchComments: uri => dispatch(doCommentList(uri)),
2019-05-17 20:21:07 +02:00
});
2019-06-27 01:59:27 +02:00
export default connect(select, perform)(CommentsList);