aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/PasswordScreen.tsx
blob: 864a11fa7265431d01e141b7db7252f6eb14e727 (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
import { Component } from 'react';
import { inject, observer } from 'mobx-react';
import Password from '../../components/auth/Password';
import UserStore from '../../stores/UserStore';

interface IProps {
  actions: {
    user: UserStore,
  },
  stores: {
    user: UserStore,
  }
};

class PasswordScreen extends Component<IProps> {
  render() {
    const { actions, stores } = this.props;

    return (
      <Password
        onSubmit={actions.user.retrievePassword}
        isSubmitting={stores.user.passwordRequest.isExecuting}
        signupRoute={stores.user.signupRoute}
        loginRoute={stores.user.loginRoute}
        status={stores.user.actionStatus}
      />
    );
  }
}

export default inject('stores', 'actions')(observer(PasswordScreen));