aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/containers/selected_asset_progress_bar.tsx
blob: 886e223d3582d08fed7a8802af12cab9f5efba4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import * as React from 'react';

import { connect } from 'react-redux';

import { ProgressBar } from '../components/progress_bar';
import { State } from '../redux/reducer';
import { OrderProcessState, OrderState } from '../types';

interface SelectedAssetProgressComponentProps {
    buyOrderState: OrderState;
    percentageDone?: number;
}
export const SelectedAssetProgressComponent: React.StatelessComponent<SelectedAssetProgressComponentProps> = props => {
    const { buyOrderState, percentageDone } = props;

    // TODO: uncomment after done testing
    // const isOrderStateOk =
    //     buyOrderState.processState === OrderProcessState.PROCESSING ||
    //     buyOrderState.processState === OrderProcessState.SUCCESS;
    const isOrderStateOk = true;

    if (isOrderStateOk && percentageDone) {
        return <ProgressBar percentageDone={percentageDone} />;
    }

    return null;
};

interface ConnectedState {
    buyOrderState: OrderState;
    percentageDone?: number;
}
const mapStateToProps = (state: State, _ownProps: {}): ConnectedState => ({
    buyOrderState: state.buyOrderState,
    percentageDone: state.orderProgress && state.orderProgress.percentageDone,
});
export const SelectedAssetProgressBar = connect(mapStateToProps)(SelectedAssetProgressComponent);