2017-12-21 18:08:54 -03:00
|
|
|
import { connect } from 'react-redux';
|
2020-05-21 11:38:28 -04:00
|
|
|
import { makeSelectClaimForUri, makeSelectClaimWasPurchased, makeSelectClaimIsMine } 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),
|
2020-05-21 11:38:28 -04:00
|
|
|
claimWasPurchased: makeSelectClaimWasPurchased(props.uri)(state),
|
|
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
2017-09-07 23:15:05 -04:00
|
|
|
});
|
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-06-05 21:21:55 -07:00
|
|
|
});
|
2017-04-30 00:02:25 +07:00
|
|
|
|
2020-05-21 11:38:28 -04:00
|
|
|
export default connect(select, perform)(FilePrice);
|