33 lines
985 B
TypeScript
33 lines
985 B
TypeScript
import * as _ from 'lodash';
|
|
import * as React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { Dispatch } from 'redux';
|
|
import { DocsHome as DocsHomeComponent, DocsHomeProps } from 'ts/pages/documentation/docs_home';
|
|
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: DocsHomeProps): ConnectedState => ({
|
|
translate: state.translate,
|
|
screenWidth: state.screenWidth,
|
|
});
|
|
|
|
const mapDispatchToProps = (dispatch: Dispatch<State>): ConnectedDispatch => ({
|
|
dispatcher: new Dispatcher(dispatch),
|
|
});
|
|
|
|
export const DocsHome: React.ComponentClass<DocsHomeProps> = connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(DocsHomeComponent);
|