134 lines
4.9 KiB
QML
134 lines
4.9 KiB
QML
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright 2013 - 2020, nymea GmbH
|
|
* Contact: contact@nymea.io
|
|
*
|
|
* This file is part of nymea.
|
|
* This project including source code and documentation is protected by
|
|
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
* reproduction, publication, editing and translation, are reserved. The use of
|
|
* this project is subject to the terms of a license agreement to be concluded
|
|
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
* under https://nymea.io/license
|
|
*
|
|
* GNU General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, GNU version 3. This project 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
|
|
* this project. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For any further details and any questions please contact us under
|
|
* contact@nymea.io or see our FAQ/Licensing Information on
|
|
* https://nymea.io/license/faq
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
import QtQuick 2.4
|
|
import QtQuick.Controls 2.1
|
|
import QtQuick.Layouts 1.2
|
|
import "../components"
|
|
import "../delegates"
|
|
import Nymea 1.0
|
|
|
|
Page {
|
|
id: root
|
|
header: NymeaHeader {
|
|
text: qsTr("Configure Things")
|
|
onBackPressed: pageStack.pop()
|
|
|
|
HeaderButton {
|
|
imageSource: "../images/find.svg"
|
|
color: filterInput.shown ? app.accentColor : keyColor
|
|
onClicked: filterInput.shown = !filterInput.shown
|
|
|
|
}
|
|
|
|
HeaderButton {
|
|
imageSource: "../images/add.svg"
|
|
onClicked: pageStack.push(Qt.resolvedUrl("NewThingPage.qml"))
|
|
}
|
|
}
|
|
|
|
QtObject {
|
|
id: d
|
|
property var deviceToRemove: null
|
|
}
|
|
|
|
Connections {
|
|
target: engine.deviceManager
|
|
onRemoveDeviceReply: {
|
|
if (!d.deviceToRemove) {
|
|
return;
|
|
}
|
|
|
|
switch (params.deviceError) {
|
|
case "DeviceErrorNoError":
|
|
d.deviceToRemove = null;
|
|
return;
|
|
case "DeviceErrorDeviceInRule":
|
|
var removeMethodComponent = Qt.createComponent(Qt.resolvedUrl("../components/RemoveDeviceMethodDialog.qml"))
|
|
var popup = removeMethodComponent.createObject(root, {device: d.deviceToRemove, rulesList: params["ruleIds"]});
|
|
popup.open();
|
|
return;
|
|
default:
|
|
var errorDialog = Qt.createComponent(Qt.resolvedUrl("../components/ErrorDialog.qml"))
|
|
var popup = errorDialog.createObject(root, {errorCode: params.deviceError})
|
|
popup.open();
|
|
}
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
ListFilterInput {
|
|
id: filterInput
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
GroupedListView {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
clip: true
|
|
|
|
model: DevicesProxy {
|
|
id: deviceProxy
|
|
engine: _engine
|
|
groupByInterface: true
|
|
nameFilter: filterInput.shown ? filterInput.text : ""
|
|
}
|
|
|
|
delegate: ThingDelegate {
|
|
device: deviceProxy.getDevice(model.id)
|
|
// FIXME: This isn't entirely correct... we should have a way to know if a particular thing is in fact autocreated
|
|
// This check might be wrong for thingClasses with multiple create methods...
|
|
canDelete: !device.isChild || device.deviceClass.createMethods.indexOf("CreateMethodAuto") < 0
|
|
onClicked: {
|
|
pageStack.push(Qt.resolvedUrl("ConfigureThingPage.qml"), {device: device})
|
|
}
|
|
onDeleteClicked: {
|
|
d.deviceToRemove = device;
|
|
engine.deviceManager.removeDevice(d.deviceToRemove.id)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
EmptyViewPlaceholder {
|
|
anchors { left: parent.left; right: parent.right; margins: app.margins }
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
visible: engine.deviceManager.devices.count === 0 && !engine.deviceManager.fetchingData
|
|
title: qsTr("There are no things set up yet.")
|
|
text: qsTr("In order for your %1 system to be useful, go ahead and add some things.").arg(app.systemName)
|
|
imageSource: "qrc:/styles/%1/logo.svg".arg(styleController.currentStyle)
|
|
buttonText: qsTr("Add a thing")
|
|
onButtonClicked: pageStack.push(Qt.resolvedUrl("NewThingPage.qml"))
|
|
}
|
|
}
|