blob: 5a687e964c6fa652265fa2f663a76f98af3f8de4 (
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
|
pragma ComponentBehavior: Bound
import QtQuick
import QtCore
import QtQuick.Controls as QQC2
import QtQuick.Layouts
import org.kde.kirigami as Kirigami
import org.kde.kirigamiaddons.formcard as FormCard
import org.deprecated.kodereviewer 1.0
Kirigami.ScrollablePage {
id: root
property var pullRequest
property NetworkManager connection
Kirigami.Theme.colorSet: Kirigami.Theme.View
Kirigami.Theme.inherit: false
property string currentView: "info"
CommentModel {
id: commentModel
pullRequest: root.pullRequest
onPullRequestChanged: root.connection.getPullRequestComments(root.pullRequest.number)
}
Kirigami.PlaceholderMessage {
visible: !root.pullRequest
anchors.centerIn: parent
icon.name: "org.deprecated.kodereviewer"
text: "Select a pull request"
}
ColumnLayout {
id: mainLayout
visible: !!root.pullRequest && root.currentView == "info"
spacing: Kirigami.Units.largeSpacing * 2
Kirigami.Heading {
Layout.fillWidth: true
Layout.alignment: Qt.AlignHCenter
leftPadding: Kirigami.Units.largeSpacing
rightPadding: Kirigami.Units.largeSpacing
level: 1
text: root.pullRequest ? root.pullRequest.title : ""
wrapMode: Text.WordWrap
}
Kirigami.ListSectionHeader {
Layout.fillWidth: true
text: "description"
}
MarkdownLabel {
Layout.fillWidth: true
Layout.fillHeight: false
leftPadding: Kirigami.Units.largeSpacing
rightPadding: Kirigami.Units.largeSpacing
text: root.pullRequest ? root.pullRequest.body : ""
}
}
ColumnLayout {
visible: !!root.pullRequest && root.currentView == "comments"
Repeater {
model: commentModel
delegate: CommentDelegate {}
}
}
footer: Kirigami.NavigationTabBar {
actions: [
Kirigami.Action {
icon.name: "info"
text: i18n("Info")
onTriggered: root.currentView = "info"
},
Kirigami.Action {
icon.name: "comment-symbolic"
text: i18n("Comments")
onTriggered: root.currentView = "comments"
},
Kirigami.Action {
icon.name: "file-catalog-symbolic"
text: i18n("Files")
onTriggered: root.currentView = "files"
}
]
}
}
|