2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2020-10-20 19:10:02 +02:00
|
|
|
import { doSetContentHistoryItem, doSetPrimaryUri } from 'redux/actions/content';
|
2020-08-24 19:35:21 +02:00
|
|
|
import { withRouter } from 'react-router';
|
2020-11-02 17:51:08 +01:00
|
|
|
import { doFetchFileInfo, makeSelectFileInfoForUri, makeSelectMetadataForUri, makeSelectClaimIsNsfw } from 'lbry-redux';
|
2020-04-01 20:43:50 +02:00
|
|
|
import { makeSelectCostInfoForUri, doFetchCostInfoForUri } from 'lbryinc';
|
2020-01-06 19:32:35 +01:00
|
|
|
import { selectShowMatureContent } from 'redux/selectors/settings';
|
2020-04-01 20:43:50 +02:00
|
|
|
import { makeSelectFileRenderModeForUri } from 'redux/selectors/content';
|
2020-08-24 19:35:21 +02:00
|
|
|
import { makeSelectCommentForCommentId } from 'redux/selectors/comments';
|
2020-11-02 17:51:08 +01:00
|
|
|
import FilePage from './view';
|
2017-04-24 09:25:27 +02:00
|
|
|
|
2020-08-24 19:35:21 +02: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),
|
|
|
|
renderMode: makeSelectFileRenderModeForUri(props.uri)(state),
|
|
|
|
};
|
|
|
|
};
|
2017-04-24 09:25:27 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const perform = dispatch => ({
|
2017-06-06 23:19:12 +02:00
|
|
|
fetchFileInfo: uri => dispatch(doFetchFileInfo(uri)),
|
|
|
|
fetchCostInfo: uri => dispatch(doFetchCostInfoForUri(uri)),
|
2018-07-31 20:07:45 +02:00
|
|
|
setViewed: uri => dispatch(doSetContentHistoryItem(uri)),
|
2020-10-20 19:10:02 +02:00
|
|
|
setPrimaryUri: uri => dispatch(doSetPrimaryUri(uri)),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-04-24 09:25:27 +02:00
|
|
|
|
2020-08-24 19:35:21 +02:00
|
|
|
export default withRouter(connect(select, perform)(FilePage));
|