aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/subscription/SubscriptionFormScreen.js
blob: 50ed19bef1653ffc66bbd6043d6c7fe654544bfd (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import { remote } from 'electron';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { inject, observer } from 'mobx-react';

import PaymentStore from '../../stores/PaymentStore';

import SubscriptionForm from '../../components/subscription/SubscriptionForm';

const { BrowserWindow } = remote;

export default @inject('stores', 'actions') @observer class SubscriptionFormScreen extends Component {
  static propTypes = {
    onCloseWindow: PropTypes.func,
    content: PropTypes.oneOrManyChildElements,
    showSkipOption: PropTypes.bool,
    skipAction: PropTypes.func,
    skipButtonLabel: PropTypes.string,
    hideInfo: PropTypes.bool,
  }

  static defaultProps = {
    onCloseWindow: () => null,
    content: '',
    showSkipOption: false,
    skipAction: () => null,
    skipButtonLabel: '',
    hideInfo: false,
  }

  async handlePayment(plan) {
    const {
      actions,
      stores,
      onCloseWindow,
    } = this.props;

    const interval = plan;

    const { id } = stores.payment.plan[interval];
    actions.payment.createHostedPage({
      planId: id,
    });

    const hostedPage = await stores.payment.createHostedPageRequest;
    const url = `file://${__dirname}/../../index.html#/payment/${encodeURIComponent(hostedPage.url)}`;

    if (hostedPage.url) {
      const paymentWindow = new BrowserWindow({
        parent: remote.getCurrentWindow(),
        modal: true,
        title: '🔒 Franz Supporter License',
        width: 600,
        height: window.innerHeight - 100,
        maxWidth: 600,
        minWidth: 600,
        webPreferences: {
          nodeIntegration: true,
        },
      });
      paymentWindow.loadURL(url);

      paymentWindow.on('closed', () => {
        onCloseWindow();
      });
    }
  }

  render() {
    const {
      content,
      actions,
      stores,
      showSkipOption,
      skipAction,
      skipButtonLabel,
      hideInfo,
    } = this.props;
    return (
      <SubscriptionForm
        plan={stores.payment.plan}
        isLoading={stores.payment.plansRequest.isExecuting}
        retryPlanRequest={() => stores.payment.plansRequest.reload()}
        isCreatingHostedPage={stores.payment.createHostedPageRequest.isExecuting}
        handlePayment={price => this.handlePayment(price)}
        content={content}
        error={stores.payment.plansRequest.isError}
        showSkipOption={showSkipOption}
        skipAction={skipAction}
        skipButtonLabel={skipButtonLabel}
        hideInfo={hideInfo}
        openExternalUrl={actions.app.openExternalUrl}
      />
    );
  }
}

SubscriptionFormScreen.wrappedComponent.propTypes = {
  actions: PropTypes.shape({
    app: PropTypes.shape({
      openExternalUrl: PropTypes.func.isRequired,
    }).isRequired,
    payment: PropTypes.shape({
      createHostedPage: PropTypes.func.isRequired,
    }).isRequired,
    user: PropTypes.shape({
      update: PropTypes.func.isRequired,
    }).isRequired,
  }).isRequired,
  stores: PropTypes.shape({
    payment: PropTypes.instanceOf(PaymentStore).isRequired,
  }).isRequired,
};