mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 13:32:50 -05:00
862 lines
32 KiB
QML
862 lines
32 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Effects
|
|
import QtQuick.Shapes
|
|
import Quickshell
|
|
import Quickshell.Wayland
|
|
import Quickshell.Services.Notifications
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
PanelWindow {
|
|
id: win
|
|
|
|
WlrLayershell.namespace: "dms:notification-popup"
|
|
|
|
required property var notificationData
|
|
required property string notificationId
|
|
readonly property bool hasValidData: notificationData && notificationData.notification
|
|
property int screenY: 0
|
|
property bool exiting: false
|
|
property bool _isDestroying: false
|
|
property bool _finalized: false
|
|
readonly property string clearText: I18n.tr("Dismiss")
|
|
property bool descriptionExpanded: false
|
|
|
|
readonly property bool compactMode: SettingsData.notificationCompactMode
|
|
readonly property real cardPadding: compactMode ? Theme.spacingS : Theme.spacingM
|
|
readonly property real popupIconSize: compactMode ? 48 : 63
|
|
readonly property real contentSpacing: compactMode ? Theme.spacingXS : Theme.spacingS
|
|
readonly property real actionButtonHeight: compactMode ? 20 : 24
|
|
readonly property real collapsedContentHeight: popupIconSize
|
|
readonly property real basePopupHeight: cardPadding * 2 + collapsedContentHeight + actionButtonHeight + Theme.spacingS
|
|
|
|
signal entered
|
|
signal exitStarted
|
|
signal exitFinished
|
|
|
|
function startExit() {
|
|
if (exiting || _isDestroying) {
|
|
return;
|
|
}
|
|
exiting = true;
|
|
exitStarted();
|
|
exitAnim.restart();
|
|
exitWatchdog.restart();
|
|
if (NotificationService.removeFromVisibleNotifications)
|
|
NotificationService.removeFromVisibleNotifications(win.notificationData);
|
|
}
|
|
|
|
function forceExit() {
|
|
if (_isDestroying) {
|
|
return;
|
|
}
|
|
_isDestroying = true;
|
|
exiting = true;
|
|
visible = false;
|
|
exitWatchdog.stop();
|
|
finalizeExit("forced");
|
|
}
|
|
|
|
function finalizeExit(reason) {
|
|
if (_finalized) {
|
|
return;
|
|
}
|
|
|
|
_finalized = true;
|
|
_isDestroying = true;
|
|
exitWatchdog.stop();
|
|
wrapperConn.enabled = false;
|
|
wrapperConn.target = null;
|
|
win.exitFinished();
|
|
}
|
|
|
|
visible: !_finalized
|
|
WlrLayershell.layer: {
|
|
const envLayer = Quickshell.env("DMS_NOTIFICATION_LAYER");
|
|
if (envLayer) {
|
|
switch (envLayer) {
|
|
case "bottom":
|
|
return WlrLayershell.Bottom;
|
|
case "overlay":
|
|
return WlrLayershell.Overlay;
|
|
case "background":
|
|
return WlrLayershell.Background;
|
|
case "top":
|
|
return WlrLayershell.Top;
|
|
}
|
|
}
|
|
|
|
if (!notificationData)
|
|
return WlrLayershell.Top;
|
|
|
|
SettingsData.notificationOverlayEnabled;
|
|
|
|
const shouldUseOverlay = (SettingsData.notificationOverlayEnabled) || (notificationData.urgency === NotificationUrgency.Critical);
|
|
|
|
return shouldUseOverlay ? WlrLayershell.Overlay : WlrLayershell.Top;
|
|
}
|
|
WlrLayershell.exclusiveZone: -1
|
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.None
|
|
color: "transparent"
|
|
implicitWidth: 400
|
|
implicitHeight: {
|
|
if (!descriptionExpanded)
|
|
return basePopupHeight;
|
|
const bodyTextHeight = bodyText.contentHeight || 0;
|
|
const twoLineHeight = Theme.fontSizeSmall * 1.2 * 2;
|
|
if (bodyTextHeight > twoLineHeight + 2)
|
|
return basePopupHeight + bodyTextHeight - twoLineHeight;
|
|
return basePopupHeight;
|
|
}
|
|
onHasValidDataChanged: {
|
|
if (!hasValidData && !exiting && !_isDestroying) {
|
|
forceExit();
|
|
}
|
|
}
|
|
Component.onCompleted: {
|
|
if (hasValidData) {
|
|
Qt.callLater(() => enterX.restart());
|
|
} else {
|
|
forceExit();
|
|
}
|
|
}
|
|
onNotificationDataChanged: {
|
|
if (!_isDestroying) {
|
|
wrapperConn.target = win.notificationData || null;
|
|
notificationConn.target = (win.notificationData && win.notificationData.notification && win.notificationData.notification.Retainable) || null;
|
|
}
|
|
}
|
|
onEntered: {
|
|
if (!_isDestroying) {
|
|
enterDelay.start();
|
|
}
|
|
}
|
|
Component.onDestruction: {
|
|
_isDestroying = true;
|
|
exitWatchdog.stop();
|
|
if (notificationData && notificationData.timer) {
|
|
notificationData.timer.stop();
|
|
}
|
|
}
|
|
|
|
property bool isTopCenter: SettingsData.notificationPopupPosition === -1
|
|
|
|
anchors.top: isTopCenter || SettingsData.notificationPopupPosition === SettingsData.Position.Top || SettingsData.notificationPopupPosition === SettingsData.Position.Left
|
|
anchors.bottom: SettingsData.notificationPopupPosition === SettingsData.Position.Bottom || SettingsData.notificationPopupPosition === SettingsData.Position.Right
|
|
anchors.left: SettingsData.notificationPopupPosition === SettingsData.Position.Left || SettingsData.notificationPopupPosition === SettingsData.Position.Bottom
|
|
anchors.right: SettingsData.notificationPopupPosition === SettingsData.Position.Top || SettingsData.notificationPopupPosition === SettingsData.Position.Right
|
|
|
|
margins {
|
|
top: getTopMargin()
|
|
bottom: getBottomMargin()
|
|
left: getLeftMargin()
|
|
right: getRightMargin()
|
|
}
|
|
|
|
function getBarInfo() {
|
|
if (!screen)
|
|
return {
|
|
topBar: 0,
|
|
bottomBar: 0,
|
|
leftBar: 0,
|
|
rightBar: 0
|
|
};
|
|
return SettingsData.getAdjacentBarInfo(screen, SettingsData.notificationPopupPosition, {
|
|
id: "notification-popup",
|
|
screenPreferences: [screen.name],
|
|
autoHide: false
|
|
});
|
|
}
|
|
|
|
function getTopMargin() {
|
|
const popupPos = SettingsData.notificationPopupPosition;
|
|
const isTop = isTopCenter || popupPos === SettingsData.Position.Top || popupPos === SettingsData.Position.Left;
|
|
if (!isTop)
|
|
return 0;
|
|
|
|
const barInfo = getBarInfo();
|
|
const base = barInfo.topBar > 0 ? barInfo.topBar : Theme.popupDistance;
|
|
return base + screenY;
|
|
}
|
|
|
|
function getBottomMargin() {
|
|
const popupPos = SettingsData.notificationPopupPosition;
|
|
const isBottom = popupPos === SettingsData.Position.Bottom || popupPos === SettingsData.Position.Right;
|
|
if (!isBottom)
|
|
return 0;
|
|
|
|
const barInfo = getBarInfo();
|
|
const base = barInfo.bottomBar > 0 ? barInfo.bottomBar : Theme.popupDistance;
|
|
return base + screenY;
|
|
}
|
|
|
|
function getLeftMargin() {
|
|
if (isTopCenter)
|
|
return screen ? (screen.width - implicitWidth) / 2 : 0;
|
|
|
|
const popupPos = SettingsData.notificationPopupPosition;
|
|
const isLeft = popupPos === SettingsData.Position.Left || popupPos === SettingsData.Position.Bottom;
|
|
if (!isLeft)
|
|
return 0;
|
|
|
|
const barInfo = getBarInfo();
|
|
return barInfo.leftBar > 0 ? barInfo.leftBar : Theme.popupDistance;
|
|
}
|
|
|
|
function getRightMargin() {
|
|
if (isTopCenter)
|
|
return 0;
|
|
|
|
const popupPos = SettingsData.notificationPopupPosition;
|
|
const isRight = popupPos === SettingsData.Position.Top || popupPos === SettingsData.Position.Right;
|
|
if (!isRight)
|
|
return 0;
|
|
|
|
const barInfo = getBarInfo();
|
|
return barInfo.rightBar > 0 ? barInfo.rightBar : Theme.popupDistance;
|
|
}
|
|
|
|
readonly property bool screenValid: win.screen && !_isDestroying
|
|
readonly property real dpr: screenValid ? CompositorService.getScreenScale(win.screen) : 1
|
|
readonly property real alignedWidth: Theme.px(implicitWidth, dpr)
|
|
readonly property real alignedHeight: Theme.px(implicitHeight, dpr)
|
|
|
|
Item {
|
|
id: content
|
|
|
|
x: Theme.snap((win.width - alignedWidth) / 2, dpr)
|
|
y: Theme.snap((win.height - alignedHeight) / 2, dpr)
|
|
width: alignedWidth
|
|
height: alignedHeight
|
|
visible: !win._finalized
|
|
|
|
property real swipeOffset: 0
|
|
readonly property real dismissThreshold: isTopCenter ? height * 0.4 : width * 0.35
|
|
readonly property bool swipeActive: swipeDragHandler.active
|
|
property bool swipeDismissing: false
|
|
|
|
property real shadowBlurPx: 10
|
|
property real shadowSpreadPx: 0
|
|
property real shadowBaseAlpha: 0.60
|
|
readonly property real popupSurfaceAlpha: SettingsData.popupTransparency
|
|
readonly property real effectiveShadowAlpha: Math.max(0, Math.min(1, shadowBaseAlpha * popupSurfaceAlpha))
|
|
|
|
Item {
|
|
id: bgShadowLayer
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.snap(4, win.dpr)
|
|
layer.enabled: !win._isDestroying && win.screenValid
|
|
layer.smooth: false
|
|
layer.textureSize: Qt.size(Math.round(width * win.dpr), Math.round(height * win.dpr))
|
|
layer.textureMirroring: ShaderEffectSource.MirrorVertically
|
|
|
|
readonly property int blurMax: 64
|
|
|
|
layer.effect: MultiEffect {
|
|
id: shadowFx
|
|
autoPaddingEnabled: true
|
|
shadowEnabled: true
|
|
blurEnabled: false
|
|
maskEnabled: false
|
|
shadowBlur: Math.max(0, Math.min(1, content.shadowBlurPx / bgShadowLayer.blurMax))
|
|
shadowScale: 1 + (2 * content.shadowSpreadPx) / Math.max(1, Math.min(bgShadowLayer.width, bgShadowLayer.height))
|
|
shadowColor: {
|
|
const baseColor = Theme.isLightMode ? Qt.rgba(0, 0, 0, 1) : Theme.surfaceContainerHighest;
|
|
return Theme.withAlpha(baseColor, content.effectiveShadowAlpha);
|
|
}
|
|
}
|
|
|
|
Shape {
|
|
id: backgroundShape
|
|
anchors.fill: parent
|
|
preferredRendererType: Shape.CurveRenderer
|
|
|
|
readonly property real radius: Theme.cornerRadius
|
|
readonly property color fillColor: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
|
readonly property color strokeColor: notificationData && notificationData.urgency === NotificationUrgency.Critical ? Theme.withAlpha(Theme.primary, 0.3) : Theme.withAlpha(Theme.outline, 0.08)
|
|
readonly property real strokeWidth: notificationData && notificationData.urgency === NotificationUrgency.Critical ? 2 : 0
|
|
|
|
ShapePath {
|
|
fillColor: backgroundShape.fillColor
|
|
strokeColor: backgroundShape.strokeColor
|
|
strokeWidth: backgroundShape.strokeWidth
|
|
|
|
startX: backgroundShape.radius
|
|
startY: 0
|
|
|
|
PathLine {
|
|
x: backgroundShape.width - backgroundShape.radius
|
|
y: 0
|
|
}
|
|
PathQuad {
|
|
x: backgroundShape.width
|
|
y: backgroundShape.radius
|
|
controlX: backgroundShape.width
|
|
controlY: 0
|
|
}
|
|
PathLine {
|
|
x: backgroundShape.width
|
|
y: backgroundShape.height - backgroundShape.radius
|
|
}
|
|
PathQuad {
|
|
x: backgroundShape.width - backgroundShape.radius
|
|
y: backgroundShape.height
|
|
controlX: backgroundShape.width
|
|
controlY: backgroundShape.height
|
|
}
|
|
PathLine {
|
|
x: backgroundShape.radius
|
|
y: backgroundShape.height
|
|
}
|
|
PathQuad {
|
|
x: 0
|
|
y: backgroundShape.height - backgroundShape.radius
|
|
controlX: 0
|
|
controlY: backgroundShape.height
|
|
}
|
|
PathLine {
|
|
x: 0
|
|
y: backgroundShape.radius
|
|
}
|
|
PathQuad {
|
|
x: backgroundShape.radius
|
|
y: 0
|
|
controlX: 0
|
|
controlY: 0
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
radius: backgroundShape.radius
|
|
visible: notificationData && notificationData.urgency === NotificationUrgency.Critical
|
|
opacity: 1
|
|
clip: true
|
|
|
|
gradient: Gradient {
|
|
orientation: Gradient.Horizontal
|
|
|
|
GradientStop {
|
|
position: 0
|
|
color: Theme.primary
|
|
}
|
|
|
|
GradientStop {
|
|
position: 0.02
|
|
color: Theme.primary
|
|
}
|
|
|
|
GradientStop {
|
|
position: 0.021
|
|
color: "transparent"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: backgroundContainer
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.snap(4, win.dpr)
|
|
clip: true
|
|
|
|
LayoutMirroring.enabled: I18n.isRtl
|
|
LayoutMirroring.childrenInherit: true
|
|
|
|
Item {
|
|
id: notificationContent
|
|
|
|
readonly property real expandedTextHeight: bodyText.contentHeight || 0
|
|
readonly property real twoLineHeight: Theme.fontSizeSmall * 1.2 * 2
|
|
readonly property real extraHeight: (descriptionExpanded && expandedTextHeight > twoLineHeight + 2) ? (expandedTextHeight - twoLineHeight) : 0
|
|
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.topMargin: cardPadding
|
|
anchors.leftMargin: Theme.spacingL
|
|
anchors.rightMargin: Theme.spacingL + (compactMode ? 32 : 40)
|
|
height: collapsedContentHeight + extraHeight
|
|
|
|
DankCircularImage {
|
|
id: iconContainer
|
|
|
|
readonly property bool hasNotificationImage: notificationData && notificationData.image && notificationData.image !== ""
|
|
readonly property bool needsImagePersist: hasNotificationImage && notificationData.image.startsWith("image://qsimage/") && !notificationData.persistedImagePath
|
|
|
|
width: popupIconSize
|
|
height: popupIconSize
|
|
anchors.left: parent.left
|
|
anchors.top: parent.top
|
|
|
|
imageSource: {
|
|
if (!notificationData)
|
|
return "";
|
|
|
|
if (hasNotificationImage)
|
|
return notificationData.cleanImage || "";
|
|
|
|
if (notificationData.appIcon) {
|
|
const appIcon = notificationData.appIcon;
|
|
if (appIcon.startsWith("file://") || appIcon.startsWith("http://") || appIcon.startsWith("https://"))
|
|
return appIcon;
|
|
|
|
return Quickshell.iconPath(appIcon, true);
|
|
}
|
|
return "";
|
|
}
|
|
|
|
hasImage: hasNotificationImage
|
|
fallbackIcon: ""
|
|
fallbackText: {
|
|
const appName = notificationData?.appName || "?";
|
|
return appName.charAt(0).toUpperCase();
|
|
}
|
|
|
|
onImageStatusChanged: {
|
|
if (imageStatus === Image.Ready && needsImagePersist) {
|
|
const cachePath = NotificationService.getImageCachePath(notificationData);
|
|
saveImageToFile(cachePath);
|
|
}
|
|
}
|
|
|
|
onImageSaved: filePath => {
|
|
if (!notificationData)
|
|
return;
|
|
notificationData.persistedImagePath = filePath;
|
|
const wrapperId = notificationData.notification?.id?.toString() || "";
|
|
if (wrapperId)
|
|
NotificationService.updateHistoryImage(wrapperId, filePath);
|
|
}
|
|
}
|
|
|
|
Column {
|
|
id: textContainer
|
|
|
|
anchors.left: iconContainer.right
|
|
anchors.leftMargin: Theme.spacingM
|
|
anchors.right: parent.right
|
|
anchors.top: parent.top
|
|
spacing: compactMode ? 1 : 2
|
|
|
|
StyledText {
|
|
width: parent.width
|
|
text: {
|
|
if (!notificationData)
|
|
return "";
|
|
const appName = notificationData.appName || "";
|
|
const timeStr = notificationData.timeStr || "";
|
|
return timeStr.length > 0 ? appName + " • " + timeStr : appName;
|
|
}
|
|
color: Theme.surfaceVariantText
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
font.weight: Font.Medium
|
|
elide: Text.ElideRight
|
|
horizontalAlignment: Text.AlignLeft
|
|
maximumLineCount: 1
|
|
visible: text.length > 0
|
|
}
|
|
|
|
StyledText {
|
|
text: notificationData ? (notificationData.summary || "") : ""
|
|
color: Theme.surfaceText
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
font.weight: Font.Medium
|
|
width: parent.width
|
|
elide: Text.ElideRight
|
|
horizontalAlignment: Text.AlignLeft
|
|
maximumLineCount: 1
|
|
visible: text.length > 0
|
|
}
|
|
|
|
StyledText {
|
|
id: bodyText
|
|
property bool hasMoreText: truncated
|
|
|
|
text: notificationData ? (notificationData.htmlBody || "") : ""
|
|
color: Theme.surfaceVariantText
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
width: parent.width
|
|
elide: descriptionExpanded ? Text.ElideNone : Text.ElideRight
|
|
horizontalAlignment: Text.AlignLeft
|
|
maximumLineCount: descriptionExpanded ? -1 : (compactMode ? 1 : 2)
|
|
wrapMode: Text.WordWrap
|
|
visible: text.length > 0
|
|
linkColor: Theme.primary
|
|
onLinkActivated: link => Qt.openUrlExternally(link)
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : (bodyText.hasMoreText || descriptionExpanded) ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
|
|
onClicked: mouse => {
|
|
if (!parent.hoveredLink && (bodyText.hasMoreText || descriptionExpanded))
|
|
win.descriptionExpanded = !win.descriptionExpanded;
|
|
}
|
|
|
|
propagateComposedEvents: true
|
|
onPressed: mouse => {
|
|
if (parent.hoveredLink)
|
|
mouse.accepted = false;
|
|
}
|
|
onReleased: mouse => {
|
|
if (parent.hoveredLink)
|
|
mouse.accepted = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
DankActionButton {
|
|
id: closeButton
|
|
|
|
anchors.right: parent.right
|
|
anchors.top: parent.top
|
|
anchors.topMargin: cardPadding
|
|
anchors.rightMargin: Theme.spacingL
|
|
iconName: "close"
|
|
iconSize: compactMode ? 16 : 18
|
|
buttonSize: compactMode ? 24 : 28
|
|
z: 15
|
|
onClicked: {
|
|
if (notificationData && !win.exiting)
|
|
notificationData.popup = false;
|
|
}
|
|
}
|
|
|
|
Row {
|
|
anchors.right: clearButton.visible ? clearButton.left : parent.right
|
|
anchors.rightMargin: clearButton.visible ? contentSpacing : Theme.spacingL
|
|
anchors.top: notificationContent.bottom
|
|
anchors.topMargin: contentSpacing
|
|
spacing: contentSpacing
|
|
z: 20
|
|
|
|
Repeater {
|
|
model: notificationData ? (notificationData.actions || []) : []
|
|
|
|
Rectangle {
|
|
property bool isHovered: false
|
|
|
|
width: Math.max(actionText.implicitWidth + Theme.spacingM, compactMode ? 40 : 50)
|
|
height: actionButtonHeight
|
|
radius: Theme.spacingXS
|
|
color: isHovered ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.1) : "transparent"
|
|
|
|
StyledText {
|
|
id: actionText
|
|
|
|
text: modelData.text || "View"
|
|
color: parent.isHovered ? Theme.primary : Theme.surfaceVariantText
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
font.weight: Font.Medium
|
|
anchors.centerIn: parent
|
|
elide: Text.ElideRight
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
acceptedButtons: Qt.LeftButton
|
|
onEntered: parent.isHovered = true
|
|
onExited: parent.isHovered = false
|
|
onClicked: {
|
|
if (modelData && modelData.invoke)
|
|
modelData.invoke();
|
|
if (notificationData && !win.exiting)
|
|
notificationData.popup = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
id: clearButton
|
|
|
|
property bool isHovered: false
|
|
readonly property int actionCount: notificationData ? (notificationData.actions || []).length : 0
|
|
|
|
visible: actionCount < 3
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Theme.spacingL
|
|
anchors.top: notificationContent.bottom
|
|
anchors.topMargin: contentSpacing
|
|
width: Math.max(clearTextLabel.implicitWidth + Theme.spacingM, compactMode ? 40 : 50)
|
|
height: actionButtonHeight
|
|
radius: Theme.spacingXS
|
|
color: isHovered ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.1) : "transparent"
|
|
z: 20
|
|
|
|
StyledText {
|
|
id: clearTextLabel
|
|
|
|
text: win.clearText
|
|
color: clearButton.isHovered ? Theme.primary : Theme.surfaceVariantText
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
font.weight: Font.Medium
|
|
anchors.centerIn: parent
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
acceptedButtons: Qt.LeftButton
|
|
onEntered: clearButton.isHovered = true
|
|
onExited: clearButton.isHovered = false
|
|
onClicked: {
|
|
if (notificationData && !win.exiting)
|
|
NotificationService.dismissNotification(notificationData);
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: cardHoverArea
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
|
propagateComposedEvents: true
|
|
z: -1
|
|
onEntered: {
|
|
if (notificationData && notificationData.timer)
|
|
notificationData.timer.stop();
|
|
}
|
|
onExited: {
|
|
if (notificationData && notificationData.popup && notificationData.timer)
|
|
notificationData.timer.restart();
|
|
}
|
|
onClicked: mouse => {
|
|
if (!notificationData || win.exiting)
|
|
return;
|
|
if (mouse.button === Qt.RightButton) {
|
|
NotificationService.dismissNotification(notificationData);
|
|
} else if (mouse.button === Qt.LeftButton) {
|
|
if (notificationData.actions && notificationData.actions.length > 0) {
|
|
notificationData.actions[0].invoke();
|
|
NotificationService.dismissNotification(notificationData);
|
|
} else {
|
|
notificationData.popup = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
DragHandler {
|
|
id: swipeDragHandler
|
|
target: null
|
|
xAxis.enabled: !isTopCenter
|
|
yAxis.enabled: isTopCenter
|
|
|
|
onActiveChanged: {
|
|
if (active || win.exiting || content.swipeDismissing)
|
|
return;
|
|
|
|
if (Math.abs(content.swipeOffset) > content.dismissThreshold) {
|
|
content.swipeDismissing = true;
|
|
swipeDismissAnim.start();
|
|
} else {
|
|
content.swipeOffset = 0;
|
|
}
|
|
}
|
|
|
|
onTranslationChanged: {
|
|
if (win.exiting)
|
|
return;
|
|
|
|
const raw = isTopCenter ? translation.y : translation.x;
|
|
if (isTopCenter) {
|
|
content.swipeOffset = Math.min(0, raw);
|
|
} else {
|
|
const isLeft = SettingsData.notificationPopupPosition === SettingsData.Position.Left || SettingsData.notificationPopupPosition === SettingsData.Position.Bottom;
|
|
content.swipeOffset = isLeft ? Math.min(0, raw) : Math.max(0, raw);
|
|
}
|
|
}
|
|
}
|
|
|
|
opacity: 1 - Math.abs(content.swipeOffset) / (isTopCenter ? content.height : content.width * 0.6)
|
|
|
|
Behavior on opacity {
|
|
enabled: !content.swipeActive
|
|
NumberAnimation {
|
|
duration: Theme.shortDuration
|
|
}
|
|
}
|
|
|
|
Behavior on swipeOffset {
|
|
enabled: !content.swipeActive && !content.swipeDismissing
|
|
NumberAnimation {
|
|
duration: Theme.shortDuration
|
|
easing.type: Theme.standardEasing
|
|
}
|
|
}
|
|
|
|
NumberAnimation {
|
|
id: swipeDismissAnim
|
|
target: content
|
|
property: "swipeOffset"
|
|
to: isTopCenter ? -content.height : (SettingsData.notificationPopupPosition === SettingsData.Position.Left || SettingsData.notificationPopupPosition === SettingsData.Position.Bottom ? -content.width : content.width)
|
|
duration: Anims.durShort
|
|
easing.type: Easing.OutCubic
|
|
onStopped: {
|
|
NotificationService.dismissNotification(notificationData);
|
|
win.forceExit();
|
|
}
|
|
}
|
|
|
|
transform: [
|
|
Translate {
|
|
id: swipeTx
|
|
x: isTopCenter ? 0 : content.swipeOffset
|
|
y: isTopCenter ? content.swipeOffset : 0
|
|
},
|
|
Translate {
|
|
id: tx
|
|
x: {
|
|
if (isTopCenter)
|
|
return 0;
|
|
const isLeft = SettingsData.notificationPopupPosition === SettingsData.Position.Left || SettingsData.notificationPopupPosition === SettingsData.Position.Bottom;
|
|
return isLeft ? -Anims.slidePx : Anims.slidePx;
|
|
}
|
|
y: isTopCenter ? -Anims.slidePx : 0
|
|
}
|
|
]
|
|
}
|
|
|
|
NumberAnimation {
|
|
id: enterX
|
|
|
|
target: tx
|
|
property: isTopCenter ? "y" : "x"
|
|
from: {
|
|
if (isTopCenter)
|
|
return -Anims.slidePx;
|
|
const isLeft = SettingsData.notificationPopupPosition === SettingsData.Position.Left || SettingsData.notificationPopupPosition === SettingsData.Position.Bottom;
|
|
return isLeft ? -Anims.slidePx : Anims.slidePx;
|
|
}
|
|
to: 0
|
|
duration: Anims.durMed
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: isTopCenter ? Anims.standardDecel : Anims.emphasizedDecel
|
|
onStopped: {
|
|
if (!win.exiting && !win._isDestroying) {
|
|
if (isTopCenter) {
|
|
if (Math.abs(tx.y) < 0.5)
|
|
win.entered();
|
|
} else {
|
|
if (Math.abs(tx.x) < 0.5)
|
|
win.entered();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ParallelAnimation {
|
|
id: exitAnim
|
|
|
|
onStopped: finalizeExit("animStopped")
|
|
|
|
PropertyAnimation {
|
|
target: tx
|
|
property: isTopCenter ? "y" : "x"
|
|
from: 0
|
|
to: {
|
|
if (isTopCenter)
|
|
return -Anims.slidePx;
|
|
const isLeft = SettingsData.notificationPopupPosition === SettingsData.Position.Left || SettingsData.notificationPopupPosition === SettingsData.Position.Bottom;
|
|
return isLeft ? -Anims.slidePx : Anims.slidePx;
|
|
}
|
|
duration: Anims.durShort
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: Anims.emphasizedAccel
|
|
}
|
|
|
|
NumberAnimation {
|
|
target: content
|
|
property: "opacity"
|
|
from: 1
|
|
to: 0
|
|
duration: Anims.durShort
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: Anims.standardAccel
|
|
}
|
|
|
|
NumberAnimation {
|
|
target: content
|
|
property: "scale"
|
|
from: 1
|
|
to: 0.98
|
|
duration: Anims.durShort
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: Anims.emphasizedAccel
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
id: wrapperConn
|
|
|
|
function onPopupChanged() {
|
|
if (!win.notificationData || win._isDestroying)
|
|
return;
|
|
if (!win.notificationData.popup && !win.exiting)
|
|
startExit();
|
|
}
|
|
|
|
target: win.notificationData || null
|
|
ignoreUnknownSignals: true
|
|
enabled: !win._isDestroying
|
|
}
|
|
|
|
Connections {
|
|
id: notificationConn
|
|
|
|
function onDropped() {
|
|
if (!win._isDestroying && !win.exiting)
|
|
forceExit();
|
|
}
|
|
|
|
target: (win.notificationData && win.notificationData.notification && win.notificationData.notification.Retainable) || null
|
|
ignoreUnknownSignals: true
|
|
enabled: !win._isDestroying
|
|
}
|
|
|
|
Timer {
|
|
id: enterDelay
|
|
|
|
interval: 160
|
|
repeat: false
|
|
onTriggered: {
|
|
if (notificationData && notificationData.timer && !exiting && !_isDestroying)
|
|
notificationData.timer.start();
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: exitWatchdog
|
|
|
|
interval: 600
|
|
repeat: false
|
|
onTriggered: finalizeExit("watchdog")
|
|
}
|
|
|
|
Behavior on screenY {
|
|
id: screenYAnim
|
|
|
|
enabled: !exiting && !_isDestroying
|
|
|
|
NumberAnimation {
|
|
duration: Anims.durShort
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: Anims.standardDecel
|
|
}
|
|
}
|
|
}
|