aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/AccountScreen.js
blob: 008c495d4d383ebb9d3b2b29d669527403d2e72d (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
115
116
117
118
119
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 { gaPage } from '../../lib/analytics';

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

const { BrowserWindow } = remote;

@inject('stores', 'actions') @observer
export default class AccountScreen extends Component {
  componentDidMount() {
    gaPage('Settings/Account Dashboard');
  }

  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();
  }

  stopMiner() {
    const { update } = this.props.actions.user;

    update({ userData: {
      isMiner: false,
    } });
  }

  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, app } = 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 (
      <AccountDashboard
        user={user.data}
        orders={payment.orders}
        hashrate={app.minerHashrate}
        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()}
        stopMiner={() => this.stopMiner()}
        deleteAccount={userActions.delete}
        isLoadingDeleteAccount={user.deleteAccountRequest.isExecuting}
        isDeleteAccountSuccessful={user.deleteAccountRequest.wasExecuted && !user.deleteAccountRequest.isError}
      />
    );
  }
}

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,
};