-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationPage.qml
More file actions
109 lines (106 loc) · 3.71 KB
/
ApplicationPage.qml
File metadata and controls
109 lines (106 loc) · 3.71 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
import bb.cascades 1.4
import "../Elements"
Page {
property string application_name;
property string company_name;
property string environment_name;
titleBar: TitleBar {
title: qsTr("Application")
acceptAction: ActionItem {
title: qsTr("Refresh")
}
}
Container {
Container {
layout: StackLayout {
orientation: LayoutOrientation.LeftToRight
}
topPadding: ui.du(5)
rightPadding: ui.du(2)
bottomPadding: ui.du(5)
leftPadding: ui.du(5)
ImageView {
imageSource: "asset:///images/actions/custom/ic_swarm.png"
verticalAlignment: VerticalAlignment.Center
rightMargin: ui.du(3)
}
Container {
Label {
text: application_name
textStyle.fontSize: FontSize.Large
bottomMargin: ui.du(0)
}
Container {
layout: StackLayout {
orientation: LayoutOrientation.LeftToRight
}
Label {
text: qsTr("Status:")
textStyle.fontSize: FontSize.Small
textStyle.color: Color.Gray
rightMargin: ui.du(0)
}
StatusLabel {
id: statusLabel
status: "unknown"
leftMargin: ui.du(0)
}
}
}
}
Header {
title: qsTr("Services")
}
ListView {
dataModel: GroupDataModel {
id: servicesDataModel
sortingKeys: [ "name" ]
sortedAscending: true
grouping: ItemGrouping.None
}
listItemComponents: ListItemComponent {
type: "item"
Container {
SingleLineListContainer {
layout: StackLayout {
orientation: LayoutOrientation.LeftToRight
}
ImageView {
imageSource: "asset:///images/actions/custom/ic_service.png"
verticalAlignment: VerticalAlignment.Center
}
Label {
layoutProperties: StackLayoutProperties {
spaceQuota: 1
}
text: ListItemData.name
textStyle.fontSize: FontSize.Large
verticalAlignment: VerticalAlignment.Center
}
ImageView {
imageSource: "asset:///images/actions/custom/ic_next.png"
verticalAlignment: VerticalAlignment.Center
}
}
Divider {}
}
}
onCreationCompleted: {
var application = giantswarm.getApplicationStatus(
company_name,
environment_name,
application_name
);
statusLabel.status = application["status"];
servicesDataModel.insertList(application["services"]);
}
onTriggered: {
nav.push(Qt.createComponent(
"ServicePage.qml"
).createObject(nav, {
service: servicesDataModel.data(indexPath)
}));
}
}
}
}