mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
202 lines
6.8 KiB
QML
202 lines
6.8 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Effects
|
|
import Quickshell
|
|
import Quickshell.Wayland
|
|
import Quickshell.Widgets
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
import qs.Modules.Notifications.Center
|
|
|
|
DankPopout {
|
|
id: root
|
|
|
|
property bool notificationHistoryVisible: false
|
|
property var triggerScreen: null
|
|
|
|
NotificationKeyboardController {
|
|
id: keyboardController
|
|
listView: null
|
|
isOpen: notificationHistoryVisible
|
|
onClose: () => {
|
|
notificationHistoryVisible = false
|
|
}
|
|
}
|
|
|
|
function setTriggerPosition(x, y, width, section, screen) {
|
|
triggerX = x
|
|
triggerY = y
|
|
triggerWidth = width
|
|
triggerSection = section
|
|
triggerScreen = screen
|
|
}
|
|
|
|
popupWidth: 400
|
|
popupHeight: contentLoader.item ? contentLoader.item.implicitHeight : 400
|
|
triggerX: 0
|
|
triggerY: 0
|
|
triggerWidth: 40
|
|
positioning: ""
|
|
screen: triggerScreen
|
|
shouldBeVisible: notificationHistoryVisible
|
|
visible: shouldBeVisible
|
|
|
|
onNotificationHistoryVisibleChanged: {
|
|
if (notificationHistoryVisible) {
|
|
open()
|
|
} else {
|
|
close()
|
|
}
|
|
}
|
|
|
|
onShouldBeVisibleChanged: {
|
|
if (shouldBeVisible) {
|
|
NotificationService.onOverlayOpen()
|
|
Qt.callLater(() => {
|
|
if (contentLoader.item) {
|
|
contentLoader.item.externalKeyboardController = keyboardController
|
|
|
|
const notificationList = findChild(contentLoader.item, "notificationList")
|
|
const notificationHeader = findChild(contentLoader.item, "notificationHeader")
|
|
|
|
if (notificationList) {
|
|
keyboardController.listView = notificationList
|
|
notificationList.keyboardController = keyboardController
|
|
}
|
|
if (notificationHeader) {
|
|
notificationHeader.keyboardController = keyboardController
|
|
}
|
|
|
|
keyboardController.reset()
|
|
keyboardController.rebuildFlatNavigation()
|
|
}
|
|
})
|
|
} else {
|
|
NotificationService.onOverlayClose()
|
|
keyboardController.keyboardNavigationActive = false
|
|
}
|
|
}
|
|
|
|
function findChild(parent, objectName) {
|
|
if (parent.objectName === objectName) {
|
|
return parent
|
|
}
|
|
for (let i = 0; i < parent.children.length; i++) {
|
|
const child = parent.children[i]
|
|
const result = findChild(child, objectName)
|
|
if (result) {
|
|
return result
|
|
}
|
|
}
|
|
return null
|
|
}
|
|
|
|
content: Component {
|
|
Rectangle {
|
|
id: notificationContent
|
|
|
|
property var externalKeyboardController: null
|
|
property real cachedHeaderHeight: 32
|
|
|
|
implicitHeight: {
|
|
let baseHeight = Theme.spacingL * 2
|
|
baseHeight += cachedHeaderHeight
|
|
baseHeight += (notificationSettings.expanded ? notificationSettings.contentHeight : 0)
|
|
baseHeight += Theme.spacingM * 2
|
|
let listHeight = notificationList.listContentHeight
|
|
if (NotificationService.groupedNotifications.length === 0) {
|
|
listHeight = 200
|
|
}
|
|
baseHeight += Math.min(listHeight, 600)
|
|
const maxHeight = root.screen ? root.screen.height * 0.8 : Screen.height * 0.8
|
|
return Math.max(300, Math.min(baseHeight, maxHeight))
|
|
}
|
|
|
|
color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
|
radius: Theme.cornerRadius
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)
|
|
border.width: 0
|
|
focus: true
|
|
|
|
Component.onCompleted: {
|
|
if (root.shouldBeVisible) {
|
|
forceActiveFocus()
|
|
}
|
|
}
|
|
|
|
Keys.onPressed: event => {
|
|
if (event.key === Qt.Key_Escape) {
|
|
root.close()
|
|
event.accepted = true
|
|
} else if (externalKeyboardController) {
|
|
externalKeyboardController.handleKey(event)
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
function onShouldBeVisibleChanged() {
|
|
if (root.shouldBeVisible) {
|
|
Qt.callLater(() => {
|
|
notificationContent.forceActiveFocus()
|
|
})
|
|
} else {
|
|
notificationContent.focus = false
|
|
}
|
|
}
|
|
target: root
|
|
}
|
|
|
|
FocusScope {
|
|
id: contentColumn
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
focus: true
|
|
|
|
Column {
|
|
id: contentColumnInner
|
|
anchors.fill: parent
|
|
spacing: Theme.spacingM
|
|
|
|
NotificationHeader {
|
|
id: notificationHeader
|
|
objectName: "notificationHeader"
|
|
onHeightChanged: notificationContent.cachedHeaderHeight = height
|
|
}
|
|
|
|
NotificationSettings {
|
|
id: notificationSettings
|
|
expanded: notificationHeader.showSettings
|
|
}
|
|
|
|
KeyboardNavigatedNotificationList {
|
|
id: notificationList
|
|
objectName: "notificationList"
|
|
|
|
width: parent.width
|
|
height: parent.height - notificationContent.cachedHeaderHeight - notificationSettings.height - contentColumnInner.spacing * 2
|
|
}
|
|
}
|
|
}
|
|
|
|
NotificationKeyboardHints {
|
|
id: keyboardHints
|
|
anchors.bottom: parent.bottom
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.margins: Theme.spacingL
|
|
showHints: (externalKeyboardController && externalKeyboardController.showKeyboardHints) || false
|
|
z: 200
|
|
}
|
|
|
|
Behavior on implicitHeight {
|
|
NumberAnimation {
|
|
duration: 180
|
|
easing.type: Easing.OutQuart
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|