aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/UpgradeButton/index.js
blob: eade46cfd26424e7d9fa14fb0e054f5a9ba14bb3 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { inject, observer } from 'mobx-react';
import { defineMessages, intlShape } from 'react-intl';

import { Button } from '@meetfranz/forms';

import UserStore from '../../../stores/UserStore';
import ActivateTrialButton from '../ActivateTrialButton';
import UIStore from '../../../stores/UIStore';

const messages = defineMessages({
  upgradeToPro: {
    id: 'global.upgradeButton.upgradeToPro',
    defaultMessage: '!!!Upgrade to Franz Professional',
  },
});

@inject('stores', 'actions') @observer
class UpgradeButton extends Component {
  static propTypes = {
    // eslint-disable-next-line
    classes: PropTypes.object.isRequired,
    className: PropTypes.string,
    gaEventInfo: PropTypes.shape({
      category: PropTypes.string.isRequired,
      event: PropTypes.string.isRequired,
      label: PropTypes.string,
    }),
    requiresPro: PropTypes.bool,
  };

  static defaultProps = {
    className: '',
    gaEventInfo: null,
    requiresPro: false,
  }

  static contextTypes = {
    intl: intlShape,
  };

  handleCTAClick() {
    const { actions } = this.props;

    actions.ui.openSettings({ path: 'user' });
  }

  render() {
    const { stores, requiresPro } = this.props;
    const { intl } = this.context;

    const { isPremium, isPersonal } = stores.user;

    if (isPremium && isPersonal && requiresPro) {
      return (
        <Button
          label={intl.formatMessage(messages.upgradeToPro)}
          onClick={this.handleCTAClick.bind(this)}
          className={this.props.className}
          buttonType="inverted"
        />
      );
    }

    if (!isPremium) {
      return <ActivateTrialButton {...this.props} />;
    }

    return null;
  }
}

export default UpgradeButton;

UpgradeButton.wrappedComponent.propTypes = {
  stores: PropTypes.shape({
    user: PropTypes.instanceOf(UserStore).isRequired,
  }).isRequired,
  actions: PropTypes.shape({
    ui: PropTypes.instanceOf(UIStore).isRequired,
  }).isRequired,
};