This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/nymea-app/ui/components/SelectionTabs.qml
2023-05-24 20:00:14 +02:00

61 lines
1.9 KiB
QML

import QtQuick 2.9
import QtQuick.Layouts 1.2
import QtQuick.Controls 2.2
import Nymea 1.0
Rectangle {
id: root
color: Style.tileBackgroundColor
property color selectionColor: Style.tileOverlayColor
radius: Style.smallCornerRadius
implicitHeight: layout.implicitHeight
property int currentIndex: 0
property alias model: repeater.model
readonly property var currentValue: model.hasOwnProperty("get") ? model.get(currentIndex) : model[currentIndex]
signal tabSelected(int index)
Rectangle {
x: repeater.count > 0 ? repeater.itemAt(root.currentIndex).x + 1 : 0
anchors.verticalCenter: parent.verticalCenter
Behavior on x { NumberAnimation { duration: 150; easing.type: Easing.InOutQuad } }
height: layout.height - 2
width: Math.floor(root.width / repeater.count) - 2
color: root.selectionColor
radius: Style.smallCornerRadius
}
RowLayout {
id: layout
anchors { left: parent.left; right: parent.right; verticalCenter: parent.verticalCenter }
spacing: 0
Repeater {
id: repeater
delegate: Item {
Layout.fillWidth: true
height: label.implicitHeight + Style.smallMargins
Label {
id: label
anchors.fill: parent
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
text: modelData
}
MouseArea {
anchors.fill: parent
onClicked: {
print("current index:", index)
root.currentIndex = index
root.tabSelected(index)
}
}
}
}
}
}