blob: 32a99baeeed63d2e392c9faae4424aef4fcaf4d5 (
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
|
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.kde.kirigamiaddons.components as KirigamiComponents
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
title: pullRequest ? `#${pullRequest.number}` : ""
actions: commonActions
Kirigami.PlaceholderMessage {
visible: !root.pullRequest
anchors.centerIn: parent
icon.name: "org.deprecated.kodereviewer"
text: "Select a pull request"
}
Loader {
id: contentLoader
active: !!root.pullRequest
sourceComponent: ColumnLayout {
PullRequestDescription {
pullRequest: root.pullRequest
Layout.fillHeight: true
Layout.fillWidth: true
}
}
}
}
|