aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/stores/GlobalSettings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/renderer/src/stores/GlobalSettings.ts')
-rw-r--r--packages/renderer/src/stores/GlobalSettings.ts62
1 files changed, 62 insertions, 0 deletions
diff --git a/packages/renderer/src/stores/GlobalSettings.ts b/packages/renderer/src/stores/GlobalSettings.ts
new file mode 100644
index 0000000..11c2ebd
--- /dev/null
+++ b/packages/renderer/src/stores/GlobalSettings.ts
@@ -0,0 +1,62 @@
1/*
2 * Copyright (C) 2022 Kristóf Marussy <kristof@marussy.com>
3 *
4 * This file is part of Sophie.
5 *
6 * Sophie is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, version 3.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 *
18 * SPDX-License-Identifier: AGPL-3.0-only
19 */
20
21import { defineGlobalSettingsModel, ThemeSource } from '@sophie/shared';
22import { Instance } from 'mobx-state-tree';
23
24import { getEnv } from './RendererEnv.js';
25import Service from './Service.js';
26
27const GlobalSettings = defineGlobalSettingsModel(Service).actions((self) => ({
28 setSelectedServiceId(serviceId: string): void {
29 getEnv(self).dispatchMainAction({
30 action: 'set-selected-service-id',
31 serviceId,
32 });
33 },
34 setThemeSource(themeSource: ThemeSource): void {
35 getEnv(self).dispatchMainAction({
36 action: 'set-theme-source',
37 themeSource,
38 });
39 },
40 setShowLocationBar(showLocationBar: boolean): void {
41 getEnv(self).dispatchMainAction({
42 action: 'set-show-location-bar',
43 showLocationBar,
44 });
45 },
46 toggleLocationBar(): void {
47 this.setShowLocationBar(!self.showLocationBar);
48 },
49}));
50
51/*
52 eslint-disable-next-line @typescript-eslint/no-redeclare --
53 Intentionally naming the type the same as the store definition.
54*/
55interface GlobalSettings extends Instance<typeof GlobalSettings> {}
56
57export default GlobalSettings;
58
59export type {
60 GlobalSettingsSnapshotIn,
61 GlobalSettingsSnapshotOut,
62} from '@sophie/shared';