feat: add clear all button for notifications
This commit is contained in:
parent
9aa6046cdd
commit
965cb228e7
3 changed files with 63 additions and 37 deletions
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,6 +136,7 @@ MouseArea {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
GridLayout {
|
GridLayout {
|
||||||
id: actions
|
id: actions
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
Loading…
Add table
Reference in a new issue