115 lines
3.4 KiB
QML
115 lines
3.4 KiB
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Controls.Material 2.2
|
|
import QtQuick.Layouts 1.1
|
|
import Nymea 1.0
|
|
import "../components"
|
|
import "../customviews"
|
|
|
|
Page {
|
|
id: root
|
|
|
|
property var device: null
|
|
property var stateType: null
|
|
|
|
readonly property bool canShowGraph: {
|
|
switch (root.stateType.type) {
|
|
case "Int":
|
|
case "Double":
|
|
return true;
|
|
case "Bool":
|
|
return engine.jsonRpcClient.ensureServerVersion("1.10")
|
|
}
|
|
print("not showing graph for", root.stateType.type)
|
|
return false;
|
|
}
|
|
|
|
header: GuhHeader {
|
|
text: qsTr("History for %1").arg(root.stateType.displayName)
|
|
onBackPressed: pageStack.pop()
|
|
}
|
|
|
|
LogsModel {
|
|
id: logsModel
|
|
engine: _engine
|
|
deviceId: root.device.id
|
|
live: true
|
|
Component.onCompleted: {
|
|
update()
|
|
}
|
|
typeIds: [root.stateType.id]
|
|
}
|
|
|
|
LogsModelNg {
|
|
id: logsModelNg
|
|
engine: _engine
|
|
deviceId: root.device.id
|
|
typeIds: [root.stateType.id]
|
|
live: true
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
TabBar {
|
|
id: tabBar
|
|
Layout.fillWidth: true
|
|
visible: root.canShowGraph
|
|
TabButton {
|
|
text: qsTr("Log")
|
|
}
|
|
TabButton {
|
|
text: qsTr("Graph")
|
|
}
|
|
}
|
|
|
|
SwipeView {
|
|
id: swipeView
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
currentIndex: tabBar.currentIndex
|
|
interactive: false
|
|
|
|
GenericTypeLogView {
|
|
id: logView
|
|
width: swipeView.width
|
|
height: swipeView.height
|
|
|
|
logsModel: engine.jsonRpcClient.ensureServerVersion("1.10") ? logsModelNg : logsModel
|
|
|
|
onAddRuleClicked: {
|
|
var value = logView.logsModel.get(index).value
|
|
var typeId = logView.logsModel.get(index).typeId
|
|
var rule = engine.ruleManager.createNewRule();
|
|
var stateEvaluator = rule.createStateEvaluator();
|
|
stateEvaluator.stateDescriptor.deviceId = device.id;
|
|
stateEvaluator.stateDescriptor.stateTypeId = typeId;
|
|
stateEvaluator.stateDescriptor.value = value;
|
|
stateEvaluator.stateDescriptor.valueOperator = StateDescriptor.ValueOperatorEquals;
|
|
rule.setStateEvaluator(stateEvaluator);
|
|
rule.name = root.device.name + " - " + stateType.displayName + " = " + value;
|
|
|
|
var rulePage = pageStack.push(Qt.resolvedUrl("../magic/DeviceRulesPage.qml"), {device: root.device});
|
|
rulePage.addRule(rule);
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
id: graphLoader
|
|
width: swipeView.width
|
|
height: swipeView.height
|
|
Component.onCompleted: {
|
|
var source;
|
|
if (engine.jsonRpcClient.ensureServerVersion("1.10")) {
|
|
source = Qt.resolvedUrl("../customviews/GenericTypeGraph.qml");
|
|
} else {
|
|
source = Qt.resolvedUrl("../customviews/GenericTypeGraphPre110.qml");
|
|
}
|
|
setSource(source, {device: root.device, stateType: root.stateType})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|