2017-12-21 18:08:54 -03:00
|
|
|
import React from 'react';
|
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
import { doFetchCostInfoForUri } from 'redux/actions/cost_info';
|
2017-04-30 00:02:25 +07:00
|
|
|
import {
|
|
|
|
|
makeSelectCostInfoForUri,
|
2017-05-28 19:16:07 +04:00
|
|
|
makeSelectFetchingCostInfoForUri,
|
2017-12-21 18:08:54 -03:00
|
|
|
} from 'redux/selectors/cost_info';
|
|
|
|
|
import { makeSelectClaimForUri } from 'redux/selectors/claims';
|
|
|
|
|
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
|
|
|
|
2017-09-07 23:15:05 -04:00
|
|
|
export default connect(select, perform)(FilePrice);
|