C++ / fmt (pull_request) Successful in 4s
JS/TS / fmt (pull_request) Successful in 20s
JS/TS / lint (pull_request) Successful in 22s
Python / static (pull_request) Successful in 57s
Rust / fmt (pull_request) Successful in 1m2s
C++ / build (pull_request) Successful in 2m10s
Rust / build (pull_request) Successful in 1m50s
Rust / clippy (pull_request) Successful in 1m25s
Python / verify (pull_request) Successful in 2m58s
C++ / clang-tidy (pull_request) Successful in 7m8s
83 lines
1.8 KiB
QML
83 lines
1.8 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import Quickshell
|
|
import Quickshell.Widgets
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import ZShell.Config
|
|
import qs.Components
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property PersistentProperties dashState
|
|
readonly property real nonAnimHeight: view.implicitHeight + viewWrapper.anchors.margins * 2
|
|
readonly property real nonAnimWidth: view.implicitWidth + viewWrapper.anchors.margins * 2
|
|
required property PersistentProperties visibilities
|
|
|
|
implicitHeight: nonAnimHeight
|
|
implicitWidth: nonAnimWidth
|
|
|
|
Behavior on implicitHeight {
|
|
Anim {
|
|
}
|
|
}
|
|
Behavior on implicitWidth {
|
|
Anim {
|
|
}
|
|
}
|
|
|
|
ClippingRectangle {
|
|
id: viewWrapper
|
|
|
|
anchors.bottom: parent.bottom
|
|
anchors.left: parent.left
|
|
anchors.margins: Tokens.padding.small
|
|
anchors.right: parent.right
|
|
anchors.top: parent.top
|
|
color: "transparent"
|
|
radius: Tokens.rounding.extraLarge - anchors.margins
|
|
|
|
Item {
|
|
id: view
|
|
|
|
readonly property int currentIndex: root.dashState?.currentTab
|
|
readonly property Item currentItem: row.children[currentIndex]
|
|
|
|
anchors.fill: parent
|
|
implicitHeight: currentItem.implicitHeight
|
|
implicitWidth: currentItem.implicitWidth
|
|
|
|
RowLayout {
|
|
id: row
|
|
|
|
Pane {
|
|
index: 0
|
|
|
|
sourceComponent: Dash {
|
|
dashState: root.dashState
|
|
visibilities: root.visibilities
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
component Pane: Loader {
|
|
id: pane
|
|
|
|
required property int index
|
|
|
|
Layout.alignment: Qt.AlignTop
|
|
|
|
Component.onCompleted: active = Qt.binding(() => {
|
|
// Always keep current tab loaded
|
|
if (pane.index === view.currentIndex)
|
|
return true;
|
|
const vx = Math.floor(view.visibleArea.xPosition * view.contentWidth);
|
|
const vex = Math.floor(vx + view.visibleArea.widthRatio * view.contentWidth);
|
|
return (vx >= x && vx <= x + implicitWidth) || (vex >= x && vex <= x + implicitWidth);
|
|
})
|
|
}
|
|
}
|