import React, { Component } from 'react'; import { remote } from 'electron'; import PropTypes from 'prop-types'; import { inject, observer } from 'mobx-react'; import PaymentStore from '../../stores/PaymentStore'; import SubscriptionForm from '../../components/subscription/SubscriptionForm'; import TrialForm from '../../components/subscription/TrialForm'; const { BrowserWindow } = remote; export default @inject('stores', 'actions') @observer class SubscriptionFormScreen extends Component { static propTypes = { onCloseWindow: PropTypes.func, } static defaultProps = { onCloseWindow: () => null, } async openBrowser() { const { stores, onCloseWindow, } = this.props; const { user, features, } = stores; let hostedPageURL = features.features.planSelectionURL; hostedPageURL = user.getAuthURL(hostedPageURL); const paymentWindow = new BrowserWindow({ parent: remote.getCurrentWindow(), modal: true, title: '🔒 Franz Supporter License', width: 800, height: window.innerHeight - 100, maxWidth: 800, minWidth: 600, webPreferences: { nodeIntegration: true, webviewTag: true, }, }); paymentWindow.loadURL(`file://${__dirname}/../../index.html#/payment/${encodeURIComponent(hostedPageURL)}`); paymentWindow.on('closed', () => { onCloseWindow(); }); } render() { const { actions, stores, } = this.props; const { data: user } = stores.user; if (user.hadSubscription) { return ( this.openBrowser()} isActivatingTrial={stores.user.activateTrialRequest.isExecuting || stores.user.getUserInfoRequest.isExecuting} /> ); } return ( actions.user.activateTrial({ planId: stores.features.features.defaultTrialPlan })} showAllOptions={() => this.openBrowser()} isActivatingTrial={stores.user.activateTrialRequest.isExecuting || stores.user.getUserInfoRequest.isExecuting} /> ); } } 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, };