2017-12-21 18:08:54 -03:00
|
|
|
import { connect } from 'react-redux';
|
2019-03-12 15:53:55 -04:00
|
|
|
import { makeSelectClaimForUri } from 'lbry-redux';
|
2019-05-07 17:38:29 -04:00
|
|
|
import { makeSelectCostInfoForUri, doFetchCostInfoForUri, makeSelectFetchingCostInfoForUri } from 'lbryinc';
|
2017-12-21 18:08:54 -03:00
|
|
|
import FilePrice from './view';
|
2017-04-30 00:02:25 +07:00
|
|
|
|
2017-09-07 23:15:05 -04:00
|
|
|
const select = (state, props) => ({
|
|
|
|
costInfo: makeSelectCostInfoForUri(props.uri)(state),
|
|
|
|
fetching: makeSelectFetchingCostInfoForUri(props.uri)(state),
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
|
|
});
|
2017-04-30 00:02:25 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const perform = dispatch => ({
|
2017-06-06 17:19:12 -04:00
|
|
|
fetchCostInfo: uri => dispatch(doFetchCostInfoForUri(uri)),
|
2017-05-17 17:52:45 -04:00
|
|
|
// cancelFetchCostInfo: (uri) => dispatch(doCancelFetchCostInfoForUri(uri))
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-04-30 00:02:25 +07:00
|
|
|
|
2018-10-31 17:41:56 +01:00
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(FilePrice);
|