summaryrefslogtreecommitdiff
path: root/raveos-hyprland-theme/theme-data/dms/Modules/Notifications/Center/NotificationKeyboardController.qml
blob: eda12c0717bb64a23f79568631f6b0b29430289a (plain)
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
import QtQuick
import qs.Services

QtObject {
    id: controller

    property var listView: null
    property bool isOpen: false
    property var onClose: null

    property int selectionVersion: 0

    property bool keyboardNavigationActive: false
    property int selectedFlatIndex: 0
    property var flatNavigation: []
    property bool showKeyboardHints: false

    property string selectedNotificationId: ""
    property string selectedGroupKey: ""
    property string selectedItemType: ""
    property bool isTogglingGroup: false
    property bool isRebuilding: false

    function rebuildFlatNavigation() {
        isRebuilding = true;

        const nav = [];
        const groups = NotificationService.groupedNotifications;

        for (var i = 0; i < groups.length; i++) {
            const group = groups[i];
            const isExpanded = NotificationService.expandedGroups[group.key] || false;

            nav.push({
                "type": "group",
                "groupIndex": i,
                "notificationIndex": -1,
                "groupKey": group.key,
                "notificationId": ""
            });

            if (isExpanded) {
                const notifications = group.notifications || [];
                const maxNotifications = Math.min(notifications.length, 10);
                for (var j = 0; j < maxNotifications; j++) {
                    const notifId = String(notifications[j] && notifications[j].notification && notifications[j].notification.id ? notifications[j].notification.id : "");
                    nav.push({
                        "type": "notification",
                        "groupIndex": i,
                        "notificationIndex": j,
                        "groupKey": group.key,
                        "notificationId": notifId
                    });
                }
            }
        }

        flatNavigation = nav;
        updateSelectedIndexFromId();
        isRebuilding = false;
    }

    function updateSelectedIndexFromId() {
        if (!keyboardNavigationActive) {
            return;
        }

        for (var i = 0; i < flatNavigation.length; i++) {
            const item = flatNavigation[i];

            if (selectedItemType === "group" && item.type === "group" && item.groupKey === selectedGroupKey) {
                selectedFlatIndex = i;
                selectionVersion++; // Trigger UI update
                return;
            } else if (selectedItemType === "notification" && item.type === "notification" && String(item.notificationId) === String(selectedNotificationId)) {
                selectedFlatIndex = i;
                selectionVersion++; // Trigger UI update
                return;
            }
        }

        // If not found, try to find the same group but select the group header instead
        if (selectedItemType === "notification") {
            for (var j = 0; j < flatNavigation.length; j++) {
                const groupItem = flatNavigation[j];
                if (groupItem.type === "group" && groupItem.groupKey === selectedGroupKey) {
                    selectedFlatIndex = j;
                    selectedItemType = "group";
                    selectedNotificationId = "";
                    selectionVersion++; // Trigger UI update
                    return;
                }
            }
        }

        // If still not found, clamp to valid range and update
        if (flatNavigation.length > 0) {
            selectedFlatIndex = Math.min(selectedFlatIndex, flatNavigation.length - 1);
            selectedFlatIndex = Math.max(selectedFlatIndex, 0);
            updateSelectedIdFromIndex();
            selectionVersion++; // Trigger UI update
        }
    }

    function updateSelectedIdFromIndex() {
        if (selectedFlatIndex >= 0 && selectedFlatIndex < flatNavigation.length) {
            const item = flatNavigation[selectedFlatIndex];
            selectedItemType = item.type;
            selectedGroupKey = item.groupKey;
            selectedNotificationId = item.notificationId;
        }
    }

    function reset() {
        selectedFlatIndex = 0;
        keyboardNavigationActive = false;
        showKeyboardHints = false;
        // Reset keyboardActive when modal is reset
        if (listView) {
            listView.keyboardActive = false;
        }
        rebuildFlatNavigation();
    }

    function selectNext() {
        keyboardNavigationActive = true;
        if (flatNavigation.length === 0)
            return;

        // Re-enable auto-scrolling when arrow keys are used
        if (listView && listView.enableAutoScroll) {
            listView.enableAutoScroll();
        }

        selectedFlatIndex = Math.min(selectedFlatIndex + 1, flatNavigation.length - 1);
        updateSelectedIdFromIndex();
        selectionVersion++;
        ensureVisible();
    }

    function selectNextWrapping() {
        keyboardNavigationActive = true;
        if (flatNavigation.length === 0)
            return;

        // Re-enable auto-scrolling when arrow keys are used
        if (listView && listView.enableAutoScroll) {
            listView.enableAutoScroll();
        }

        selectedFlatIndex = (selectedFlatIndex + 1) % flatNavigation.length;
        updateSelectedIdFromIndex();
        selectionVersion++;
        ensureVisible();
    }

    function selectPrevious() {
        keyboardNavigationActive = true;
        if (flatNavigation.length === 0)
            return;

        // Re-enable auto-scrolling when arrow keys are used
        if (listView && listView.enableAutoScroll) {
            listView.enableAutoScroll();
        }

        selectedFlatIndex = Math.max(selectedFlatIndex - 1, 0);
        updateSelectedIdFromIndex();
        selectionVersion++;
        ensureVisible();
    }

    function toggleGroupExpanded() {
        if (flatNavigation.length === 0 || selectedFlatIndex >= flatNavigation.length)
            return;
        const currentItem = flatNavigation[selectedFlatIndex];
        const groups = NotificationService.groupedNotifications;
        const group = groups[currentItem.groupIndex];
        if (!group)
            return;

        // Prevent expanding groups with < 2 notifications
        const notificationCount = group.notifications ? group.notifications.length : 0;
        if (notificationCount < 2)
            return;
        const wasExpanded = NotificationService.expandedGroups[group.key] || false;
        const groupIndex = currentItem.groupIndex;

        isTogglingGroup = true;
        NotificationService.toggleGroupExpansion(group.key);
        rebuildFlatNavigation();

        // Smart selection after toggle
        if (!wasExpanded) {
            // Just expanded - move to first notification in the group
            for (var i = 0; i < flatNavigation.length; i++) {
                if (flatNavigation[i].type === "notification" && flatNavigation[i].groupIndex === groupIndex) {
                    selectedFlatIndex = i;
                    break;
                }
            }
        } else {
            // Just collapsed - stay on the group header
            for (var i = 0; i < flatNavigation.length; i++) {
                if (flatNavigation[i].type === "group" && flatNavigation[i].groupIndex === groupIndex) {
                    selectedFlatIndex = i;
                    break;
                }
            }
        }

        isTogglingGroup = false;
    }

    function handleEnterKey() {
        if (flatNavigation.length === 0 || selectedFlatIndex >= flatNavigation.length)
            return;
        const currentItem = flatNavigation[selectedFlatIndex];
        const groups = NotificationService.groupedNotifications;
        const group = groups[currentItem.groupIndex];
        if (!group)
            return;
        if (currentItem.type === "group") {
            const notificationCount = group.notifications ? group.notifications.length : 0;
            if (notificationCount >= 2) {
                toggleGroupExpanded();
            } else {
                executeAction(0);
            }
        } else if (currentItem.type === "notification") {
            executeAction(0);
        }
    }

    function toggleTextExpanded() {
        if (flatNavigation.length === 0 || selectedFlatIndex >= flatNavigation.length)
            return;
        const currentItem = flatNavigation[selectedFlatIndex];
        const groups = NotificationService.groupedNotifications;
        const group = groups[currentItem.groupIndex];
        if (!group)
            return;
        let messageId = "";

        if (currentItem.type === "group") {
            messageId = group.latestNotification?.notification?.id + "_desc";
        } else if (currentItem.type === "notification" && currentItem.notificationIndex >= 0 && currentItem.notificationIndex < group.notifications.length) {
            messageId = group.notifications[currentItem.notificationIndex]?.notification?.id + "_desc";
        }

        if (messageId) {
            NotificationService.toggleMessageExpansion(messageId);
        }
    }

    function executeAction(actionIndex) {
        if (flatNavigation.length === 0 || selectedFlatIndex >= flatNavigation.length)
            return;
        const currentItem = flatNavigation[selectedFlatIndex];
        const groups = NotificationService.groupedNotifications;
        const group = groups[currentItem.groupIndex];
        if (!group)
            return;
        let actions = [];

        if (currentItem.type === "group") {
            actions = group.latestNotification?.actions || [];
        } else if (currentItem.type === "notification" && currentItem.notificationIndex >= 0 && currentItem.notificationIndex < group.notifications.length) {
            actions = group.notifications[currentItem.notificationIndex]?.actions || [];
        }

        if (actionIndex >= 0 && actionIndex < actions.length) {
            const action = actions[actionIndex];
            if (action.invoke) {
                action.invoke();
                if (onClose)
                    onClose();
            }
        }
    }

    function clearSelected() {
        if (flatNavigation.length === 0 || selectedFlatIndex >= flatNavigation.length)
            return;
        const currentItem = flatNavigation[selectedFlatIndex];
        const groups = NotificationService.groupedNotifications;
        const group = groups[currentItem.groupIndex];
        if (!group)
            return;
        if (currentItem.type === "group") {
            NotificationService.dismissGroup(group.key);
        } else if (currentItem.type === "notification") {
            const notification = group.notifications[currentItem.notificationIndex];
            NotificationService.dismissNotification(notification);
        }

        rebuildFlatNavigation();

        if (flatNavigation.length === 0) {
            keyboardNavigationActive = false;
            if (listView) {
                listView.keyboardActive = false;
            }
        } else {
            selectedFlatIndex = Math.min(selectedFlatIndex, flatNavigation.length - 1);
            updateSelectedIdFromIndex();
            ensureVisible();
        }
    }

    function findRepeater(parent) {
        if (!parent || !parent.children) {
            return null;
        }
        for (var i = 0; i < parent.children.length; i++) {
            const child = parent.children[i];
            if (child.objectName === "notificationRepeater") {
                return child;
            }
            const found = findRepeater(child);
            if (found) {
                return found;
            }
        }
        return null;
    }

    function ensureVisible() {
        if (flatNavigation.length === 0 || selectedFlatIndex >= flatNavigation.length || !listView)
            return;
        const currentItem = flatNavigation[selectedFlatIndex];

        if (keyboardNavigationActive && currentItem && currentItem.groupIndex >= 0) {
            if (currentItem.type === "notification") {
                const groupDelegate = listView.itemAtIndex(currentItem.groupIndex);
                if (groupDelegate && groupDelegate.children && groupDelegate.children.length > 0) {
                    const notificationCard = groupDelegate.children[0];
                    const repeater = findRepeater(notificationCard);

                    if (repeater && currentItem.notificationIndex < repeater.count) {
                        const notificationItem = repeater.itemAt(currentItem.notificationIndex);
                        if (notificationItem) {
                            const itemPos = notificationItem.mapToItem(listView.contentItem, 0, 0);
                            const itemY = itemPos.y;
                            const itemHeight = notificationItem.height;

                            const viewportTop = listView.contentY;
                            const viewportBottom = listView.contentY + listView.height;

                            if (itemY < viewportTop) {
                                listView.contentY = itemY - 20;
                            } else if (itemY + itemHeight > viewportBottom) {
                                listView.contentY = itemY + itemHeight - listView.height + 20;
                            }
                        }
                    }
                }
            } else {
                listView.positionViewAtIndex(currentItem.groupIndex, ListView.Contain);
            }

            listView.forceLayout();
        }
    }

    function handleKey(event) {
        if ((event.key === Qt.Key_Delete || event.key === Qt.Key_Backspace) && (event.modifiers & Qt.ShiftModifier)) {
            NotificationService.clearAllNotifications();
            rebuildFlatNavigation();
            if (flatNavigation.length === 0) {
                keyboardNavigationActive = false;
                if (listView) {
                    listView.keyboardActive = false;
                }
            } else {
                selectedFlatIndex = 0;
                updateSelectedIdFromIndex();
            }
            selectionVersion++;
            event.accepted = true;
            return;
        }

        if (event.key === Qt.Key_Escape) {
            if (keyboardNavigationActive) {
                keyboardNavigationActive = false;
                event.accepted = true;
            } else {
                if (onClose)
                    onClose();
                event.accepted = true;
            }
        } else if (event.key === Qt.Key_Down || event.key === 16777237) {
            if (!keyboardNavigationActive) {
                keyboardNavigationActive = true;
                rebuildFlatNavigation(); // Ensure we have fresh navigation data
                selectedFlatIndex = 0;
                updateSelectedIdFromIndex();
                // Set keyboardActive on listView to show highlight
                if (listView) {
                    listView.keyboardActive = true;
                }
                selectionVersion++;
                ensureVisible();
                event.accepted = true;
            } else {
                selectNext();
                event.accepted = true;
            }
        } else if (event.key === Qt.Key_Up || event.key === 16777235) {
            if (!keyboardNavigationActive) {
                keyboardNavigationActive = true;
                rebuildFlatNavigation(); // Ensure we have fresh navigation data
                selectedFlatIndex = 0;
                updateSelectedIdFromIndex();
                // Set keyboardActive on listView to show highlight
                if (listView) {
                    listView.keyboardActive = true;
                }
                selectionVersion++;
                ensureVisible();
                event.accepted = true;
            } else if (selectedFlatIndex === 0) {
                keyboardNavigationActive = false;
                // Reset keyboardActive when navigation is disabled
                if (listView) {
                    listView.keyboardActive = false;
                }
                selectionVersion++;
                event.accepted = true;
                return;
            } else {
                selectPrevious();
                event.accepted = true;
            }
        } else if (event.key === Qt.Key_N && event.modifiers & Qt.ControlModifier) {
            if (!keyboardNavigationActive) {
                keyboardNavigationActive = true;
                rebuildFlatNavigation();
                selectedFlatIndex = 0;
                updateSelectedIdFromIndex();
                if (listView) {
                    listView.keyboardActive = true;
                }
                selectionVersion++;
                ensureVisible();
            } else {
                selectNext();
            }
            event.accepted = true;
        } else if (event.key === Qt.Key_P && event.modifiers & Qt.ControlModifier) {
            if (!keyboardNavigationActive) {
                keyboardNavigationActive = true;
                rebuildFlatNavigation();
                selectedFlatIndex = 0;
                updateSelectedIdFromIndex();
                if (listView) {
                    listView.keyboardActive = true;
                }
                selectionVersion++;
                ensureVisible();
            } else if (selectedFlatIndex === 0) {
                keyboardNavigationActive = false;
                if (listView) {
                    listView.keyboardActive = false;
                }
                selectionVersion++;
            } else {
                selectPrevious();
            }
            event.accepted = true;
        } else if (event.key === Qt.Key_J && event.modifiers & Qt.ControlModifier) {
            if (!keyboardNavigationActive) {
                keyboardNavigationActive = true;
                rebuildFlatNavigation();
                selectedFlatIndex = 0;
                updateSelectedIdFromIndex();
                if (listView) {
                    listView.keyboardActive = true;
                }
                selectionVersion++;
                ensureVisible();
            } else {
                selectNext();
            }
            event.accepted = true;
        } else if (event.key === Qt.Key_K && event.modifiers & Qt.ControlModifier) {
            if (!keyboardNavigationActive) {
                keyboardNavigationActive = true;
                rebuildFlatNavigation();
                selectedFlatIndex = 0;
                updateSelectedIdFromIndex();
                if (listView) {
                    listView.keyboardActive = true;
                }
                selectionVersion++;
                ensureVisible();
            } else if (selectedFlatIndex === 0) {
                keyboardNavigationActive = false;
                if (listView) {
                    listView.keyboardActive = false;
                }
                selectionVersion++;
            } else {
                selectPrevious();
            }
            event.accepted = true;
        } else if (keyboardNavigationActive) {
            if (event.key === Qt.Key_Space) {
                toggleGroupExpanded();
                event.accepted = true;
            } else if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
                handleEnterKey();
                event.accepted = true;
            } else if (event.key === Qt.Key_E) {
                toggleTextExpanded();
                event.accepted = true;
            } else if (event.key === Qt.Key_Delete || event.key === Qt.Key_Backspace) {
                clearSelected();
                event.accepted = true;
            } else if (event.key === Qt.Key_Tab) {
                selectNext();
                event.accepted = true;
            } else if (event.key === Qt.Key_Backtab) {
                selectPrevious();
                event.accepted = true;
            } else if (event.key >= Qt.Key_1 && event.key <= Qt.Key_9) {
                const actionIndex = event.key - Qt.Key_1;
                executeAction(actionIndex);
                event.accepted = true;
            }
        }

        if (event.key === Qt.Key_F10) {
            showKeyboardHints = !showKeyboardHints;
            event.accepted = true;
        }
    }

    // Get current selection info for UI
    function getCurrentSelection() {
        if (!keyboardNavigationActive || selectedFlatIndex < 0 || selectedFlatIndex >= flatNavigation.length) {
            return {
                "type": "",
                "groupIndex": -1,
                "notificationIndex": -1
            };
        }
        const result = flatNavigation[selectedFlatIndex] || {
            "type": "",
            "groupIndex": -1,
            "notificationIndex": -1
        };
        return result;
    }
}