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/nymea-app/ui/devicelistpages/LightsDeviceListPage.qml
Michael Zanetti 113963a77b add support for tagging
rework the main page completely by using the new features available for tagging
2018-07-02 01:10:31 +02:00

110 lines
4.6 KiB
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.1
import Nymea 1.0
import "../components"
Page {
property alias shownInterfaces: devicesProxy.shownInterfaces
header: GuhHeader {
text: qsTr("Lights")
onBackPressed: pageStack.pop()
}
ColumnLayout {
anchors.fill: parent
RowLayout {
Layout.fillWidth: true
Layout.margins: 10
Label {
text: qsTr("All")
Layout.fillWidth: true
}
Button {
text: qsTr("off")
onClicked: {
for (var i = 0; i < devicesProxy.count; i++) {
var device = devicesProxy.get(i);
var deviceClass = Engine.deviceManager.deviceClasses.getDeviceClass(device.deviceClassId);
var actionType = deviceClass.actionTypes.findByName("power");
var params = [];
var param1 = {};
param1["paramTypeId"] = actionType.paramTypes.get(0).id;
param1["value"] = false;
params.push(param1)
Engine.deviceManager.executeAction(device.id, actionType.id, params)
}
}
}
}
ListView {
Layout.fillHeight: true
Layout.fillWidth: true
clip: true
model: DevicesProxy {
id: devicesProxy
devices: Engine.deviceManager.devices
}
delegate: ItemDelegate {
id: itemDelegate
width: parent.width
height: childrenRect.height
property var device: devicesProxy.get(index);
property var deviceClass: Engine.deviceManager.deviceClasses.getDeviceClass(device.deviceClassId);
ColumnLayout {
anchors { left: parent.left; right: parent.right; top: parent.top }
RowLayout {
Layout.fillWidth: true
Layout.margins: 10
Label {
Layout.fillWidth: true
text: model.name
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
}
ThrottledSlider {
id: inlineSlider
visible: model.interfaces.indexOf("dimmablelight") >= 0 && parent.width > 350
property var stateType: itemDelegate.deviceClass.stateTypes.findByName("brightness");
property var actionType: itemDelegate.deviceClass.actionTypes.findByName("brightness");
property var actionState: itemDelegate.device.states.getState(stateType.id)
from: 0; to: 100
value: actionState.value
onMoved: {
var params = [];
var param1 = {};
param1["paramTypeId"] = actionType.paramTypes.get(0).id;
param1["value"] = value;
params.push(param1)
Engine.deviceManager.executeAction(device.id, actionType.id, params)
}
}
Switch {
property var stateType: itemDelegate.deviceClass.stateTypes.findByName("power");
property var actionType: itemDelegate.deviceClass.actionTypes.findByName("power");
property var actionState: itemDelegate.device.states.getState(stateType.id)
checked: actionState.value === true
onClicked: {
var params = [];
var param1 = {};
param1["paramTypeId"] = actionType.paramTypes.get(0).id;
param1["value"] = checked;
params.push(param1)
Engine.deviceManager.executeAction(device.id, actionType.id, params)
}
}
}
}
onClicked: {
pageStack.push(Qt.resolvedUrl("../devicepages/ColorLightDevicePage.qml"), {device: devicesProxy.get(index)})
}
}
}
}
}