254 lines
14 KiB
QML
254 lines
14 KiB
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-app.
|
|
*
|
|
* nymea-app is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nymea-app is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with nymea-app. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Nymea
|
|
|
|
import "../components"
|
|
import "../delegates"
|
|
|
|
Page {
|
|
id: root
|
|
// Needs to be set and have rule.ruleActions filled in with thingId and actionTypeId or interfaceName and interfaceAction
|
|
property RuleAction ruleAction: null
|
|
|
|
// optionally a rule which will be used to propose events params as param values
|
|
property Rule rule: null
|
|
|
|
readonly property Thing thing: ruleAction && ruleAction.thingId ? engine.thingManager.things.getThing(ruleAction.thingId) : null
|
|
readonly property var iface: ruleAction && ruleAction.interfaceName ? Interfaces.findByName(ruleAction.interfaceName) : null
|
|
readonly property ActionType actionType: thing ? thing.thingClass.actionTypes.getActionType(ruleAction.actionTypeId)
|
|
: iface ? iface.actionTypes.findByName(ruleAction.interfaceAction) : null
|
|
|
|
signal backPressed();
|
|
signal completed();
|
|
|
|
header: NymeaHeader {
|
|
text: actionType.displayName
|
|
onBackPressed: root.backPressed();
|
|
}
|
|
|
|
Flickable {
|
|
anchors.fill: parent
|
|
contentHeight: contentCol.height
|
|
|
|
ColumnLayout {
|
|
id: contentCol
|
|
width: parent.width
|
|
|
|
Repeater {
|
|
id: delegateRepeater
|
|
model: root.actionType.paramTypes
|
|
delegate: ColumnLayout {
|
|
Layout.fillWidth: true
|
|
property string type: {
|
|
if (staticParamRadioButton.checked) {
|
|
return "static"
|
|
}
|
|
if (eventParamRadioButton.checked) {
|
|
return "event"
|
|
}
|
|
if (stateValueRadioButton.checked) {
|
|
return "state"
|
|
}
|
|
return ""
|
|
}
|
|
|
|
property alias paramType: paramDelegate.paramType
|
|
property alias value: paramDelegate.value
|
|
property alias eventType: eventParamsComboBox.eventType
|
|
property alias eventParamTypeId: eventParamsComboBox.currentParamTypeId
|
|
property alias stateThingId: statePickerDelegate.thingId
|
|
property alias stateTypeId: statePickerDelegate.stateTypeId
|
|
|
|
GroupBox {
|
|
Layout.fillWidth: true
|
|
Layout.margins: app.margins
|
|
title: paramType.displayName
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
RadioButton {
|
|
id: staticParamRadioButton
|
|
text: qsTr("Use static value as parameter")
|
|
checked: root.ruleAction.ruleActionParams.getParam(root.actionType.paramTypes.get(index).id).isValueBased
|
|
font.pixelSize: app.smallFont
|
|
visible: eventParamRadioButton.visible || stateValueRadioButton.visible
|
|
}
|
|
RadioButton {
|
|
id: eventParamRadioButton
|
|
text: qsTr("Use event parameter")
|
|
visible: eventParamsComboBox.count > 0
|
|
checked: root.ruleAction.ruleActionParams.getParam(root.actionType.paramTypes.get(index).id).isEventParamBased
|
|
font.pixelSize: app.smallFont
|
|
}
|
|
RadioButton {
|
|
id: stateValueRadioButton
|
|
text: qsTr("Use a thing's state value")
|
|
font.pixelSize: app.smallFont
|
|
visible: engine.jsonRpcClient.ensureServerVersion("2.0")
|
|
checked: root.ruleAction.ruleActionParams.getParam(root.actionType.paramTypes.get(index).id).isStateValueBased
|
|
}
|
|
|
|
ThinDivider {
|
|
visible: staticParamRadioButton.visible
|
|
}
|
|
|
|
ParamDelegate {
|
|
id: paramDelegate
|
|
Layout.fillWidth: true
|
|
hoverEnabled: false
|
|
padding: 0
|
|
paramType: root.actionType.paramTypes.get(index)
|
|
enabled: staticParamRadioButton.checked
|
|
nameVisible: false
|
|
value: root.ruleAction.ruleActionParams.getParam(root.actionType.paramTypes.get(index).id).value
|
|
visible: staticParamRadioButton.checked
|
|
placeholderText: qsTr("Insert value here")
|
|
}
|
|
|
|
ComboBox {
|
|
id: eventParamsComboBox
|
|
Layout.fillWidth: true
|
|
visible: eventParamRadioButton.checked && count > 0
|
|
property var eventDescriptor: root.rule.eventDescriptors.count === 1 ? root.rule.eventDescriptors.get(0) : null
|
|
property Thing thing: eventDescriptor ? engine.thingManager.things.getThing(eventDescriptor.thingId) : null
|
|
property EventType eventType: thing ? thing.thingClass.eventTypes.getEventType(eventDescriptor.eventTypeId) : null
|
|
|
|
property var currentParamDescriptor: eventType.paramTypes.get(eventParamsComboBox.currentIndex)
|
|
property var currentParamTypeId: currentParamDescriptor.id
|
|
Component.onCompleted: {
|
|
currentIndex = 0;
|
|
}
|
|
|
|
model: eventType.paramTypes
|
|
delegate: ItemDelegate {
|
|
width: parent.width
|
|
text: eventParamsComboBox.thing.name + " - " + eventParamsComboBox.eventType.displayName + " - " + eventParamsComboBox.eventType.paramTypes.getParamType(model.id).displayName
|
|
}
|
|
contentItem: Label {
|
|
id: eventParamsComboBoxContentItem
|
|
anchors.fill: parent
|
|
anchors.margins: app.margins
|
|
text: eventParamsComboBox.thing.name + " - " + eventParamsComboBox.eventType.displayName + " - " + eventParamsComboBox.currentParamDescriptor.displayName
|
|
elide: Text.ElideRight
|
|
}
|
|
}
|
|
|
|
NymeaSwipeDelegate {
|
|
id: statePickerDelegate
|
|
Layout.fillWidth: true
|
|
text: thingId === null || stateTypeId === null
|
|
? qsTr("Select a state")
|
|
: thing.name + " - " + thing.thingClass.stateTypes.getStateType(stateTypeId).displayName
|
|
visible: stateValueRadioButton.checked
|
|
|
|
property var thingId: root.ruleAction.ruleActionParams.getParam(root.actionType.paramTypes.get(index).id).stateThingId
|
|
property var stateTypeId: root.ruleAction.ruleActionParams.getParam(root.actionType.paramTypes.get(index).id).stateTypeId
|
|
|
|
readonly property Thing thing: engine.thingManager.things.getThing(thingId)
|
|
|
|
onClicked: {
|
|
var page = pageStack.push(Qt.resolvedUrl("SelectThingPage.qml"), {showStates: true, showEvents: false, showActions: false });
|
|
page.thingSelected.connect(function(thing) {
|
|
print("Thing selected", thing.name);
|
|
statePickerDelegate.thingId = thing.id
|
|
var selectStatePage = pageStack.replace(Qt.resolvedUrl("SelectStatePage.qml"), {thing: thing})
|
|
selectStatePage.stateSelected.connect(function(stateTypeId) {
|
|
print("State selected", stateTypeId)
|
|
pageStack.pop();
|
|
statePickerDelegate.stateTypeId = stateTypeId;
|
|
})
|
|
})
|
|
page.backPressed.connect(function() {
|
|
pageStack.pop();
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Label {
|
|
// id: paramNameLabel
|
|
// Layout.fillWidth: true
|
|
// Layout.leftMargin: app.margins
|
|
// Layout.rightMargin: app.margins
|
|
// Layout.topMargin: app.margins
|
|
// elide: Text.ElideRight
|
|
// text: paramType.displayName
|
|
// font.pixelSize: app.largeFont
|
|
// }
|
|
|
|
|
|
// ThinDivider {}
|
|
}
|
|
}
|
|
Item {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
}
|
|
Button {
|
|
text: qsTr("OK")
|
|
Layout.fillWidth: true
|
|
Layout.margins: app.margins
|
|
onClicked: {
|
|
var params = [];
|
|
for (var i = 0; i < delegateRepeater.count; i++) {
|
|
var paramDelegate = delegateRepeater.itemAt(i);
|
|
print("Working on parameter", paramDelegate.paramType, paramDelegate.paramType.id, paramDelegate.value, paramDelegate.eventType, paramDelegate.eventParamTypeId, paramDelegate.stateThingId, paramDelegate.stateTypeId)
|
|
|
|
if (paramDelegate.type === "static") {
|
|
if (root.thing) {
|
|
print("Setting static value rule action param", paramDelegate.paramType.id, paramDelegate.value)
|
|
root.ruleAction.ruleActionParams.setRuleActionParam(paramDelegate.paramType.id, paramDelegate.value)
|
|
} else if (root.iface) {
|
|
print("Setting static value rule action param by name", root.actionType.paramTypes.get(i).name, paramDelegate.value)
|
|
root.ruleAction.ruleActionParams.setRuleActionParamByName(root.actionType.paramTypes.get(i).name, paramDelegate.value)
|
|
}
|
|
} else if (paramDelegate.type === "event") {
|
|
if (root.thing) {
|
|
print("adding event based rule action param", paramDelegate.paramType.id, paramDelegate.eventType.id, paramDelegate.eventParamTypeId)
|
|
root.ruleAction.ruleActionParams.setRuleActionParamEvent(paramDelegate.paramType.id, paramDelegate.eventType.id, paramDelegate.eventParamTypeId)
|
|
} else if (root.iface) {
|
|
print("adding event based rule action param by name", root.actionType.paramTypes.get(i).name, paramDelegate.eventType.id, paramDelegate.eventParamTypeId)
|
|
root.ruleAction.ruleActionParams.setRuleActionParamEventByName(root.actionType.paramTypes.get(i).name, paramDelegate.eventType.id, paramDelegate.eventParamTypeId)
|
|
}
|
|
} else if (paramDelegate.type === "state") {
|
|
if (root.thing) {
|
|
print("adding state value based rule action param", paramDelegate.paramType.id, paramDelegate.stateThingId, paramDelegate.stateTypeId)
|
|
root.ruleAction.ruleActionParams.setRuleActionParamState(paramDelegate.paramType.id, paramDelegate.stateThingId, paramDelegate.stateTypeId)
|
|
} else if (root.iface) {
|
|
print("adding state value based rule action param by name", root.actionType.paramTypes.get(i).name, paramDelegate.stateThingId, paramDelegate.stateTypeId)
|
|
root.ruleAction.ruleActionParams.setRuleActionParamStateByName(root.actionType.paramTypes.get(i).name, paramDelegate.stateThingId, paramDelegate.stateTypeId)
|
|
}
|
|
}
|
|
}
|
|
root.completed()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|