2021-03-10 13:34:21 -05:00
|
|
|
import { connect } from 'react-redux';
|
2021-11-17 15:45:58 +08:00
|
|
|
import { MAX_LIVESTREAM_COMMENTS } from 'constants/livestream';
|
2021-11-04 16:01:29 +08:00
|
|
|
import { doResolveUris } from 'redux/actions/claims';
|
2021-12-30 11:40:51 +08:00
|
|
|
import { selectClaimForUri } from 'redux/selectors/claims';
|
2021-04-23 15:59:48 -04:00
|
|
|
import { doCommentList, doSuperChatList } from 'redux/actions/comments';
|
|
|
|
import {
|
2021-10-11 14:02:17 +08:00
|
|
|
selectTopLevelCommentsForUri,
|
2021-04-23 15:59:48 -04:00
|
|
|
selectIsFetchingComments,
|
2021-11-04 12:46:01 +08:00
|
|
|
selectSuperChatsForUri,
|
|
|
|
selectSuperChatTotalAmountForUri,
|
2021-10-11 14:02:17 +08:00
|
|
|
selectPinnedCommentsForUri,
|
2021-04-23 15:59:48 -04:00
|
|
|
} from 'redux/selectors/comments';
|
2021-03-10 13:34:21 -05:00
|
|
|
|
2021-11-17 15:45:58 +08:00
|
|
|
import LivestreamComments from './view';
|
2021-10-11 14:02:17 +08:00
|
|
|
|
2021-03-10 13:34:21 -05:00
|
|
|
const select = (state, props) => ({
|
2021-10-11 15:57:27 +08:00
|
|
|
claim: selectClaimForUri(state, props.uri),
|
2021-10-11 14:02:17 +08:00
|
|
|
comments: selectTopLevelCommentsForUri(state, props.uri, MAX_LIVESTREAM_COMMENTS),
|
|
|
|
pinnedComments: selectPinnedCommentsForUri(state, props.uri),
|
2021-03-10 13:34:21 -05:00
|
|
|
fetchingComments: selectIsFetchingComments(state),
|
2021-11-04 12:46:01 +08:00
|
|
|
superChats: selectSuperChatsForUri(state, props.uri),
|
|
|
|
superChatsTotalAmount: selectSuperChatTotalAmountForUri(state, props.uri),
|
2021-03-10 13:34:21 -05:00
|
|
|
});
|
|
|
|
|
2021-04-23 15:59:48 -04:00
|
|
|
export default connect(select, {
|
|
|
|
doCommentList,
|
|
|
|
doSuperChatList,
|
2021-11-04 16:01:29 +08:00
|
|
|
doResolveUris,
|
2021-07-06 09:29:46 +08:00
|
|
|
})(LivestreamComments);
|