aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/AccountScreen.tsx
blob: 55aa1e5c93e6bdb65bd32ce2c393381d2271bb41 (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
import { Component, ReactElement } from 'react';
import { inject, observer } from 'mobx-react';

import { StoresProps } from '../../@types/ferdium-components.types';

import AccountDashboard from '../../components/settings/account/AccountDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';
import { LIVE_FRANZ_API } from '../../config';
import { WEBSITE } from '../../environment-remote';

class AccountScreen extends Component<StoresProps> {
  reloadData(): void {
    const { user } = this.props.stores;

    user.getUserInfoRequest.reload();
  }

  handleWebsiteLink(route: string): void {
    const { actions, stores } = this.props;

    const api: string = stores.settings.all.app.server;

    const url: string =
      api === LIVE_FRANZ_API
        ? stores.user.getAuthURL(
            `${WEBSITE}${route}?utm_source=app&utm_medium=account_dashboard`,
          )
        : `${api}${route}`;

    actions.app.openExternalUrl({ url });
  }

  render(): ReactElement {
    const { user, settings } = this.props.stores;
    const { user: userActions } = this.props.actions;

    const isLoadingUserInfo = user.getUserInfoRequest.isExecuting;

    return (
      <ErrorBoundary>
        <AccountDashboard
          server={settings.all.app.server}
          user={user.data}
          isLoading={isLoadingUserInfo}
          userInfoRequestFailed={
            user.getUserInfoRequest.wasExecuted &&
            user.getUserInfoRequest.isError
          }
          retryUserInfoRequest={() => this.reloadData()}
          deleteAccount={userActions.delete}
          isLoadingDeleteAccount={user.deleteAccountRequest.isExecuting}
          isDeleteAccountSuccessful={
            user.deleteAccountRequest.wasExecuted &&
            !user.deleteAccountRequest.isError
          }
          openEditAccount={() => this.handleWebsiteLink('/user/profile')}
          openInvoices={() => this.handleWebsiteLink('/user/invoices')}
        />
      </ErrorBoundary>
    );
  }
}

export default inject('stores', 'actions')(observer(AccountScreen));