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