aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/PricingScreen.js
blob: 7e158653584c373075e4cf10c0f4c33002244ce6 (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
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { inject, observer } from 'mobx-react';
import { RouterStore } from 'mobx-react-router';

import Pricing from '../../components/auth/Pricing';
import UserStore from '../../stores/UserStore';
import PaymentStore from '../../stores/PaymentStore';
import { gaPage } from '../../lib/analytics';

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

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

  componentDidMount() {
    gaPage('Auth/Pricing');
  }

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

    const nextStepRoute = stores.user.legacyServices.length ? stores.user.importRoute : stores.user.inviteRoute;

    return (
      <Pricing
        donor={stores.user.data.donor || {}}
        onSubmit={actions.user.signup}
        onCloseSubscriptionWindow={() => this.props.stores.router.push(nextStepRoute)}
        isLoading={stores.payment.plansRequest.isExecuting}
        isLoadingUser={stores.user.getUserInfoRequest.isExecuting}
        error={error}
        skipAction={() => this.props.stores.router.push(nextStepRoute)}
      />
    );
  }
}

PricingScreen.wrappedComponent.propTypes = {
  actions: PropTypes.shape({
    user: PropTypes.shape({
      signup: PropTypes.func.isRequired,
    }).isRequired,
  }).isRequired,
  stores: PropTypes.shape({
    user: PropTypes.instanceOf(UserStore).isRequired,
    payment: PropTypes.instanceOf(PaymentStore).isRequired,
    router: PropTypes.instanceOf(RouterStore).isRequired,
  }).isRequired,
};