2021-03-10 19:34:21 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { makeSelectClaimForUri } from 'lbry-redux';
|
2021-03-16 21:59:31 +01:00
|
|
|
import { doCommentSocketConnect, doCommentSocketDisconnect } from 'redux/actions/websocket';
|
2021-03-10 19:34:21 +01:00
|
|
|
import { doCommentList } from 'redux/actions/comments';
|
|
|
|
import { makeSelectTopLevelCommentsForUri, selectIsFetchingComments } from 'redux/selectors/comments';
|
|
|
|
import LivestreamFeed from './view';
|
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
2021-04-06 03:45:42 +02:00
|
|
|
comments: makeSelectTopLevelCommentsForUri(props.uri)(state).slice(0, 75),
|
2021-03-10 19:34:21 +01:00
|
|
|
fetchingComments: selectIsFetchingComments(state),
|
|
|
|
});
|
|
|
|
|
2021-03-16 21:59:31 +01:00
|
|
|
export default connect(select, { doCommentSocketConnect, doCommentSocketDisconnect, doCommentList })(LivestreamFeed);
|