2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2018-10-19 22:38:07 +02:00
|
|
|
import { doRemoveUnreadSubscription } from 'redux/actions/subscriptions';
|
2018-07-31 20:07:45 +02:00
|
|
|
import { doSetContentHistoryItem } from 'redux/actions/content';
|
2017-04-28 17:14:44 +02:00
|
|
|
import {
|
2018-04-18 06:03:01 +02:00
|
|
|
doFetchFileInfo,
|
|
|
|
makeSelectFileInfoForUri,
|
2017-05-15 05:50:59 +02:00
|
|
|
makeSelectMetadataForUri,
|
2018-10-19 22:38:07 +02:00
|
|
|
makeSelectChannelForClaimUri,
|
2020-07-21 09:26:56 +02:00
|
|
|
makeSelectClaimIsNsfw,
|
2018-04-18 06:03:01 +02:00
|
|
|
} 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';
|
2018-10-19 22:38:07 +02:00
|
|
|
import { makeSelectIsSubscribed } from 'redux/selectors/subscriptions';
|
2020-04-01 20:43:50 +02:00
|
|
|
import { makeSelectFileRenderModeForUri } from 'redux/selectors/content';
|
2018-04-06 08:00:36 +02:00
|
|
|
import FilePage from './view';
|
2017-04-24 09:25:27 +02:00
|
|
|
|
2017-09-08 05:15:05 +02:00
|
|
|
const select = (state, props) => ({
|
|
|
|
costInfo: makeSelectCostInfoForUri(props.uri)(state),
|
|
|
|
metadata: makeSelectMetadataForUri(props.uri)(state),
|
2019-08-02 08:28:14 +02:00
|
|
|
obscureNsfw: !selectShowMatureContent(state),
|
2020-07-21 09:26:56 +02:00
|
|
|
isMature: makeSelectClaimIsNsfw(props.uri)(state),
|
2017-09-08 05:15:05 +02:00
|
|
|
fileInfo: makeSelectFileInfoForUri(props.uri)(state),
|
2018-10-19 22:38:07 +02:00
|
|
|
isSubscribed: makeSelectIsSubscribed(props.uri)(state),
|
|
|
|
channelUri: makeSelectChannelForClaimUri(props.uri, true)(state),
|
2020-04-01 20:43:50 +02:00
|
|
|
renderMode: makeSelectFileRenderModeForUri(props.uri)(state),
|
2017-09-08 05:15:05 +02:00
|
|
|
});
|
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)),
|
2018-10-19 22:38:07 +02:00
|
|
|
markSubscriptionRead: (channel, uri) => dispatch(doRemoveUnreadSubscription(channel, uri)),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-04-24 09:25:27 +02:00
|
|
|
|
2020-04-01 20:43:50 +02:00
|
|
|
export default connect(select, perform)(FilePage);
|