Compare commits
2 commits
965cb228e7
...
4566e0d449
Author | SHA1 | Date | |
---|---|---|---|
4566e0d449 | |||
3fb7f739e2 |
5 changed files with 71 additions and 44 deletions
14
flake.lock
generated
14
flake.lock
generated
|
@ -2,11 +2,11 @@
|
|||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1729880355,
|
||||
"narHash": "sha256-RP+OQ6koQQLX5nw0NmcDrzvGL8HDLnyXt/jHhL1jwjM=",
|
||||
"lastModified": 1734424634,
|
||||
"narHash": "sha256-cHar1vqHOOyC7f1+tVycPoWTfKIaqkoe1Q6TnKzuti4=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "18536bf04cd71abd345f9579158841376fdd0c5a",
|
||||
"rev": "d3c42f187194c26d9f0309a8ecc469d6c878ce33",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -23,11 +23,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1732449022,
|
||||
"narHash": "sha256-cqjfBI0eUZw2CyKCa/Wzywbv7+ld6yKVdyOLbh0LMrE=",
|
||||
"lastModified": 1734739124,
|
||||
"narHash": "sha256-IixrzTK4Xzc51BC+6hh0HUm/i9SXcYJaIYAN883ErzE=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "31adcaac7662d6c7fbbc901ba11e0d95f0c7fc56",
|
||||
"revCount": 420,
|
||||
"rev": "2f194b78949ccf3a8011c58f7eb39324ff936443",
|
||||
"revCount": 442,
|
||||
"type": "git",
|
||||
"url": "https://git.outfoxxed.me/quickshell/quickshell"
|
||||
},
|
||||
|
|
|
@ -31,6 +31,13 @@ Singleton {
|
|||
|
||||
property alias list: server.trackedNotifications
|
||||
|
||||
function clearAll() {
|
||||
const len = server.trackedNotifications.values.length;
|
||||
for (let i = 0; i < len; i++) {
|
||||
list.values[0].dismiss();
|
||||
}
|
||||
}
|
||||
|
||||
signal incomingRemoved(id: int)
|
||||
signal incomingAdded(id: Notification)
|
||||
}
|
||||
|
|
|
@ -43,6 +43,7 @@ Singleton {
|
|||
return day ? "weather-few-clouds" : "weather-few-clouds-night";
|
||||
case "122":
|
||||
return "weather-overcast";
|
||||
case "176":
|
||||
case "296":
|
||||
return day ? "weather-showers-scattered" : "weather-showers-scattered-night";
|
||||
default:
|
||||
|
|
|
@ -1,53 +1,71 @@
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import "../../provider"
|
||||
import "../../base"
|
||||
|
||||
ColumnLayout {
|
||||
Layout.preferredHeight: 1000
|
||||
|
||||
ListView {
|
||||
id: popupcol
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
Layout.preferredHeight: 1000
|
||||
spacing: 10
|
||||
|
||||
width: parent.width
|
||||
Component.onCompleted: () => {}
|
||||
|
||||
model: Notifications.list
|
||||
|
||||
delegate: NotificationToast {
|
||||
id: toast
|
||||
|
||||
required property var modelData
|
||||
required property int index
|
||||
|
||||
notif: modelData
|
||||
width: ListView.view.width
|
||||
|
||||
onClose: {
|
||||
toast.notif.dismiss();
|
||||
BButton {
|
||||
width: 30
|
||||
height: 30
|
||||
onClicked: () => {
|
||||
Notifications.clearAll();
|
||||
}
|
||||
Layout.alignment: Qt.AlignRight
|
||||
}
|
||||
|
||||
addDisplaced: Transition {
|
||||
NumberAnimation {
|
||||
properties: "x,y"
|
||||
duration: 100
|
||||
}
|
||||
}
|
||||
remove: Transition {
|
||||
PropertyAction {
|
||||
property: "ListView.delayRemove"
|
||||
value: true
|
||||
}
|
||||
ParallelAnimation {
|
||||
NumberAnimation {
|
||||
property: "opacity"
|
||||
to: 0
|
||||
duration: 200
|
||||
ListView {
|
||||
id: popupcol
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
|
||||
spacing: 10
|
||||
width: parent.width
|
||||
|
||||
model: Notifications.list
|
||||
|
||||
delegate: NotificationToast {
|
||||
id: toast
|
||||
|
||||
required property var modelData
|
||||
required property int index
|
||||
|
||||
notif: modelData
|
||||
width: ListView.view.width
|
||||
|
||||
onClose: {
|
||||
toast.notif.dismiss();
|
||||
}
|
||||
}
|
||||
PropertyAction {
|
||||
property: "ListView.delayRemove"
|
||||
value: true
|
||||
|
||||
addDisplaced: Transition {
|
||||
NumberAnimation {
|
||||
properties: "x,y"
|
||||
duration: 100
|
||||
}
|
||||
}
|
||||
remove: Transition {
|
||||
PropertyAction {
|
||||
property: "ListView.delayRemove"
|
||||
value: true
|
||||
}
|
||||
ParallelAnimation {
|
||||
NumberAnimation {
|
||||
property: "opacity"
|
||||
to: 0
|
||||
duration: 200
|
||||
}
|
||||
}
|
||||
PropertyAction {
|
||||
property: "ListView.delayRemove"
|
||||
value: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -136,6 +136,7 @@ MouseArea {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
GridLayout {
|
||||
id: actions
|
||||
width: parent.width
|
||||
|
|
Loading…
Add table
Reference in a new issue