72 lines
2.9 KiB
QML
72 lines
2.9 KiB
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.3
|
|
import Nymea 1.0
|
|
import "../components"
|
|
|
|
MeaListItemDelegate {
|
|
id: root
|
|
implicitHeight: app.delegateHeight
|
|
canDelete: true
|
|
progressive: false
|
|
|
|
property var eventDescriptor: null
|
|
readonly property var device: eventDescriptor ? Engine.deviceManager.devices.getDevice(eventDescriptor.deviceId) : null
|
|
readonly property var deviceClass: device ? Engine.deviceManager.deviceClasses.getDeviceClass(device.deviceClassId) : null
|
|
readonly property var iface: eventDescriptor.interfaceName ? Interfaces.findByName(eventDescriptor.interfaceName) : null
|
|
readonly property var eventType: deviceClass ? deviceClass.eventTypes.getEventType(eventDescriptor.eventTypeId)
|
|
: iface ? iface.eventTypes.findByName(eventDescriptor.interfaceEvent) : null
|
|
|
|
signal removeEventDescriptor()
|
|
|
|
onDeleteClicked: root.removeEventDescriptor()
|
|
|
|
iconName: root.device ? "../images/event.svg" : "../images/event-interface.svg"
|
|
text: qsTr("%1 - %2").arg(root.device ? root.device.name : root.iface.displayName).arg(root.eventType.displayName)
|
|
subText: {
|
|
var ret = qsTr("anytime");
|
|
for (var i = 0; i < root.eventDescriptor.paramDescriptors.count; i++) {
|
|
var paramDescriptor = root.eventDescriptor.paramDescriptors.get(i)
|
|
var operatorString;
|
|
switch (paramDescriptor.operatorType) {
|
|
case ParamDescriptor.ValueOperatorEquals:
|
|
operatorString = " = ";
|
|
break;
|
|
case ParamDescriptor.ValueOperatorNotEquals:
|
|
operatorString = " != ";
|
|
break;
|
|
case ParamDescriptor.ValueOperatorGreater:
|
|
operatorString = " > ";
|
|
break;
|
|
case ParamDescriptor.ValueOperatorGreaterOrEqual:
|
|
operatorString = " >= ";
|
|
break;
|
|
case ParamDescriptor.ValueOperatorLess:
|
|
operatorString = " < ";
|
|
break;
|
|
case ParamDescriptor.ValueOperatorLessOrEqual:
|
|
operatorString = " <= ";
|
|
break;
|
|
default:
|
|
operatorString = " ? ";
|
|
}
|
|
|
|
if (i === 0) {
|
|
// TRANSLATORS: example: "only if temperature > 5"
|
|
ret = qsTr("only if %1 %2 %3")
|
|
.arg(root.eventType.paramTypes.getParamType(paramDescriptor.paramTypeId).displayName)
|
|
.arg(operatorString)
|
|
.arg(paramDescriptor.value)
|
|
} else {
|
|
// TRANSLATORS: example: "and temperature > 5"
|
|
ret += " " + qsTr("and %1 %2 %3")
|
|
.arg(root.eventType.paramTypes.getParamType(paramDescriptor.paramTypeId).displayName)
|
|
.arg(operatorString)
|
|
.arg(model.value)
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
}
|