Compare commits

...

2 commits

Author SHA1 Message Date
4566e0d449
chore: bump quickshell version 2024-12-21 14:09:11 +01:00
3fb7f739e2
feat: add clear all button for notifications 2024-12-21 14:08:32 +01:00
5 changed files with 71 additions and 44 deletions

14
flake.lock generated
View file

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1729880355, "lastModified": 1734424634,
"narHash": "sha256-RP+OQ6koQQLX5nw0NmcDrzvGL8HDLnyXt/jHhL1jwjM=", "narHash": "sha256-cHar1vqHOOyC7f1+tVycPoWTfKIaqkoe1Q6TnKzuti4=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "18536bf04cd71abd345f9579158841376fdd0c5a", "rev": "d3c42f187194c26d9f0309a8ecc469d6c878ce33",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1732449022, "lastModified": 1734739124,
"narHash": "sha256-cqjfBI0eUZw2CyKCa/Wzywbv7+ld6yKVdyOLbh0LMrE=", "narHash": "sha256-IixrzTK4Xzc51BC+6hh0HUm/i9SXcYJaIYAN883ErzE=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "31adcaac7662d6c7fbbc901ba11e0d95f0c7fc56", "rev": "2f194b78949ccf3a8011c58f7eb39324ff936443",
"revCount": 420, "revCount": 442,
"type": "git", "type": "git",
"url": "https://git.outfoxxed.me/quickshell/quickshell" "url": "https://git.outfoxxed.me/quickshell/quickshell"
}, },

View file

@ -31,6 +31,13 @@ Singleton {
property alias list: server.trackedNotifications 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 incomingRemoved(id: int)
signal incomingAdded(id: Notification) signal incomingAdded(id: Notification)
} }

View file

@ -43,6 +43,7 @@ Singleton {
return day ? "weather-few-clouds" : "weather-few-clouds-night"; return day ? "weather-few-clouds" : "weather-few-clouds-night";
case "122": case "122":
return "weather-overcast"; return "weather-overcast";
case "176":
case "296": case "296":
return day ? "weather-showers-scattered" : "weather-showers-scattered-night"; return day ? "weather-showers-scattered" : "weather-showers-scattered-night";
default: default:

View file

@ -1,53 +1,71 @@
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import "../../provider" import "../../provider"
import "../../base"
ColumnLayout {
Layout.preferredHeight: 1000
ListView {
id: popupcol
Layout.fillHeight: true Layout.fillHeight: true
Layout.fillWidth: true Layout.fillWidth: true
Layout.preferredHeight: 1000
spacing: 10
width: parent.width width: parent.width
Component.onCompleted: () => {}
model: Notifications.list BButton {
width: 30
delegate: NotificationToast { height: 30
id: toast onClicked: () => {
Notifications.clearAll();
required property var modelData
required property int index
notif: modelData
width: ListView.view.width
onClose: {
toast.notif.dismiss();
} }
Layout.alignment: Qt.AlignRight
} }
addDisplaced: Transition { ListView {
NumberAnimation { id: popupcol
properties: "x,y" Layout.fillHeight: true
duration: 100 Layout.fillWidth: true
}
} spacing: 10
remove: Transition { width: parent.width
PropertyAction {
property: "ListView.delayRemove" model: Notifications.list
value: true
} delegate: NotificationToast {
ParallelAnimation { id: toast
NumberAnimation {
property: "opacity" required property var modelData
to: 0 required property int index
duration: 200
notif: modelData
width: ListView.view.width
onClose: {
toast.notif.dismiss();
} }
} }
PropertyAction {
property: "ListView.delayRemove" addDisplaced: Transition {
value: true 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
}
} }
} }
} }

View file

@ -136,6 +136,7 @@ MouseArea {
} }
} }
} }
GridLayout { GridLayout {
id: actions id: actions
width: parent.width width: parent.width