mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-04 12:52:06 -04:00
commit051b7576f7Author: purian23 <purian23@gmail.com> Date: Sun Feb 15 16:38:45 2026 -0500 Height for realz commit7784488a61Author: purian23 <purian23@gmail.com> Date: Sun Feb 15 16:34:09 2026 -0500 Fix height and truncate text/URLs commit31b328d428Author: bbedward <bbedward@gmail.com> Date: Sun Feb 15 16:25:57 2026 -0500 notifications: handle URL encoding in markdown2html commitdbb04f74a2Author: bbedward <bbedward@gmail.com> Date: Sun Feb 15 16:10:20 2026 -0500 notifications: more comprehensive decoder commitb29c7192c2Author: bbedward <bbedward@gmail.com> Date: Sun Feb 15 15:51:37 2026 -0500 notifications: html unescape commit8a48fa11ecAuthor: purian23 <purian23@gmail.com> Date: Sun Feb 15 15:04:33 2026 -0500 Add expressive curve on init toast commitee124f5e04Author: purian23 <purian23@gmail.com> Date: Sun Feb 15 15:02:16 2026 -0500 Expressive curves on swipe & btn height commit0fce904635Author: purian23 <purian23@gmail.com> Date: Sun Feb 15 13:40:02 2026 -0500 Provide bottom button clearance commit00d3829999Author: bbedward <bbedward@gmail.com> Date: Sun Feb 15 13:24:31 2026 -0500 notifications: cleanup popup display logic commitfd05768059Author: purian23 <purian23@gmail.com> Date: Sun Feb 15 01:00:55 2026 -0500 Add Privacy Mode - Smoother notification expansions - Shadow & Privacy Toggles commit0dba11d845Author: purian23 <purian23@gmail.com> Date: Sat Feb 14 22:48:46 2026 -0500 Further M3 enhancements commit949c216964Author: purian23 <purian23@gmail.com> Date: Sat Feb 14 19:59:38 2026 -0500 Right-Click to set Rules on Notifications directly commit62bc25782cAuthor: bbedward <bbedward@gmail.com> Date: Fri Feb 13 21:44:27 2026 -0500 notifications: fix compact spacing, reveal header bar, add bottom center position, pointing hand cursor fix commited495d4396Author: purian23 <purian23@gmail.com> Date: Fri Feb 13 20:25:40 2026 -0500 Tighten init toast commitebe38322a0Author: purian23 <purian23@gmail.com> Date: Fri Feb 13 20:09:59 2026 -0500 Update more m3 baselines & spacing commitb1735bb701Author: purian23 <purian23@gmail.com> Date: Fri Feb 13 14:10:05 2026 -0500 Expand rules on-Click commit9f13546b4dAuthor: purian23 <purian23@gmail.com> Date: Fri Feb 13 12:59:29 2026 -0500 Add Notification Rules - Additional right-click ops - Allow for 3rd boy line on init notification popup commitbe133b73c7Author: purian23 <purian23@gmail.com> Date: Fri Feb 13 10:10:03 2026 -0500 Truncate long title in groups commit4fc275beadAuthor: bbedward <bbedward@gmail.com> Date: Thu Feb 12 23:27:34 2026 -0500 notification: expand/collapse animation adjustment commit00e6172a68Author: purian23 <purian23@gmail.com> Date: Thu Feb 12 22:50:11 2026 -0500 Fix global warnings commit0772f6deb7Author: purian23 <purian23@gmail.com> Date: Thu Feb 12 22:46:40 2026 -0500 Tweak expansion duration commit0ffeed3ff0Author: purian23 <purian23@gmail.com> Date: Thu Feb 12 22:16:16 2026 -0500 notifications: Update Material 3 baselines - New right-click to mute option - New independent Notification Animation settings
226 lines
7.0 KiB
QML
226 lines
7.0 KiB
QML
import QtQuick
|
|
import Quickshell.Hyprland
|
|
import Quickshell.Io
|
|
import qs.Common
|
|
import qs.Modals.Common
|
|
import qs.Modules.Notifications.Center
|
|
import qs.Services
|
|
|
|
DankModal {
|
|
id: notificationModal
|
|
|
|
layerNamespace: "dms:notification-center-modal"
|
|
|
|
HyprlandFocusGrab {
|
|
windows: [notificationModal.contentWindow]
|
|
active: notificationModal.useHyprlandFocusGrab && notificationModal.shouldHaveFocus
|
|
}
|
|
|
|
property bool notificationModalOpen: false
|
|
property var notificationListRef: null
|
|
property var historyListRef: null
|
|
property int currentTab: 0
|
|
|
|
property var notificationHeaderRef: null
|
|
|
|
function show() {
|
|
notificationModalOpen = true;
|
|
currentTab = 0;
|
|
NotificationService.onOverlayOpen();
|
|
open();
|
|
modalKeyboardController.reset();
|
|
if (modalKeyboardController && notificationListRef) {
|
|
modalKeyboardController.listView = notificationListRef;
|
|
modalKeyboardController.rebuildFlatNavigation();
|
|
|
|
Qt.callLater(() => {
|
|
modalKeyboardController.keyboardNavigationActive = true;
|
|
modalKeyboardController.selectedFlatIndex = 0;
|
|
modalKeyboardController.updateSelectedIdFromIndex();
|
|
if (notificationListRef) {
|
|
notificationListRef.keyboardActive = true;
|
|
notificationListRef.currentIndex = 0;
|
|
}
|
|
modalKeyboardController.selectionVersion++;
|
|
modalKeyboardController.ensureVisible();
|
|
});
|
|
}
|
|
}
|
|
|
|
function hide() {
|
|
notificationModalOpen = false;
|
|
NotificationService.onOverlayClose();
|
|
close();
|
|
modalKeyboardController.reset();
|
|
}
|
|
|
|
function toggle() {
|
|
if (shouldBeVisible) {
|
|
hide();
|
|
} else {
|
|
show();
|
|
}
|
|
}
|
|
|
|
function clearAll() {
|
|
NotificationService.clearAllNotifications();
|
|
}
|
|
|
|
function dismissAllPopups() {
|
|
NotificationService.dismissAllPopups();
|
|
}
|
|
|
|
modalWidth: Math.min(500, screenWidth - 48)
|
|
modalHeight: Math.min(700, screenHeight * 0.85)
|
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
|
visible: false
|
|
onBackgroundClicked: hide()
|
|
onOpened: () => {
|
|
Qt.callLater(() => modalFocusScope.forceActiveFocus());
|
|
}
|
|
onShouldBeVisibleChanged: shouldBeVisible => {
|
|
if (!shouldBeVisible) {
|
|
notificationModalOpen = false;
|
|
modalKeyboardController.reset();
|
|
NotificationService.onOverlayClose();
|
|
}
|
|
}
|
|
modalFocusScope.Keys.onPressed: event => {
|
|
if (event.key === Qt.Key_Escape) {
|
|
hide();
|
|
event.accepted = true;
|
|
return;
|
|
}
|
|
|
|
if (event.key === Qt.Key_Left) {
|
|
if (notificationHeaderRef && notificationHeaderRef.currentTab > 0) {
|
|
notificationHeaderRef.currentTab = 0;
|
|
event.accepted = true;
|
|
}
|
|
return;
|
|
}
|
|
if (event.key === Qt.Key_Right) {
|
|
if (notificationHeaderRef && notificationHeaderRef.currentTab === 0 && SettingsData.notificationHistoryEnabled) {
|
|
notificationHeaderRef.currentTab = 1;
|
|
event.accepted = true;
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (currentTab === 1 && historyListRef) {
|
|
historyListRef.handleKey(event);
|
|
return;
|
|
}
|
|
modalKeyboardController.handleKey(event);
|
|
}
|
|
|
|
NotificationKeyboardController {
|
|
id: modalKeyboardController
|
|
|
|
listView: null
|
|
isOpen: notificationModal.notificationModalOpen
|
|
onClose: () => notificationModal.hide()
|
|
}
|
|
|
|
IpcHandler {
|
|
function open(): string {
|
|
notificationModal.show();
|
|
return "NOTIFICATION_MODAL_OPEN_SUCCESS";
|
|
}
|
|
|
|
function close(): string {
|
|
notificationModal.hide();
|
|
return "NOTIFICATION_MODAL_CLOSE_SUCCESS";
|
|
}
|
|
|
|
function toggle(): string {
|
|
notificationModal.toggle();
|
|
return "NOTIFICATION_MODAL_TOGGLE_SUCCESS";
|
|
}
|
|
|
|
function toggleDoNotDisturb(): string {
|
|
SessionData.setDoNotDisturb(!SessionData.doNotDisturb);
|
|
|
|
return "NOTIFICATION_MODAL_TOGGLE_DND_SUCCESS";
|
|
}
|
|
|
|
function getDoNotDisturb(): bool {
|
|
return SessionData.doNotDisturb;
|
|
}
|
|
|
|
function clearAll(): string {
|
|
notificationModal.clearAll();
|
|
return "NOTIFICATION_MODAL_CLEAR_ALL_SUCCESS";
|
|
}
|
|
|
|
function dismissAllPopups(): string {
|
|
notificationModal.dismissAllPopups();
|
|
return "NOTIFICATION_MODAL_DISMISS_ALL_POPUPS_SUCCESS";
|
|
}
|
|
|
|
target: "notifications"
|
|
}
|
|
|
|
content: Component {
|
|
Item {
|
|
id: notificationKeyHandler
|
|
|
|
LayoutMirroring.enabled: I18n.isRtl
|
|
LayoutMirroring.childrenInherit: true
|
|
|
|
anchors.fill: parent
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
NotificationHeader {
|
|
id: notificationHeader
|
|
keyboardController: modalKeyboardController
|
|
onCurrentTabChanged: notificationModal.currentTab = currentTab
|
|
Component.onCompleted: notificationModal.notificationHeaderRef = notificationHeader
|
|
}
|
|
|
|
NotificationSettings {
|
|
id: notificationSettings
|
|
expanded: notificationHeader.showSettings
|
|
}
|
|
|
|
KeyboardNavigatedNotificationList {
|
|
id: notificationList
|
|
width: parent.width
|
|
height: parent.height - y
|
|
visible: notificationHeader.currentTab === 0
|
|
keyboardController: modalKeyboardController
|
|
Component.onCompleted: {
|
|
notificationModal.notificationListRef = notificationList;
|
|
if (modalKeyboardController) {
|
|
modalKeyboardController.listView = notificationList;
|
|
modalKeyboardController.rebuildFlatNavigation();
|
|
}
|
|
}
|
|
}
|
|
|
|
HistoryNotificationList {
|
|
id: historyList
|
|
width: parent.width
|
|
height: parent.height - y
|
|
visible: notificationHeader.currentTab === 1
|
|
Component.onCompleted: notificationModal.historyListRef = historyList
|
|
}
|
|
}
|
|
|
|
NotificationKeyboardHints {
|
|
id: keyboardHints
|
|
|
|
anchors.bottom: parent.bottom
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.margins: Theme.spacingL
|
|
showHints: notificationHeader.currentTab === 0 ? modalKeyboardController.showKeyboardHints : historyList.showKeyboardHints
|
|
}
|
|
}
|
|
}
|
|
}
|