aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/AccountScreen.js
blob: ce1b9c333142e96adc5ac46dc55101c3003215c0 (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
114
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 UserStore from '../../stores/UserStore';
import AppStore from '../../stores/AppStore';

import AccountDashboard from '../../components/settings/account/AccountDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';

const { BrowserWindow } = remote;

export default @inject('stores', 'actions') @observer class AccountScreen extends Component {
  componentWillMount() {
    const {
      user,
    } = this.props.stores;

    user.getUserInfoRequest.invalidate({ immediately: true });
  }

  onCloseWindow() {
    const { user, payment } = this.props.stores;
    user.getUserInfoRequest.invalidate({ immediately: true });
    payment.ordersDataRequest.invalidate({ immediately: true });
  }

  reloadData() {
    const { user, payment } = this.props.stores;

    user.getUserInfoRequest.reload();
    payment.ordersDataRequest.reload();
    payment.plansRequest.reload();
  }

  async handlePaymentDashboard() {
    const { actions, stores } = this.props;

    actions.payment.createDashboardUrl();

    const dashboard = await stores.payment.createDashboardUrlRequest;

    if (dashboard.url) {
      const paymentWindow = new BrowserWindow({
        title: '🔒 Franz Subscription Dashboard',
        parent: remote.getCurrentWindow(),
        modal: false,
        width: 900,
        minWidth: 600,
        webPreferences: {
          nodeIntegration: false,
        },
      });
      paymentWindow.loadURL(dashboard.url);

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

  render() {
    const { user, payment } = this.props.stores;
    const { openExternalUrl } = this.props.actions.app;
    const { user: userActions } = this.props.actions;

    const isLoadingUserInfo = user.getUserInfoRequest.isExecuting;
    const isLoadingOrdersInfo = payment.ordersDataRequest.isExecuting;
    const isLoadingPlans = payment.plansRequest.isExecuting;

    return (
      <ErrorBoundary>
        <AccountDashboard
          user={user.data}
          orders={payment.orders}
          isLoading={isLoadingUserInfo}
          isLoadingOrdersInfo={isLoadingOrdersInfo}
          isLoadingPlans={isLoadingPlans}
          userInfoRequestFailed={user.getUserInfoRequest.wasExecuted && user.getUserInfoRequest.isError}
          retryUserInfoRequest={() => this.reloadData()}
          isCreatingPaymentDashboardUrl={payment.createDashboardUrlRequest.isExecuting}
          openDashboard={price => this.handlePaymentDashboard(price)}
          openExternalUrl={url => openExternalUrl({ url })}
          onCloseSubscriptionWindow={() => this.onCloseWindow()}
          deleteAccount={userActions.delete}
          isLoadingDeleteAccount={user.deleteAccountRequest.isExecuting}
          isDeleteAccountSuccessful={user.deleteAccountRequest.wasExecuted && !user.deleteAccountRequest.isError}
        />
      </ErrorBoundary>
    );
  }
}

AccountScreen.wrappedComponent.propTypes = {
  stores: PropTypes.shape({
    user: PropTypes.instanceOf(UserStore).isRequired,
    payment: PropTypes.instanceOf(PaymentStore).isRequired,
    app: PropTypes.instanceOf(AppStore).isRequired,
  }).isRequired,
  actions: PropTypes.shape({
    payment: PropTypes.shape({
      createDashboardUrl: PropTypes.func.isRequired,
    }).isRequired,
    app: PropTypes.shape({
      openExternalUrl: PropTypes.func.isRequired,
    }).isRequired,
    user: PropTypes.shape({
      update: PropTypes.func.isRequired,
      delete: PropTypes.func.isRequired,
    }).isRequired,
  }).isRequired,
};