You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1013 B
TypeScript

import React from 'react';
import { connect } from 'react-redux';
import { registerAsync } from 'actions/auth-actions';
import RegisterPageComponent from 'components/register-page/register-page';
import { CombinedState } from 'reducers/interfaces';
interface StateToProps {
fetching: boolean;
}
interface DispatchToProps {
onRegister: (username: string, firstName: string,
lastName: string, email: string,
password1: string, password2: string) => void;
}
function mapStateToProps(state: CombinedState): StateToProps {
return {
fetching: state.auth.fetching,
};
}
function mapDispatchToProps(dispatch: any): DispatchToProps {
return {
onRegister: (...args): void => dispatch(registerAsync(...args)),
};
}
function RegisterPageContainer(props: StateToProps & DispatchToProps): JSX.Element {
return (
<RegisterPageComponent {...props} />
);
}
export default connect(
mapStateToProps,
mapDispatchToProps,
)(RegisterPageContainer);