This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/mea/ui/devicepages/GenericDevicePage.qml
2018-05-25 13:18:55 +02:00

134 lines
5.1 KiB
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.1
import Mea 1.0
import "../components"
DevicePageBase {
id: root
Flickable {
id: flickable
anchors.fill: parent
contentHeight: contentColumn.height
contentWidth: parent.width
clip: true
property var d: root.device
property var dc: root.deviceClass
ColumnLayout {
id: contentColumn
width: parent.width
// spacing: app.margins
Repeater {
id: interfaceViewsRepeater
property bool unhandledInterface: false
// model: deviceClass.interfaces
delegate: Loader {
id: stateViewLoader
Layout.fillWidth: true
source: {
var src = "";
var options = []
switch (modelData) {
case "weather":
src = "WeatherView.qml";
break;
case "mediacontroller":
src = "MediaControllerView.qml"
break;
case "extendedvolumecontroller":
src = "ExtendedVolumeController.qml"
break;
case "temperaturesensor":
case "humiditysensor":
src = "SensorView.qml"
options.interfaceName = modelData;
break;
case "notifications":
src = "NotificationsView.qml"
break;
case "battery":
case "connectable":
// Handled by our base class
break;
case "sensor":
case "media":
// Ignore interfaces without any states/actions
break;
default:
print("unhandled interface", modelData)
interfaceViewsRepeater.unhandledInterface = true
}
return Qt.resolvedUrl("../customviews/" + src);
}
Binding {
target: stateViewLoader.item ? stateViewLoader.item : null
property: "device"
value: device
}
Binding {
target: stateViewLoader.item ? stateViewLoader.item : null
property: "deviceClass"
value: deviceClass
}
Binding {
target: stateViewLoader.item ? stateViewLoader.item : null
property: "interfaceName"
value: modelData
}
}
}
Repeater {
model: interfaceViewsRepeater.count == 0 || interfaceViewsRepeater.unhandledInterface ? deviceClass.actionTypes : null
delegate: ItemDelegate {
Layout.fillWidth: true
Layout.preferredHeight: delegateLoader.height
Loader {
id: delegateLoader
width: parent.width
property var actionType: deviceClass.actionTypes.get(index)
property var actionValue: device.hasState(actionType.id) ? device.states.getState(actionType.id).value : null
source: Qt.resolvedUrl("../delegates/ActionDelegate.qml")
Binding {
target: delegateLoader.item ? delegateLoader.item : null
property: "actionType"
value: delegateLoader.actionType
}
Binding {
target: delegateLoader.item ? delegateLoader.item : null
property: "actionState"
value: delegateLoader.actionValue
}
property int commandId: 0
Connections {
target: delegateLoader.item ? delegateLoader.item : null
onExecuteAction: {
Engine.deviceManager.executeAction(root.device.id, model.id, params)
}
}
Connections {
target: Engine.jsonRpcClient
onResponseReceived: {
if (commandId == delegateLoader.commandId) {
print("response:", response["error"])
}
}
}
}
}
}
}
}
}