2021-03-10 19:34:21 +01:00
|
|
|
import { connect } from 'react-redux';
|
2021-05-04 17:08:36 +02:00
|
|
|
import { makeSelectClaimForUri, selectMyChannelClaims } from 'lbry-redux';
|
2021-03-16 21:59:31 +01:00
|
|
|
import { doCommentSocketConnect, doCommentSocketDisconnect } from 'redux/actions/websocket';
|
2021-04-23 21:59:48 +02:00
|
|
|
import { doCommentList, doSuperChatList } from 'redux/actions/comments';
|
|
|
|
import {
|
2021-08-09 08:26:03 +02:00
|
|
|
selectPinnedCommentsById,
|
2021-04-23 21:59:48 +02:00
|
|
|
makeSelectTopLevelCommentsForUri,
|
|
|
|
selectIsFetchingComments,
|
|
|
|
makeSelectSuperChatsForUri,
|
|
|
|
makeSelectSuperChatTotalAmountForUri,
|
|
|
|
} from 'redux/selectors/comments';
|
2021-07-06 03:29:46 +02:00
|
|
|
import LivestreamComments from './view';
|
2021-03-10 19:34:21 +01:00
|
|
|
|
|
|
|
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-04-23 21:59:48 +02:00
|
|
|
superChats: makeSelectSuperChatsForUri(props.uri)(state),
|
|
|
|
superChatsTotalAmount: makeSelectSuperChatTotalAmountForUri(props.uri)(state),
|
2021-05-04 17:08:36 +02:00
|
|
|
myChannels: selectMyChannelClaims(state),
|
2021-08-09 08:26:03 +02:00
|
|
|
pinnedCommentsById: selectPinnedCommentsById(state),
|
2021-03-10 19:34:21 +01:00
|
|
|
});
|
|
|
|
|
2021-04-23 21:59:48 +02:00
|
|
|
export default connect(select, {
|
|
|
|
doCommentSocketConnect,
|
|
|
|
doCommentSocketDisconnect,
|
|
|
|
doCommentList,
|
|
|
|
doSuperChatList,
|
2021-07-06 03:29:46 +02:00
|
|
|
})(LivestreamComments);
|