aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/containers/instant.ts
blob: 12ae7454ef2e4ea3f4f3deb0e36ada7507c995c8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11





                                                                                     
                                        



                                               
                              







                                                                                     
                                   








                                                                                                        
import * as React from 'react';
import { connect } from 'react-redux';
import { Dispatch } from 'redux';
import { Instant as InstantComponent, InstantProps } from 'ts/pages/instant/instant';
import { Dispatcher } from 'ts/redux/dispatcher';
import { State } from 'ts/redux/reducer';
import { ScreenWidths } from 'ts/types';
import { Translate } from 'ts/utils/translate';

interface ConnectedState {
    translate: Translate;
    screenWidth: ScreenWidths;
}

interface ConnectedDispatch {
    dispatcher: Dispatcher;
}

const mapStateToProps = (state: State, _ownProps: InstantProps): ConnectedState => ({
    translate: state.translate,
    screenWidth: state.screenWidth,
});

const mapDispatchToProps = (dispatch: Dispatch<State>): ConnectedDispatch => ({
    dispatcher: new Dispatcher(dispatch),
});

export const Instant: React.ComponentClass<InstantProps> = connect(mapStateToProps, mapDispatchToProps)(
    InstantComponent,
);