2017-12-21 18:08:54 -03:00
|
|
|
import { connect } from 'react-redux';
|
2018-10-19 16:38:07 -04:00
|
|
|
import { doRemoveUnreadSubscription } from 'redux/actions/subscriptions';
|
2018-07-31 14:07:45 -04:00
|
|
|
import { doSetContentHistoryItem } from 'redux/actions/content';
|
2020-08-24 13:35:21 -04:00
|
|
|
import { withRouter } from 'react-router';
|
2017-04-28 22:14:44 +07:00
|
|
|
import {
|
2018-04-18 00:03:01 -04:00
|
|
|
doFetchFileInfo,
|
|
|
|
makeSelectFileInfoForUri,
|
2017-05-14 23:50:59 -04:00
|
|
|
makeSelectMetadataForUri,
|
2018-10-19 16:38:07 -04:00
|
|
|
makeSelectChannelForClaimUri,
|
2020-07-21 15:26:56 +08:00
|
|
|
makeSelectClaimIsNsfw,
|
2018-04-18 00:03:01 -04:00
|
|
|
} from 'lbry-redux';
|
2020-04-01 14:43:50 -04:00
|
|
|
import { makeSelectCostInfoForUri, doFetchCostInfoForUri } from 'lbryinc';
|
2020-01-06 13:32:35 -05:00
|
|
|
import { selectShowMatureContent } from 'redux/selectors/settings';
|
2018-10-19 16:38:07 -04:00
|
|
|
import { makeSelectIsSubscribed } from 'redux/selectors/subscriptions';
|
2020-04-01 14:43:50 -04:00
|
|
|
import { makeSelectFileRenderModeForUri } from 'redux/selectors/content';
|
2018-04-06 02:00:36 -04:00
|
|
|
import FilePage from './view';
|
2020-08-24 13:35:21 -04:00
|
|
|
import { makeSelectCommentForCommentId } from 'redux/selectors/comments';
|
2017-04-24 14:25:27 +07:00
|
|
|
|
2020-08-24 13:35:21 -04:00
|
|
|
const select = (state, props) => {
|
|
|
|
const { search } = props.location;
|
|
|
|
const urlParams = new URLSearchParams(search);
|
|
|
|
const linkedCommentId = urlParams.get('lc');
|
|
|
|
|
|
|
|
return {
|
|
|
|
linkedComment: makeSelectCommentForCommentId(linkedCommentId)(state),
|
|
|
|
costInfo: makeSelectCostInfoForUri(props.uri)(state),
|
|
|
|
metadata: makeSelectMetadataForUri(props.uri)(state),
|
|
|
|
obscureNsfw: !selectShowMatureContent(state),
|
|
|
|
isMature: makeSelectClaimIsNsfw(props.uri)(state),
|
|
|
|
fileInfo: makeSelectFileInfoForUri(props.uri)(state),
|
|
|
|
isSubscribed: makeSelectIsSubscribed(props.uri)(state),
|
|
|
|
channelUri: makeSelectChannelForClaimUri(props.uri, true)(state),
|
|
|
|
renderMode: makeSelectFileRenderModeForUri(props.uri)(state),
|
|
|
|
};
|
|
|
|
};
|
2017-04-24 14:25:27 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const perform = dispatch => ({
|
2017-06-06 17:19:12 -04:00
|
|
|
fetchFileInfo: uri => dispatch(doFetchFileInfo(uri)),
|
|
|
|
fetchCostInfo: uri => dispatch(doFetchCostInfoForUri(uri)),
|
2018-07-31 14:07:45 -04:00
|
|
|
setViewed: uri => dispatch(doSetContentHistoryItem(uri)),
|
2018-10-19 16:38:07 -04:00
|
|
|
markSubscriptionRead: (channel, uri) => dispatch(doRemoveUnreadSubscription(channel, uri)),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-04-24 14:25:27 +07:00
|
|
|
|
2020-08-24 13:35:21 -04:00
|
|
|
export default withRouter(connect(select, perform)(FilePage));
|