-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathClipboardPage.ts
More file actions
278 lines (233 loc) · 9.24 KB
/
Copy pathClipboardPage.ts
File metadata and controls
278 lines (233 loc) · 9.24 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
import Adw from "gi://Adw";
import Gio from "gi://Gio";
import GObject from "gi://GObject";
import type { ClipboardPageChildren } from "../types/prefs.js";
import { getTemplate } from "../utils/getTemplate.js";
import { logger } from "../utils/logger.js";
import {
BlockedAppRow,
type BlockedAppRowInstance,
} from "./components/blocked-app-row.js";
export const ClipboardPage = GObject.registerClass(
{
GTypeName: "VicinaeClipboardPage",
Template: getTemplate("ClipboardPage"),
InternalChildren: [
"enableClipboardMonitoring",
"blockedAppsGroup",
"emptyPlaceholderRow",
"addWindowButton",
],
},
class ClipboardPage extends Adw.PreferencesPage {
private settings!: Gio.Settings;
private rowInstances: Set<BlockedAppRowInstance> = new Set();
bindSettings(settings: Gio.Settings) {
this.settings = settings;
logger.debug("Settings bound to ClipboardPage");
this.loadBlockedApplications();
this.updateAddButtonState();
const children = this as unknown as ClipboardPageChildren;
this.connectAddBlockedAppButton(children);
this.bindEnableClipboardMonitoring(settings, children);
}
/** "Add window class" → append an empty blocked-app row. */
private connectAddBlockedAppButton(children: ClipboardPageChildren) {
children._addWindowButton.connect("clicked", () => {
this.addEmptyBlockedAppRow();
});
}
/** `enable-clipboard-monitoring` ↔ clipboard monitoring switch. */
private bindEnableClipboardMonitoring(
settings: Gio.Settings,
children: ClipboardPageChildren,
) {
settings.bind(
"enable-clipboard-monitoring",
children._enableClipboardMonitoring,
"active",
Gio.SettingsBindFlags.DEFAULT,
);
// Update sensitivity of blocked apps group based on the switch
const updateSensitivity = () => {
const isEnabled = settings.get_boolean(
"enable-clipboard-monitoring",
);
children._blockedAppsGroup.set_sensitive(isEnabled);
};
settings.connect(
"changed::enable-clipboard-monitoring",
updateSensitivity,
);
updateSensitivity();
}
private loadBlockedApplications() {
try {
const blockedApps = this.settings.get_strv(
"blocked-applications",
);
const uniqueBlockedApps = this.removeDuplicates(blockedApps);
if (uniqueBlockedApps.length !== blockedApps.length) {
this.settings.set_strv(
"blocked-applications",
uniqueBlockedApps,
);
}
const children = this as unknown as ClipboardPageChildren;
this.rowInstances.forEach((row) => {
children._blockedAppsGroup.remove(row);
});
this.rowInstances.clear();
uniqueBlockedApps.forEach((windowClass) => {
this.addBlockedAppRow(windowClass);
});
} catch (error) {
logger.error("Error loading blocked applications", error);
}
}
private removeDuplicates(apps: string[]): string[] {
const seen = new Set<string>();
return apps.filter((app) => {
const lowerApp = app.toLowerCase();
if (seen.has(lowerApp)) {
return false;
}
seen.add(lowerApp);
return true;
});
}
private addEmptyBlockedAppRow() {
const firstEmptyRow = Array.from(this.rowInstances).find((r) =>
r.isEmpty(),
);
if (firstEmptyRow) {
firstEmptyRow.focusInput();
return;
}
this.addBlockedAppRow("");
}
private addBlockedAppRow(windowClass: string) {
const children = this as unknown as ClipboardPageChildren;
const row = new BlockedAppRow();
row.setWindowClass(windowClass);
row.connect("delete-requested", () => {
this.removeBlockedAppRow(row);
});
row.connect("save-requested", () => {
this.handleSaveRequest(row);
});
row.connect("input-changed", () => {
this.handleInputChange(row);
});
children._blockedAppsGroup.add_row(row);
if (!windowClass) {
row.focusInput();
}
this.rowInstances.add(row);
this.updateAddButtonState();
}
private handleInputChange(_row: BlockedAppRowInstance) {
this.updateAddButtonState();
}
private updateAddButtonState() {
const children = this as unknown as ClipboardPageChildren;
const hasEmptyRows = Array.from(this.rowInstances).some((r) =>
r.isEmpty(),
);
children._addWindowButton.set_sensitive(!hasEmptyRows);
const hasAnyRows = this.rowInstances.size > 0;
children._emptyPlaceholderRow.set_visible(!hasAnyRows);
}
private handleSaveRequest(row: BlockedAppRowInstance) {
const oldClass = row.getOriginalWindowClass();
const newClass = row.getInputValue().trim();
if (newClass) {
const currentBlockedApps = this.settings.get_strv(
"blocked-applications",
);
const isDuplicate = currentBlockedApps.some(
(app) =>
app !== oldClass &&
app.toLowerCase() === newClass.toLowerCase(),
);
if (isDuplicate) {
const root = this.get_root() as Adw.PreferencesWindow;
if (root && "add_toast" in root) {
const toast = new Adw.Toast({
title: `Can't add ${newClass} to the list, because it's already there`,
});
(
root as Adw.PreferencesWindow & {
add_toast: (toast: Adw.Toast) => void;
}
).add_toast(toast);
}
row.setWindowClass(oldClass);
return;
}
this.updateBlockedAppInSettings(row, oldClass, newClass);
} else {
this.removeBlockedAppFromSettings(row, oldClass);
}
this.updateAddButtonState();
}
private updateBlockedAppInSettings(
_row: BlockedAppRowInstance,
oldClass: string,
newClass: string,
) {
try {
const currentBlockedApps = this.settings.get_strv(
"blocked-applications",
);
let filteredApps: string[];
if (oldClass && oldClass.trim() !== "") {
filteredApps = currentBlockedApps.filter(
(app) => app !== oldClass,
);
} else {
filteredApps = [...currentBlockedApps];
}
filteredApps.push(newClass);
this.settings.set_strv("blocked-applications", filteredApps);
} catch (error) {
logger.error("Error updating blocked app in settings", error);
}
}
private removeBlockedAppFromSettings(
_row: BlockedAppRowInstance,
oldClass: string,
) {
try {
if (!oldClass || oldClass.trim() === "") {
return;
}
const currentBlockedApps = this.settings.get_strv(
"blocked-applications",
);
const filteredApps = currentBlockedApps.filter(
(app) => app !== oldClass,
);
this.settings.set_strv("blocked-applications", filteredApps);
} catch (error) {
logger.error("Error removing blocked app from settings", error);
}
}
private removeBlockedAppRow(row: BlockedAppRowInstance) {
const children = this as unknown as ClipboardPageChildren;
const windowClass = row.getWindowClass();
if (windowClass) {
const currentApps = this.settings.get_strv(
"blocked-applications",
);
const updatedApps = currentApps.filter(
(app) => app !== windowClass,
);
this.settings.set_strv("blocked-applications", updatedApps);
}
this.rowInstances.delete(row);
children._blockedAppsGroup.remove(row);
this.updateAddButtonState();
}
},
);