aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/SetupAssistantScreen.tsx
blob: 1a20ab002019ab7a3fbaf64b8312ce7d0d7ce904 (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
import { Component, ReactElement } from 'react';
import { inject, observer } from 'mobx-react';
import { StoresProps } from '../../@types/ferdium-components.types';
import sleep from '../../helpers/async-helpers';
import SetupAssistant from '../../components/auth/SetupAssistant';
import { ILegacyServices } from '../../@types/legacy-types';

interface IProps extends StoresProps {}

interface IState {
  isSettingUpServices: boolean;
}

@inject('stores', 'actions')
@observer
class SetupAssistantScreen extends Component<IProps, IState> {
  services: ILegacyServices;

  constructor(props: IProps) {
    super(props);

    this.state = {
      isSettingUpServices: false,
    };

    // TODO: Why are these hardcoded here? Do they need to conform to specific services in the packaged recipes? If so, its more important to fix this
    this.services = {
      whatsapp: {
        name: 'WhatsApp',
        hasTeamId: false,
      },
      messenger: {
        name: 'Messenger',
        hasTeamId: false,
      },
      gmail: {
        name: 'Gmail',
        hasTeamId: false,
      },
      skype: {
        name: 'Skype',
        hasTeamId: false,
      },
      telegram: {
        name: 'Telegram',
        hasTeamId: false,
      },
      instagram: {
        name: 'Instagram',
        hasTeamId: false,
      },
      slack: {
        name: 'Slack',
        hasTeamId: true,
      },
      hangouts: {
        name: 'Hangouts',
        hasTeamId: false,
      },
      linkedin: {
        name: 'LinkedIn',
        hasTeamId: false,
      },
    };
  }

  async setupServices(serviceConfig: any): Promise<void> {
    const { services, router } = this.props.stores;

    this.setState({ isSettingUpServices: true });

    // The store requests are not build for parallel requests so we need to finish one request after another
    for (const config of serviceConfig) {
      // eslint-disable-next-line no-await-in-loop
      await services._createService({
        recipeId: config.id,
        serviceData: {
          name: this.services[config.id].name,
          team: config.team,
        },
        redirect: false,
        skipCleanup: true,
      });

      // eslint-disable-next-line no-await-in-loop
      await sleep(100);
    }

    this.setState({ isSettingUpServices: false });
    await sleep(100);
    router.push('/');
  }

  render(): ReactElement {
    return (
      <SetupAssistant
        onSubmit={config => this.setupServices(config)}
        services={this.services}
        // embed={false} // TODO: [TS DEBT][PROP NOT USED IN COMPONENT] check legacy services type
        isSettingUpServices={this.state.isSettingUpServices}
      />
    );
  }
}

export default SetupAssistantScreen;