import React from 'react' import { connect } from 'react-redux' import { doNavigate, } from 'actions/app' import { selectHidePrice, selectObscureNsfw, } from 'selectors/app' import { makeSelectClaimForUri, makeSelectSourceForUri, makeSelectMetadataForUri, } from 'selectors/claims' import { makeSelectFileInfoForUri, } from 'selectors/file_info' import { makeSelectResolvingUri, } from 'selectors/content' import FileCardStream from './view' const makeSelect = () => { const selectClaimForUri = makeSelectClaimForUri() const selectFileInfoForUri = makeSelectFileInfoForUri() const selectMetadataForUri = makeSelectMetadataForUri() const selectSourceForUri = makeSelectSourceForUri() const selectResolvingUri = makeSelectResolvingUri() const select = (state, props) => ({ claim: selectClaimForUri(state, props), fileInfo: selectFileInfoForUri(state, props), hidePrice: selectHidePrice(state), obscureNsfw: selectObscureNsfw(state), hasSignature: false, metadata: selectMetadataForUri(state, props), source: selectSourceForUri(state, props), isResolvingUri: selectResolvingUri(state, props), }) return select } const perform = (dispatch) => ({ navigate: (path) => dispatch(doNavigate(path)), }) export default connect(makeSelect, perform)(FileCardStream)