168 lines
5.3 KiB
QML
168 lines
5.3 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import EVChargerApp
|
|
|
|
AnimatedStackView {
|
|
id: stackView
|
|
|
|
function backPressed() {
|
|
if (depth > 1) {
|
|
pop()
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
initialItem: NavigationPage {
|
|
title: qsTr("Settings")
|
|
|
|
NavigationItem {
|
|
iconSource: "material-icons/grid_guides.svg"
|
|
title: qsTr("Charging configuration")
|
|
description: [
|
|
qsTr("Charging Speed"),
|
|
qsTr("kWh Limit"),
|
|
qsTr("Daily Trip"),
|
|
qsTr("Flexible energy tariff"),
|
|
qsTr("PV Surplus")
|
|
].join(" • ")
|
|
component: Component {
|
|
ChargingConfigurationPage {
|
|
}
|
|
}
|
|
visible: carApiKeyHelper.exists
|
|
}
|
|
NavigationItem {
|
|
iconSource: "material-icons/grid_guides.svg"
|
|
title: qsTr("Security")
|
|
description: [
|
|
qsTr("Cable"),
|
|
qsTr("Access"),
|
|
qsTr("Password"),
|
|
qsTr("Grid"),
|
|
qsTr("Ground check")
|
|
].join(" • ")
|
|
component: Component {
|
|
SecurityPage {
|
|
}
|
|
}
|
|
visible: carApiKeyHelper.exists
|
|
}
|
|
NavigationItem {
|
|
iconSource: "material-icons/grid_guides.svg"
|
|
title: qsTr("Sensors Configuration")
|
|
description: [
|
|
qsTr("Sensors"),
|
|
qsTr("Categories")
|
|
].join(" • ")
|
|
component: Component {
|
|
SensorsConfigurationPage {
|
|
}
|
|
}
|
|
visible: controllerApiKeyHelper.exists
|
|
}
|
|
NavigationItem {
|
|
ApiKeyValueHelper {
|
|
id: wifiStaApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "wen"
|
|
}
|
|
ApiKeyValueHelper {
|
|
id: cellularApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "cen"
|
|
}
|
|
ApiKeyValueHelper {
|
|
id: wifiApApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "wae"
|
|
}
|
|
ApiKeyValueHelper {
|
|
id: ethernetApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "ee"
|
|
}
|
|
ApiKeyValueHelper {
|
|
id: cloudApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "cwe"
|
|
}
|
|
ApiKeyValueHelper {
|
|
id: ocppApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "ocppe"
|
|
}
|
|
ApiKeyValueHelper {
|
|
id: mqttApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "mce"
|
|
}
|
|
|
|
iconSource: "material-icons/grid_guides.svg"
|
|
title: qsTr("Connection")
|
|
description: [
|
|
wifiStaApiKeyValueHelper.exists ? qsTr("Wi-Fi") : null,
|
|
cellularApiKeyValueHelper.exists ? qsTr("Cellular") : null,
|
|
wifiApApiKeyValueHelper.exists ? qsTr("Hotspot") : null,
|
|
ethernetApiKeyValueHelper.exists ? qsTr("Ethernet") : null,
|
|
cloudApiKeyValueHelper.exists ? qsTr("Cloud") : null,
|
|
ocppApiKeyValueHelper.exists ? qsTr("OCPP") : null,
|
|
mqttApiKeyValueHelper.exists ? qsTr("MQTT") : null,
|
|
qsTr("API Settings")
|
|
].filter(Boolean).join(" • ")
|
|
component: Component {
|
|
ConnectionPage {
|
|
}
|
|
}
|
|
}
|
|
NavigationItem {
|
|
ApiKeyValueHelper {
|
|
id: ledApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "lbr"
|
|
}
|
|
ApiKeyValueHelper {
|
|
id: controllerApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "ccd"
|
|
}
|
|
ApiKeyValueHelper {
|
|
id: displayApiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
apiKey: "dro"
|
|
}
|
|
|
|
iconSource: "material-icons/grid_guides.svg"
|
|
title: qsTr("General")
|
|
description: [
|
|
qsTr("Name"),
|
|
qsTr("Switch Language"),
|
|
qsTr("Notifications"),
|
|
qsTr("Date and time"),
|
|
ledApiKeyValueHelper.exists ? qsTr("LED") : null,
|
|
controllerApiKeyValueHelper.exists ? qsTr("Controller") : null,
|
|
displayApiKeyValueHelper.exists ? qsTr("Display settings") : null
|
|
].filter(Boolean).join(" • ")
|
|
component: Component {
|
|
GeneralPage {
|
|
}
|
|
}
|
|
}
|
|
NavigationItem {
|
|
iconSource: "material-icons/grid_guides.svg"
|
|
title: qsTr("About")
|
|
description: [
|
|
qsTr("Firmware"),
|
|
qsTr("Hardware information"),
|
|
qsTr("Licenses")
|
|
].join(" • ")
|
|
component: Component {
|
|
AboutPage {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|