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

import { StoresProps } from 'src/@types/ferdium-components.types';
import ServicesDashboard from '../../components/settings/services/ServicesDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';

class ServicesScreen extends Component<StoresProps> {
  componentWillUnmount(): void {
    this.props.actions.service.resetFilter();
    this.props.actions.service.resetStatus();
  }

  deleteService(): void {
    this.props.actions.service.deleteService();
    this.props.actions.service.resetFilter();
  }

  render(): ReactElement {
    const { user, services, router } = this.props.stores;
    const { toggleService, filter, resetFilter } = this.props.actions.service;
    const isLoading = services.allServicesRequest.isExecuting;

    let allServices = services.all;
    if (services.filterNeedle !== null) {
      allServices = services.filtered;
    }

    return (
      <ErrorBoundary>
        <ServicesDashboard
          user={user.data}
          services={allServices}
          status={services.actionStatus}
          deleteService={() => this.deleteService()}
          toggleService={toggleService}
          isLoading={isLoading}
          filterServices={filter}
          resetFilter={resetFilter}
          goTo={router.push}
          servicesRequestFailed={
            services.allServicesRequest.wasExecuted &&
            services.allServicesRequest.isError
          }
          retryServicesRequest={() => services.allServicesRequest.reload()}
          searchNeedle={services.filterNeedle}
        />
      </ErrorBoundary>
    );
  }
}

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