aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/ServicesScreen.tsx
blob: 70eeffed447403a2da79c72680b5550ec0e33b5f (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
import { Component, ReactElement } from 'react';
import { inject, observer } from 'mobx-react';
import { StoresProps } from '../../@types/ferdium-components.types';
import ServicesDashboard from '../../components/settings/services/ServicesDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';

interface IProps extends StoresProps {}

@inject('stores', 'actions')
@observer
class ServicesScreen extends Component<IProps> {
  componentWillUnmount(): void {
    this.props.actions.service.resetFilter();
    this.props.actions.service.resetStatus();
  }

  // TODO - [TECH DEBT] need to check it
  // 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;
    const allServices =
      services.filterNeedle === null ? services.all : services.filtered;

    return (
      <ErrorBoundary>
        <ServicesDashboard
          // user={user.data} //  TODO - [TECH DEBT][PROPS NOT EXIST IN COMPONENT] check it later
          services={allServices}
          status={services.actionStatus}
          // deleteService={() => this.deleteService()} //  TODO - [TECH DEBT][PROPS NOT EXIST IN COMPONENT] check it later
          // toggleService={toggleService} //  TODO - [TECH DEBT][PROPS NOT USED IN COMPONENT] check it later
          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 ServicesScreen;