aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/SignupScreen.js
blob: f93498be21e61f8dbc2cf9654517cacceb363868 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { inject, observer } from 'mobx-react';

import Signup from '../../components/auth/Signup';
import UserStore from '../../stores/UserStore';
import FeaturesStore from '../../stores/FeaturesStore';

import { globalError as globalErrorPropType } from '../../prop-types';

export default @inject('stores', 'actions') @observer class SignupScreen extends Component {
  static propTypes = {
    error: globalErrorPropType.isRequired,
  };

  onSignup(values) {
    const { actions, stores } = this.props;

    const { canSkipTrial, defaultTrialPlan, pricingConfig } = stores.features.anonymousFeatures;

    if (!canSkipTrial) {
      Object.assign(values, {
        plan: defaultTrialPlan,
        currency: pricingConfig.currencyID,
      });
    }

    actions.user.signup(values);
  }

  render() {
    const { stores, error } = this.props;

    return (
      <Signup
        onSubmit={values => this.onSignup(values)}
        isSubmitting={stores.user.signupRequest.isExecuting}
        loginRoute={stores.user.loginRoute}
        error={error}
      />
    );
  }
}

SignupScreen.wrappedComponent.propTypes = {
  actions: PropTypes.shape({
    user: PropTypes.shape({
      signup: PropTypes.func.isRequired,
    }).isRequired,
  }).isRequired,
  stores: PropTypes.shape({
    user: PropTypes.instanceOf(UserStore).isRequired,
    features: PropTypes.instanceOf(FeaturesStore).isRequired,
  }).isRequired,
};