aboutsummaryrefslogtreecommitdiff
path: root/modules/system/quickshell/NotificationCard.qml
blob: 8b6478ae684229b0730fc35ac000bc95c376f368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
import QtQuick
import QtQuick.Layouts
import QtQuick.Effects
import Quickshell

Item {
    id: card

    required property int nId
    required property string nSummary
    required property string nBody
    required property string nAppName
    required property string nAppIcon
    required property string nImage
    required property var nTimestamp
    required property int nTimeout
    required property var nActions
    required property bool nClickable
    required property bool nHasInlineReply
    required property string nReplyPlaceholder
    required property bool nResident

    property bool hovered: cardHover.containsMouse || closeHover.containsMouse || (replyInput && replyInput.activeFocus)

    readonly property bool hasBottom: (nActions ? nActions.count > 0 : false) || nHasInlineReply

    signal actionInvoked(int id, string identifier)
    signal replySent(int id, string text)
    signal dismissed(int id)
    signal activated(int id)
    signal hideRequested(int id)

    function formatTimeAgo(timestamp) {
        const now = new Date();
        const diffMs = now - timestamp;
        const diffMins = Math.floor(diffMs / 60000);
        const diffHours = Math.floor(diffMs / 3600000);

        if (diffMins < 1) return "Just now";
        if (diffMins < 60) return diffMins + "m ago";
        if (diffHours < 24) return diffHours + "h ago";
        return Qt.formatTime(timestamp, "h:mm p");
    }

    width: ListView.view ? ListView.view.width : 400
    height: contentColumn.implicitHeight + 32
    Behavior on height { NumberAnimation { duration: 200; easing.type: Easing.OutSine } }

    Squircle {
        anchors.fill: parent
        cornerRadius: 16
        fillColor: Theme.surface
        strokeColor: Theme.border
        strokeWidth: 1
    }

    MouseArea {
        id: cardHover
        anchors.fill: parent
        hoverEnabled: true
        cursorShape: nClickable ? Qt.PointingHandCursor : Qt.ArrowCursor
        onClicked: {
            if (nClickable) card.activated(nId)
        }
    }

    ColumnLayout {
        id: contentColumn
        anchors {
            top: parent.top
            left: parent.left
            right: parent.right
            margins: 16
        }
        spacing: 12

        RowLayout {
            Layout.fillWidth: true
            spacing: 12
            Layout.alignment: Qt.AlignTop

            // LEFT: Icon
            Item {
                width: 44
                height: 44
                Layout.alignment: Qt.AlignVCenter

                Squircle {
                    anchors.fill: parent
                    cornerRadius: 10
                    fillColor: Theme.surfaceLighter
                }

                Image {
                    visible: nAppIcon !== ""
                    anchors.centerIn: parent
                    width: 30; height: 30
                    source: nAppIcon
                    fillMode: Image.PreserveAspectFit
                    smooth: true
                }
            }

            // MIDDLE: Text
            ColumnLayout {
                Layout.fillWidth: true
                Layout.alignment: Qt.AlignTop
                spacing: 2

                RowLayout {
                    Layout.fillWidth: true
                    Text {
                        text: nAppName
                        color: Theme.text
                        font {
                            family: Theme.mainFont
                            pixelSize: 12
                            weight: Font.Medium
                        }
                        opacity: 0.8
                        elide: Text.ElideRight
                        Layout.fillWidth: true
                    }
                    Text {
                        text: card.formatTimeAgo(nTimestamp)
                        color: Theme.text
                        opacity: 0.5
                        font {
                            family: Theme.mainFont
                            pixelSize: 11
                        }

                        Timer {
                            interval: 60000
                            running: true
                            repeat: true
                            onTriggered: parent.text = card.formatTimeAgo(nTimestamp)
                        }
                    }
                }

                Text {
                    visible: nSummary !== ""
                    Layout.fillWidth: true
                    text: nSummary
                    color: Theme.text
                    font {
                        family: Theme.mainFont
                        pixelSize: 14
                        weight: Font.DemiBold
                    }
                    wrapMode: Text.WordWrap
                    maximumLineCount: 2
                    elide: Text.ElideRight
                }

                Text {
                    visible: nBody !== ""
                    Layout.fillWidth: true
                    text: nBody
                    color: Theme.text
                    opacity: 0.85
                    font {
                        family: Theme.mainFont
                        pixelSize: 13
                    }
                    wrapMode: Text.WordWrap
                    maximumLineCount: 3
                    elide: Text.ElideRight
                    textFormat: Text.StyledText
                }
            }

            // RIGHT: Image
            Item {
                visible: nImage !== ""
                width: visible ? 44 : 0
                height: 44
                Layout.alignment: Qt.AlignTop

                Squircle {
                    id: mediaMask
                    anchors.fill: parent
                    cornerRadius: 8
                    fillColor: Theme.text
                    visible: false
                    layer.enabled: true
                    layer.smooth: true
                }

                Image {
                    anchors.fill: parent
                    source: nImage
                    fillMode: Image.PreserveAspectCrop
                    smooth: true
                    asynchronous: true
                    layer.enabled: true
                    layer.effect: MultiEffect {
                        maskEnabled: true
                        maskSource: mediaMask
                        maskThresholdMin: 0.5
                    }
                }
            }
        }

        ColumnLayout {
            id: bottomStack
            Layout.fillWidth: true
            visible: card.hasBottom
            spacing: 8
            Layout.leftMargin: 56 // Align with text

            RowLayout {
                visible: nActions && nActions.count > 0
                Layout.fillWidth: true
                spacing: 8

                Repeater {
                    model: nActions
                    delegate: Item {
                        id: actionBtn
                        required property int index
                        required property string identifier
                        required property string text

                        Layout.fillWidth: true
                        Layout.preferredHeight: 28

                        Squircle {
                            anchors.fill: parent
                            cornerRadius: 6
                            fillColor: actionHover.containsMouse ? Theme.surfaceHover : Theme.surfaceLighter
                            scale: actionHover.pressed ? 0.95 : 1.0
                            Behavior on scale { NumberAnimation { duration: 150; easing.type: Easing.OutCubic } }
                        }

                        Text {
                            anchors.centerIn: parent
                            text: actionBtn.text
                            color: Theme.text
                            font {
                                family: Theme.mainFont
                                pixelSize: 12
                                weight: Font.Medium
                            }
                        }

                        MouseArea {
                            id: actionHover
                            anchors.fill: parent
                            hoverEnabled: true
                            cursorShape: Qt.PointingHandCursor
                            onClicked: card.actionInvoked(card.nId, actionBtn.identifier)
                        }
                    }
                }
            }

            Item {
                visible: nHasInlineReply
                Layout.fillWidth: true
                Layout.preferredHeight: 30

                Squircle {
                    anchors.fill: parent
                    cornerRadius: 6
                    fillColor: Theme.surfaceLighter
                }

                TextInput {
                    id: replyInput
                    anchors {
                        left: parent.left; leftMargin: 10
                        right: sendBtn.left; rightMargin: 6
                        top: parent.top; bottom: parent.bottom
                    }
                    verticalAlignment: TextInput.AlignVCenter
                    color: Theme.text
                    font {
                        family: Theme.mainFont
                        pixelSize: 12
                    }
                    clip: true
                    activeFocusOnTab: true

                    Text {
                        visible: replyInput.text === "" && !replyInput.activeFocus
                        anchors.fill: parent
                        verticalAlignment: Text.AlignVCenter
                        text: nReplyPlaceholder
                        color: Theme.text
                        opacity: 0.5
                        font: replyInput.font
                    }

                    Keys.onReturnPressed: if (text.length > 0) { card.replySent(card.nId, text); text = "" }
                    Keys.onEnterPressed:  if (text.length > 0) { card.replySent(card.nId, text); text = "" }
                }

                Item {
                    id: sendBtn
                    anchors {
                        right: parent.right; rightMargin: 4
                        verticalCenter: parent.verticalCenter
                    }
                    width: 22; height: 22
                    opacity: replyInput.text.length > 0 ? 1.0 : 0.4

                    Rectangle {
                        anchors.fill: parent
                        radius: 4
                        color: Theme.text
                    }

                    Text {
                        anchors.centerIn: parent
                        text: "↑"
                        color: Theme.bg
                        font.pixelSize: 14
                        font.weight: Font.DemiBold
                    }

                    MouseArea {
                        anchors.fill: parent
                        enabled: replyInput.text.length > 0
                        cursorShape: Qt.PointingHandCursor
                        onClicked: {
                            card.replySent(card.nId, replyInput.text)
                            replyInput.text = ""
                        }
                    }
                }
            }
        }
    }

    // Close button — top-left, visible on hover
    Rectangle {
        width: 20
        height: 20
        radius: 10
        anchors {
            top: parent.top
            left: parent.left
            topMargin: -6
            leftMargin: -6
        }
        color: Theme.surfaceLighter
        border.color: Theme.border
        border.width: 1
        opacity: card.hovered ? 1.0 : 0.0
        Behavior on opacity { NumberAnimation { duration: 150 } }

        Item {
            anchors.centerIn: parent
            width: 8
            height: 8

            Rectangle {
                anchors.centerIn: parent
                width: parent.width * Math.SQRT2
                height: 1.2
                radius: 0.6
                color: Theme.text
                rotation: 45
                antialiasing: true
            }
            Rectangle {
                anchors.centerIn: parent
                width: parent.width * Math.SQRT2
                height: 1.2
                radius: 0.6
                color: Theme.text
                rotation: -45
                antialiasing: true
            }
        }

        MouseArea {
            id: closeHover
            anchors.fill: parent
            hoverEnabled: true
            cursorShape: Qt.PointingHandCursor
            onClicked: card.dismissed(card.nId)
        }
    }

    Timer {
        id: hideTimer
        interval: nTimeout
        running: !nResident
        onTriggered: card.hideRequested(nId)
    }

    Connections {
        target: card
        function onHoveredChanged() {
            if (!nResident) {
                if (card.hovered) hideTimer.stop()
                else hideTimer.restart()
            }
        }
    }
}