aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/stores/Service.ts
blob: e14d80ba922f604963f572cf48b647c7661b21c3 (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
120
/*
 * Copyright (C)  2022 Kristóf Marussy <kristof@marussy.com>
 *
 * This file is part of Sophie.
 *
 * Sophie is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import { defineServiceModel, ServiceAction } from '@sophie/shared';
import { Instance } from 'mobx-state-tree';

import { getEnv } from './RendererEnv';
import ServiceSettings from './ServiceSettings';

const Service = defineServiceModel(ServiceSettings).actions((self) => {
  function dispatch(serviceAction: ServiceAction): void {
    getEnv(self).dispatchMainAction({
      action: 'dispatch-service-action',
      serviceId: self.id,
      serviceAction,
    });
  }

  return {
    goBack(): void {
      dispatch({
        action: 'back',
      });
    },
    goForward(): void {
      dispatch({
        action: 'forward',
      });
    },
    reload(ignoreCache = false): void {
      dispatch({
        action: 'reload',
        ignoreCache,
      });
    },
    stop(): void {
      dispatch({
        action: 'stop',
      });
    },
    go(url: string): void {
      dispatch({
        action: 'go',
        url,
      });
    },
    goHome(): void {
      dispatch({
        action: 'go-home',
      });
    },
    temporarilyTrustCurrentCertificate(): void {
      if (self.state.type !== 'certificateError') {
        throw new Error('No certificate to accept');
      }
      dispatch({
        action: 'temporarily-trust-current-certificate',
        fingerprint: self.state.certificate.fingerprint,
      });
    },
    openCurrentURLInExternalBrowser(): void {
      dispatch({
        action: 'open-current-url-in-external-browser',
      });
    },
    followPopup(url: string): void {
      dispatch({
        action: 'follow-popup',
        url,
      });
    },
    openPopupInExternalBrowser(url: string): void {
      dispatch({
        action: 'open-popup-in-external-browser',
        url,
      });
    },
    openAllPopupsInExternalBrowser(): void {
      dispatch({
        action: 'open-all-popups-in-external-browser',
      });
    },
    dismissPopup(url: string): void {
      dispatch({
        action: 'dismiss-popup',
        url,
      });
    },
    dismissAllPopups(): void {
      dispatch({
        action: 'dismiss-all-popups',
      });
    },
  };
});

/*
  eslint-disable-next-line @typescript-eslint/no-redeclare --
  Intentionally naming the type the same as the store definition.
*/
interface Service extends Instance<typeof Service> {}

export default Service;