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