-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathUpdateList.qml
More file actions
284 lines (251 loc) · 13.5 KB
/
Copy pathUpdateList.qml
File metadata and controls
284 lines (251 loc) · 13.5 KB
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
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.0
import QtQuick.Controls 2.0
import Qt.labs.qmlmodels 1.2
import QtQuick.Layouts 1.15
import org.deepin.dtk 1.0 as D
import org.deepin.dtk.style 1.0 as DS
import org.deepin.dcc 1.0
import org.deepin.dcc.update 1.0
Rectangle {
id: root
property alias model: repeater.model
property bool checkIconVisible: true
color: "transparent"
implicitHeight: layoutView.height
Layout.fillWidth: true
Component.onDestruction: {
if (repeater.model) {
repeater.model.collapseAll()
}
}
ColumnLayout {
id: layoutView
clip: true
width: parent.width
spacing: 10
Repeater {
id: repeater
delegate: D.ItemDelegate {
id: itemCtl
Layout.fillWidth: true
leftPadding: 6
rightPadding: 12
topPadding: 10
cascadeSelected: true
contentFlow: true
spacing: 0
property var detailModel: model.detailInfos
property bool showDetails: model.expanded
property int itemIndex: index
property bool isSecurityUpdate: repeater.model.getUpdateType(index) === Common.SecurityUpdate
content: ColumnLayout {
spacing: 10
RowLayout {
spacing: 10
D.DciIcon {
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
name: model.iconName
sourceSize {
width: 28
height: 28
}
}
ColumnLayout {
Layout.alignment: Qt.AlignRight
spacing: 6
RowLayout {
Label {
Layout.alignment: Qt.AlignLeft
text: model.title
font: D.DTK.fontManager.t6
color: D.DTK.themeType == D.ApplicationHelper.LightType ?
Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)
width: 100
Layout.fillWidth: true
}
DccCheckIcon {
Layout.alignment: Qt.AlignRight
checked: model.checked
size: 18
visible: checkIconVisible
onClicked: {
repeater.model.setChecked(index, !model.checked)
dccData.work().setCheckUpdateMode(repeater.model.getUpdateType(index), model.checked)
}
}
}
D.Label {
Layout.alignment: Qt.AlignLeft
horizontalAlignment: Text.AlignLeft
Layout.fillWidth: true
font: D.DTK.fontManager.t8
color: D.DTK.themeType == D.ApplicationHelper.LightType ?
Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)
visible: model.version.length !== 0
text: qsTr("Version:") + model.version
}
D.Label {
Layout.alignment: Qt.AlignLeft
horizontalAlignment: Text.AlignLeft
Layout.fillWidth: true
font: D.DTK.fontManager.t8
text: model.explain
textFormat: Text.RichText
wrapMode: Text.WordWrap
onLinkActivated: (link)=> {
dccData.work().openUrl(link)
}
MouseArea {
anchors.fill: parent
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
acceptedButtons: Qt.NoButton
}
}
RowLayout {
D.Label {
Layout.alignment: Qt.AlignLeft
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
Layout.fillWidth: true
Layout.minimumHeight: 22
font: D.DTK.fontManager.t8
visible: model.releaseTime.length !== 0
text: qsTr("Release time:") + model.releaseTime
}
Item {
Layout.fillWidth: true
}
D.ToolButton {
textColor: D.Palette {
normal {
common: D.DTK.makeColor(D.Color.Highlight)
}
normalDark: normal
hovered {
common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)
}
hoveredDark: hovered
}
visible: model.detailInfos.length !== 0 && !itemCtl.showDetails
bottomPadding: 0
font: D.DTK.fontManager.t8
text: qsTr("View More")
onClicked: {
repeater.model.setExpanded(itemCtl.itemIndex, true)
}
background: Item {}
}
}
Rectangle {
height: 1
color: D.DTK.themeType === D.ApplicationHelper.LightType ?
Qt.rgba(0, 0, 0, 0.05) : Qt.rgba(1, 1, 1, 0.05)
Layout.fillWidth: true
visible: itemCtl.showDetails
}
// 详情列表
Repeater {
id: innerRepeater
model: itemCtl.detailModel
ColumnLayout {
spacing: 6
visible: itemCtl.showDetails
D.Label {
Layout.alignment: Qt.AlignLeft
horizontalAlignment: Text.AlignLeft
Layout.fillWidth: true
font: D.DTK.fontManager.t8
color: D.DTK.themeType == D.ApplicationHelper.LightType ?
Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)
visible: itemCtl.showDetails && modelData.name !== ""
text: (itemCtl.isSecurityUpdate ? qsTr("Vulnerability ID: ") : qsTr("Version:")) + modelData.name
}
D.Label {
Layout.alignment: Qt.AlignLeft
horizontalAlignment: Text.AlignLeft
Layout.fillWidth: true
font: D.DTK.fontManager.t8
color: D.DTK.themeType == D.ApplicationHelper.LightType ?
Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)
visible: itemCtl.showDetails && itemCtl.isSecurityUpdate && modelData.vulLevel !== ""
text: qsTr("Severity: ") + modelData.vulLevel
}
D.Label {
Layout.alignment: Qt.AlignLeft
horizontalAlignment: Text.AlignLeft
Layout.fillWidth: true
font: D.DTK.fontManager.t8
visible: itemCtl.showDetails && modelData.info !== ""
text: itemCtl.isSecurityUpdate ? qsTr("Description: ") + modelData.info : modelData.info
textFormat: Text.RichText
wrapMode: Text.WordWrap
onLinkActivated: (link)=> {
dccData.work().openUrl(link)
}
MouseArea {
anchors.fill: parent
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
acceptedButtons: Qt.NoButton
}
}
RowLayout {
D.Label {
Layout.alignment: Qt.AlignLeft
horizontalAlignment: Text.AlignLeft
Layout.fillWidth: true
font: D.DTK.fontManager.t8
visible: itemCtl.showDetails && modelData.updateTime !== ""
text: qsTr("Release time:") + modelData.updateTime
}
Item {
Layout.fillWidth: true
}
D.ToolButton {
textColor: D.Palette {
normal {
common: D.DTK.makeColor(D.Color.Highlight)
}
normalDark: normal
hovered {
common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)
}
hoveredDark: hovered
}
visible: itemCtl.showDetails && (index === innerRepeater.count - 1 )
bottomPadding: 0
font: D.DTK.fontManager.t8
text: qsTr("Collapse")
onClicked: {
repeater.model.setExpanded(itemCtl.itemIndex, false)
}
background: Item {}
}
}
Rectangle {
height: 1
color: D.DTK.themeType === D.ApplicationHelper.LightType ?
Qt.rgba(0, 0, 0, 0.05) : Qt.rgba(1, 1, 1, 0.05)
Layout.fillWidth: true
visible: itemCtl.showDetails && (index !== innerRepeater.count - 1 )
}
}
}
}
}
Rectangle {
height: 1
color: D.DTK.themeType === D.ApplicationHelper.LightType ?
Qt.rgba(0, 0, 0, 0.05) : Qt.rgba(1, 1, 1, 0.05)
Layout.fillWidth: true
visible: (index !== repeater.count - 1 )
}
}
background: DccItemBackground {
separatorVisible: true
}
}
}
}
}