2020-08-24 19:35:21 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-10-17 10:54:57 +02:00
|
|
|
import { doResolveUris } from 'redux/actions/claims';
|
2021-11-10 03:30:03 +01:00
|
|
|
import { selectClaimIsMineForUri, selectMyChannelClaimIds, makeSelectClaimForUri } from 'redux/selectors/claims';
|
2021-10-11 08:02:17 +02:00
|
|
|
import { selectIsFetchingCommentsByParentId, selectRepliesForParentId } from 'redux/selectors/comments';
|
2020-08-24 19:35:21 +02:00
|
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
2020-08-25 21:54:06 +02:00
|
|
|
import CommentsReplies from './view';
|
2020-08-24 19:35:21 +02:00
|
|
|
|
2021-10-13 22:28:19 +02:00
|
|
|
const select = (state, props) => {
|
2021-10-11 08:02:17 +02:00
|
|
|
const fetchedReplies = selectRepliesForParentId(state, props.parentId);
|
2021-10-14 13:24:21 +02:00
|
|
|
const resolvedReplies =
|
|
|
|
fetchedReplies && fetchedReplies.length > 0
|
|
|
|
? fetchedReplies.filter(({ channel_url }) => makeSelectClaimForUri(channel_url)(state) !== undefined)
|
|
|
|
: [];
|
2021-10-13 22:28:19 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
fetchedReplies,
|
|
|
|
resolvedReplies,
|
2021-11-10 03:30:03 +01:00
|
|
|
claimIsMine: selectClaimIsMineForUri(state, props.uri),
|
2021-10-13 22:28:19 +02:00
|
|
|
userCanComment: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
2021-11-08 07:27:14 +01:00
|
|
|
myChannelIds: selectMyChannelClaimIds(state),
|
2021-10-13 22:28:19 +02:00
|
|
|
isFetchingByParentId: selectIsFetchingCommentsByParentId(state),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const perform = (dispatch) => ({ doResolveUris: (uris) => dispatch(doResolveUris(uris, true)) });
|
|
|
|
|
|
|
|
export default connect(select, perform)(CommentsReplies);
|