aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/containers/latest_error.tsx
blob: b75ec00aadb420b73fe49aa4f9aa3b50e753f5d4 (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
import * as React from 'react';

import { connect } from 'react-redux';

import { SlidingError } from '../components/sliding_error';
import { State } from '../redux/reducer';
import { Asset, DisplayStatus } from '../types';
import { errorUtil } from '../util/error';

export interface LatestErrorComponentProps {
    asset?: Asset;
    latestError?: any;
    slidingDirection: 'down' | 'up';
}

export const LatestErrorComponent: React.StatelessComponent<LatestErrorComponentProps> = props => {
    if (!props.latestError) {
        return <div />;
    }
    const { icon, message } = errorUtil.errorDescription(props.latestError, props.asset);
    return <SlidingError direction={props.slidingDirection} icon={icon} message={message} />;
};

interface ConnectedState {
    asset?: Asset;
    latestError?: any;
    slidingDirection: 'down' | 'up';
}
export interface LatestErrorProps {}
const mapStateToProps = (state: State, _ownProps: LatestErrorProps): ConnectedState => ({
    asset: state.selectedAsset,
    latestError: state.latestError,
    slidingDirection: state.latestErrorDisplay === DisplayStatus.Present ? 'up' : 'down',
});

export const LatestError = connect(mapStateToProps)(LatestErrorComponent);