ce1621f7ed
Only picking components that are involved in a livestream for now. Ideally, all usages of `makeSelectClaimForUri` should be replaced -- will do it incrementally.
31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { selectClaimForUri, selectMyChannelClaims } from 'redux/selectors/claims';
|
|
import { doCommentSocketConnect, doCommentSocketDisconnect } from 'redux/actions/websocket';
|
|
import { doCommentList, doSuperChatList } from 'redux/actions/comments';
|
|
import {
|
|
selectTopLevelCommentsForUri,
|
|
selectIsFetchingComments,
|
|
makeSelectSuperChatsForUri,
|
|
makeSelectSuperChatTotalAmountForUri,
|
|
selectPinnedCommentsForUri,
|
|
} from 'redux/selectors/comments';
|
|
import LivestreamComments from './view';
|
|
|
|
const MAX_LIVESTREAM_COMMENTS = 75;
|
|
|
|
const select = (state, props) => ({
|
|
claim: selectClaimForUri(state, props.uri),
|
|
comments: selectTopLevelCommentsForUri(state, props.uri, MAX_LIVESTREAM_COMMENTS),
|
|
pinnedComments: selectPinnedCommentsForUri(state, props.uri),
|
|
fetchingComments: selectIsFetchingComments(state),
|
|
superChats: makeSelectSuperChatsForUri(props.uri)(state),
|
|
superChatsTotalAmount: makeSelectSuperChatTotalAmountForUri(props.uri)(state),
|
|
myChannels: selectMyChannelClaims(state),
|
|
});
|
|
|
|
export default connect(select, {
|
|
doCommentSocketConnect,
|
|
doCommentSocketDisconnect,
|
|
doCommentList,
|
|
doSuperChatList,
|
|
})(LivestreamComments);
|