This is a projection, not a development branch. The tree above was constructed from the internal source named below under a manifest that decides which paths may leave, then scanned as a whole tree rather than as a series of patches, and only then published. Public history starts here because the history before it was not admissible, and neither was the tree. What used to stand in this repository included a rescue copy of another machine, a directory of phone handoffs, deployment wired to one house, and a submodule pointing at a forge no stranger can reach. None of that was ever the product. It stays in the private forge, which is allowed to hold the whole working organism, and this is what was deliberately sent out instead. Three mechanisms produced this tree, in decreasing order of trust. A top-level path the manifest does not name never arrives at all, which is the one that catches directories nobody has thought of yet. Named internal files inside admitted roots are dropped. A short, reviewed table replaces deployment defaults that a public build must not carry -- an endpoint aimed at one LAN, a VPN profile belonging to one phone, packaging built from one checkout path. Everything after this commit is an ordinary publication with the same three trailers, so a force push stops being routine and starts meaning that something deliberate happened. The trailers bind the projection to its source without pretending the public SHA is the private one: same lineage, different tree, and the record says so. Source-Sha: 8f27b1e76a8fef560a336aba18e6990713ff1047 Policy-Sha: 6b261d2f3e6e1fb19874846ba4bb1dfe15565d25b8618c1c1afba0419c101d27 Tree-Digest: 18ec3563c5e5ef9a414993a9f6734b251ff9ed3cd56eebdd6cac01e45c6e3067
259 lines
10 KiB
QML
259 lines
10 KiB
QML
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.functions
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import Quickshell.Services.Notifications
|
|
|
|
/**
|
|
* A group of notifications from the same app.
|
|
* Similar to Android's notifications
|
|
*/
|
|
MouseArea { // Notification group area
|
|
id: root
|
|
property var notificationGroup
|
|
property var notifications: notificationGroup?.notifications ?? []
|
|
property int notificationCount: notifications.length
|
|
property bool multipleNotifications: notificationCount > 1
|
|
property bool expanded: false
|
|
property bool popup: false
|
|
property real padding: 10
|
|
implicitHeight: background.implicitHeight
|
|
|
|
property real dragConfirmThreshold: 70 // Drag further to discard notification
|
|
property real dismissOvershoot: 20 // Account for gaps and bouncy animations
|
|
property var qmlParent: root?.parent?.parent // There's something between this and the parent ListView
|
|
property var parentDragIndex: qmlParent?.dragIndex
|
|
property var parentDragDistance: qmlParent?.dragDistance
|
|
property var dragIndexDiff: Math.abs(parentDragIndex - index)
|
|
property real xOffset: dragIndexDiff == 0 ? parentDragDistance :
|
|
Math.abs(parentDragDistance) > dragConfirmThreshold ? 0 :
|
|
dragIndexDiff == 1 ? (parentDragDistance * 0.3) :
|
|
dragIndexDiff == 2 ? (parentDragDistance * 0.1) : 0
|
|
|
|
function destroyWithAnimation(left = false) {
|
|
root.qmlParent.resetDrag()
|
|
background.anchors.leftMargin = background.anchors.leftMargin; // Break binding
|
|
destroyAnimation.left = left;
|
|
destroyAnimation.running = true;
|
|
}
|
|
|
|
hoverEnabled: true
|
|
onContainsMouseChanged: {
|
|
if (!root.popup) return;
|
|
if (root.containsMouse) root.notifications.forEach(notif => {
|
|
Notifications.cancelTimeout(notif.notificationId);
|
|
});
|
|
else root.notifications.forEach(notif => {
|
|
Notifications.timeoutNotification(notif.notificationId);
|
|
});
|
|
}
|
|
|
|
SequentialAnimation { // Drag finish animation
|
|
id: destroyAnimation
|
|
property bool left: true
|
|
running: false
|
|
|
|
NumberAnimation {
|
|
target: background.anchors
|
|
property: "leftMargin"
|
|
to: (root.width + root.dismissOvershoot) * (destroyAnimation.left ? -1 : 1)
|
|
duration: Appearance.animation.elementMove.duration
|
|
easing.type: Appearance.animation.elementMove.type
|
|
easing.bezierCurve: Appearance.animation.elementMove.bezierCurve
|
|
}
|
|
onFinished: () => {
|
|
root.notifications.forEach((notif) => {
|
|
Qt.callLater(() => {
|
|
Notifications.discardNotification(notif.notificationId);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
function toggleExpanded() {
|
|
if (expanded) implicitHeightAnim.enabled = true;
|
|
else implicitHeightAnim.enabled = false;
|
|
root.expanded = !root.expanded;
|
|
}
|
|
|
|
DragManager { // Drag manager
|
|
id: dragManager
|
|
anchors.fill: parent
|
|
interactive: !expanded
|
|
automaticallyReset: false
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton | Qt.MiddleButton
|
|
|
|
onPressed: {
|
|
if (mouse.button === Qt.RightButton)
|
|
root.toggleExpanded();
|
|
}
|
|
|
|
onClicked: (mouse) => {
|
|
if (mouse.button === Qt.MiddleButton)
|
|
root.destroyWithAnimation();
|
|
}
|
|
|
|
onDraggingChanged: () => {
|
|
if (dragging) {
|
|
root.qmlParent.dragIndex = root.index ?? root.parent.children.indexOf(root);
|
|
}
|
|
}
|
|
|
|
onDragDiffXChanged: () => {
|
|
root.qmlParent.dragDistance = dragDiffX;
|
|
}
|
|
|
|
onDragReleased: (diffX, diffY) => {
|
|
if (Math.abs(diffX) > root.dragConfirmThreshold)
|
|
root.destroyWithAnimation(diffX < 0);
|
|
else
|
|
dragManager.resetDrag();
|
|
}
|
|
}
|
|
|
|
StyledRectangularShadow {
|
|
target: background
|
|
visible: popup
|
|
}
|
|
Rectangle { // Background of the notification
|
|
id: background
|
|
anchors.left: parent.left
|
|
width: parent.width
|
|
color: popup ? Appearance.colors.colBackgroundSurfaceContainer : Appearance.colors.colLayer2
|
|
radius: Appearance.rounding.normal
|
|
anchors.leftMargin: root.xOffset
|
|
|
|
Behavior on anchors.leftMargin {
|
|
enabled: !dragManager.dragging
|
|
NumberAnimation {
|
|
duration: Appearance.animation.elementMove.duration
|
|
easing.type: Appearance.animation.elementMove.type
|
|
easing.bezierCurve: Appearance.animationCurves.expressiveFastSpatial
|
|
}
|
|
}
|
|
|
|
clip: true
|
|
implicitHeight: root.expanded ?
|
|
row.implicitHeight + padding * 2 :
|
|
Math.min(80, row.implicitHeight + padding * 2)
|
|
|
|
Behavior on implicitHeight {
|
|
id: implicitHeightAnim
|
|
animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
|
|
}
|
|
|
|
RowLayout { // Left column for icon, right column for content
|
|
id: row
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.margins: root.padding
|
|
spacing: 10
|
|
|
|
NotificationAppIcon { // Icons
|
|
Layout.alignment: Qt.AlignTop
|
|
Layout.fillWidth: false
|
|
image: root?.multipleNotifications ? "" : notificationGroup?.notifications[0]?.image ?? ""
|
|
appIcon: root.notificationGroup?.appIcon
|
|
summary: root.notificationGroup?.notifications[root.notificationCount - 1]?.summary
|
|
urgency: root.notifications.some(n => n.urgency === NotificationUrgency.Critical.toString()) ?
|
|
NotificationUrgency.Critical : NotificationUrgency.Normal
|
|
}
|
|
|
|
ColumnLayout { // Content
|
|
Layout.fillWidth: true
|
|
spacing: expanded ? (root.multipleNotifications ?
|
|
(notificationGroup?.notifications[root.notificationCount - 1].image != "") ? 35 :
|
|
5 : 0) : 0
|
|
// spacing: 00
|
|
Behavior on spacing {
|
|
animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
|
|
}
|
|
|
|
Item { // App name (or summary when there's only 1 notif) and time
|
|
id: topRow
|
|
// spacing: 0
|
|
Layout.fillWidth: true
|
|
property real fontSize: Appearance.font.pixelSize.smaller
|
|
property bool showAppName: root.multipleNotifications
|
|
implicitHeight: Math.max(topTextRow.implicitHeight, expandButton.implicitHeight)
|
|
|
|
RowLayout {
|
|
id: topTextRow
|
|
anchors.left: parent.left
|
|
anchors.right: expandButton.left
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: 5
|
|
StyledText {
|
|
id: appName
|
|
elide: Text.ElideRight
|
|
Layout.fillWidth: true
|
|
text: (topRow.showAppName ?
|
|
notificationGroup?.appName :
|
|
notificationGroup?.notifications[0]?.summary) || ""
|
|
font.pixelSize: topRow.showAppName ?
|
|
topRow.fontSize :
|
|
Appearance.font.pixelSize.small
|
|
color: topRow.showAppName ?
|
|
Appearance.colors.colSubtext :
|
|
Appearance.colors.colOnLayer2
|
|
}
|
|
StyledText {
|
|
id: timeText
|
|
// Layout.fillWidth: true
|
|
Layout.rightMargin: 10
|
|
horizontalAlignment: Text.AlignLeft
|
|
text: NotificationUtils.getFriendlyNotifTimeString(notificationGroup?.time)
|
|
font.pixelSize: topRow.fontSize
|
|
color: Appearance.colors.colSubtext
|
|
}
|
|
}
|
|
NotificationGroupExpandButton {
|
|
id: expandButton
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
count: root.notificationCount
|
|
expanded: root.expanded
|
|
fontSize: topRow.fontSize
|
|
onClicked: { root.toggleExpanded() }
|
|
altAction: () => { root.toggleExpanded() }
|
|
|
|
StyledToolTip {
|
|
text: Translation.tr("Tip: right-clicking a group\nalso expands it")
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledListView { // Notification body (expanded)
|
|
id: notificationsColumn
|
|
implicitHeight: contentHeight
|
|
Layout.fillWidth: true
|
|
spacing: expanded ? 5 : 3
|
|
// clip: true
|
|
interactive: false
|
|
Behavior on spacing {
|
|
animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
|
|
}
|
|
model: ScriptModel {
|
|
values: root.expanded ? root.notifications.slice().reverse() :
|
|
root.notifications.slice().reverse().slice(0, 2)
|
|
}
|
|
delegate: NotificationItem {
|
|
required property int index
|
|
required property var modelData
|
|
notificationObject: modelData
|
|
expanded: root.expanded
|
|
onlyNotification: (root.notificationCount === 1)
|
|
opacity: (!root.expanded && index == 1 && root.notificationCount > 2) ? 0.5 : 1
|
|
visible: root.expanded || (index < 2)
|
|
anchors.left: parent?.left
|
|
anchors.right: parent?.right
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|