import React, { Component } from 'react'; import { BrowserWindow, getCurrentWindow } from '@electron/remote'; 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'; import UserStore from '../../stores/UserStore'; import FeaturesStore from '../../stores/FeaturesStore'; import AppStore from '../../stores/AppStore'; 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: getCurrentWindow(), modal: true, title: '🔒 Franz Supporter License', width: 800, height: window.innerHeight - 100, maxWidth: 800, minWidth: 600, webPreferences: { nodeIntegration: true, webviewTag: true, enableRemoteModule: true, contextIsolation: false, }, }); 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.instanceOf(AppStore).isRequired, payment: PropTypes.instanceOf(PaymentStore).isRequired, user: PropTypes.instanceOf(UserStore).isRequired, }).isRequired, stores: PropTypes.shape({ payment: PropTypes.instanceOf(PaymentStore).isRequired, user: PropTypes.instanceOf(UserStore).isRequired, features: PropTypes.instanceOf(FeaturesStore).isRequired, }).isRequired, };