69 lines
3.2 KiB
QML
69 lines
3.2 KiB
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Controls.Material 2.2
|
|
import QtQuick.Layouts 1.2
|
|
import Nymea 1.0
|
|
|
|
InfoPaneBase {
|
|
id: root
|
|
|
|
property Thing thing: null
|
|
|
|
readonly property bool setupInProgress: root.thing.setupStatus == Thing.ThingSetupStatusInProgress
|
|
readonly property bool setupFailure: root.thing.setupStatus == Thing.ThingSetupStatusFailed
|
|
readonly property State batteryState: root.thing.stateByName("batteryLevel")
|
|
readonly property State batteryCriticalState: root.thing.stateByName("batteryCritical")
|
|
readonly property State connectedState: root.thing.stateByName("connected")
|
|
readonly property State signalStrengthState: root.thing.stateByName("signalStrength")
|
|
readonly property State updateStatusState: root.thing.stateByName("updateStatus")
|
|
readonly property bool updateAvailable: updateStatusState && updateStatusState.value === "available"
|
|
readonly property bool updateRunning: updateStatusState && updateStatusState.value === "updating"
|
|
readonly property bool isWireless: root.thing.thingClass.interfaces.indexOf("wirelessconnectable") >= 0
|
|
readonly property bool alertState: setupFailure ||
|
|
(connectedState !== null && connectedState.value === false) ||
|
|
(batteryCriticalState !== null && batteryCriticalState.value === true)
|
|
readonly property bool batteryCritical: batteryCriticalState && batteryCriticalState.value === true
|
|
readonly property bool highlightState: updateAvailable || updateRunning
|
|
|
|
shown: setupInProgress || setupFailure || batteryState !== null || (connectedState !== null && connectedState.value === false) || signalStrengthState !== null || updateAvailable
|
|
|
|
color: alertState ? "red"
|
|
: highlightState ? Style.accentColor : "transparent"
|
|
|
|
contentItem: RowLayout {
|
|
id: contentRow
|
|
anchors { left: parent.left; top: parent.top; right: parent.right }
|
|
|
|
Label {
|
|
id: textLabel
|
|
color: root.alertState || root.highlightState ? "white" : Style.foregroundColor
|
|
font.pixelSize: app.smallFont
|
|
Layout.fillWidth: true
|
|
horizontalAlignment: Text.AlignRight
|
|
wrapMode: Text.WordWrap
|
|
text: root.setupInProgress ?
|
|
qsTr("Thing is being set up...")
|
|
: root.setupFailure ?
|
|
(root.thing.setupDisplayMessage.length > 0 ? root.thing.setupDisplayMessage : qsTr("Thing setup failed!"))
|
|
: (root.connectedState !== null && root.connectedState.value === false) ?
|
|
qsTr("Thing is not connected!")
|
|
: root.updateAvailable ?
|
|
qsTr("Update available!")
|
|
: root.updateRunning ?
|
|
qsTr("Updating...")
|
|
: root.batteryCritical ?
|
|
qsTr("Thing runs out of battery!")
|
|
: ""
|
|
|
|
}
|
|
|
|
ThingStatusIcons {
|
|
thing: root.thing
|
|
color: root.alertState || root.highlightState ? "white" : Style.iconColor
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|