2017-06-06 23:19:12 +02:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
|
|
|
import { doFetchCostInfoForUri } from "actions/cost_info";
|
2017-04-29 19:02:25 +02:00
|
|
|
import {
|
|
|
|
makeSelectCostInfoForUri,
|
2017-05-28 17:16:07 +02:00
|
|
|
makeSelectFetchingCostInfoForUri,
|
2017-06-20 14:08:52 +02:00
|
|
|
} from "selectors/cost_info";
|
|
|
|
import { makeSelectClaimForUri } from "selectors/claims";
|
|
|
|
import FilePrice from "./view";
|
2017-04-29 19:02:25 +02:00
|
|
|
|
|
|
|
const makeSelect = () => {
|
2017-06-06 23:19:12 +02:00
|
|
|
const selectCostInfoForUri = makeSelectCostInfoForUri();
|
|
|
|
const selectFetchingCostInfoForUri = makeSelectFetchingCostInfoForUri();
|
2017-06-05 10:37:37 +02:00
|
|
|
const selectClaim = makeSelectClaimForUri();
|
2017-05-18 19:58:28 +02:00
|
|
|
|
2017-04-29 19:02:25 +02:00
|
|
|
const select = (state, props) => ({
|
|
|
|
costInfo: selectCostInfoForUri(state, props),
|
2017-05-28 17:16:07 +02:00
|
|
|
fetching: selectFetchingCostInfoForUri(state, props),
|
2017-06-05 10:37:37 +02:00
|
|
|
claim: selectClaim(state, props),
|
2017-06-06 23:19:12 +02:00
|
|
|
});
|
2017-04-29 19:02:25 +02:00
|
|
|
|
2017-06-06 23:19:12 +02:00
|
|
|
return select;
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
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-06-06 06:21:55 +02:00
|
|
|
export default connect(makeSelect, perform)(FilePrice);
|