18 lines
698 B
JavaScript
18 lines
698 B
JavaScript
import { connect } from 'react-redux';
|
|
import { makeSelectClaimIsMine, selectMyChannelClaims } from 'lbry-redux';
|
|
import { makeSelectCommentsForUri, selectIsFetchingComments } from 'redux/selectors/comments';
|
|
import { doCommentList } from 'redux/actions/comments';
|
|
import CommentsList from './view';
|
|
|
|
const select = (state, props) => ({
|
|
myChannels: selectMyChannelClaims(state),
|
|
comments: makeSelectCommentsForUri(props.uri)(state),
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
|
isFetchingComments: selectIsFetchingComments(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
fetchComments: uri => dispatch(doCommentList(uri)),
|
|
});
|
|
|
|
export default connect(select, perform)(CommentsList);
|