chore: add wip dashboard

This commit is contained in:
Nydragon 2024-11-12 01:37:33 +01:00
parent 6407497220
commit 4bd09169bd
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
5 changed files with 139 additions and 43 deletions

View file

@ -3,64 +3,161 @@ import QtQuick // for Text
import QtQuick.Layouts import QtQuick.Layouts
import "widgets/systray" import "widgets/systray"
import "widgets/workspaces" import "widgets/workspaces"
import "widgets/privacy"
import "widgets/battery" import "widgets/battery"
import "widgets/network" import "widgets/network"
import "widgets/notifcenter" import "widgets/notifcenter"
import "widgets/caffeine" import "widgets/caffeine"
import "windows/notificationtoast" import "windows/notificationtoast"
import "windows/workspace-view" import "windows/workspace-view"
import "base"
import QtQuick.Controls
import Quickshell.Io
Scope { Scope {
Variants { Variants {
model: Quickshell.screens model: Quickshell.screens
// the screen from the screens list will be injected into this property }
PanelWindow {
id: lbar Variants {
model: Quickshell.screens
delegate: Item {
id: root
property var modelData property var modelData
screen: modelData property bool enabled: false
anchors { PanelWindow {
top: true id: lbar
left: true screen: root.modelData
bottom: true
}
margins.left: 2
margins.top: 2
margins.bottom: 2
width: 30 anchors {
color: "transparent" top: true
NotificationToasts { left: true
win: lbar bottom: true
}
margins.left: 2
margins.top: 2
margins.bottom: 2
width: 30
color: "transparent"
NotificationToasts {
win: lbar
}
WorkspaceView {}
Rectangle {
color: "transparent"
anchors.margins: 5
height: parent.height
width: parent.width
ColumnLayout {
width: 30
Layout.maximumWidth: 30
// TODO: on click open a calendar view
ClockWidget {}
AudioOutput {}
SysTray {}
Workspaces {}
Battery {}
//Privacy {}
Network {}
Notifcenter {}
Caffeine {}
Item {
Layout.fillHeight: true
}
}
MouseArea {
id: mouse
onClicked: () => root.enabled = !root.enabled
height: width
width: 30
anchors.bottom: parent.bottom
cursorShape: Qt.PointingHandCursor
BRectangle {
anchors.fill: parent
Rectangle {
visible: mouse.containsMouse
anchors.fill: parent
radius: parent.radius
color: "#9F9F9FC8"
}
}
}
}
} }
WorkspaceView {} PanelWindow {
id: homeWindow
ColumnLayout { property bool animRunning: false
anchors.fill: parent
// TODO: on click open a calendar view screen: root.modelData
ClockWidget {}
AudioOutput {} IpcHandler {
target: "dash"
SysTray {} function toggle() {
root.enabled = !root.enabled;
}
}
Workspaces {} color: "transparent"
anchors {
top: true
left: true
bottom: true
right: true
}
Battery {} visible: animRunning || root.enabled
focusable: true
MouseArea {
anchors.fill: parent
onClicked: () => root.enabled = false
//Privacy {} BRectangle {
id: home
Network {} property var maxSize: 0
Notifcenter {} bottomRightRadius: 10
topRightRadius: 10
border.color: "transparent"
height: parent.height
width: root.enabled ? maxSize : 0
Caffeine {} MouseArea {
anchors.fill: parent
}
Item { Component.onCompleted: () => maxSize = homeWindow.screen.width * (2 / 7)
Layout.fillHeight: true
Behavior on width {
PropertyAnimation {
id: anim
duration: 100
Component.onCompleted: () => {
homeWindow.animRunning = Qt.binding(() => anim.running);
}
}
}
}
} }
} }
} }

View file

@ -1,5 +1,5 @@
import "root:base" import "../../base"
import "root:provider" import "../../provider"
import QtQuick import QtQuick
import Quickshell.Widgets import Quickshell.Widgets

View file

@ -1,4 +1,4 @@
import "root:base" import "../../base"
import QtQuick import QtQuick
import Quickshell.Io import Quickshell.Io
import Quickshell.Widgets import Quickshell.Widgets

View file

@ -1,4 +1,4 @@
import "root:base" import "../../base"
import Quickshell import Quickshell
import Quickshell.Widgets import Quickshell.Widgets
import Quickshell.Io import Quickshell.Io

View file

@ -9,11 +9,11 @@ import "root:provider"
import QtQuick.Effects import QtQuick.Effects
import "root:widgets/MprisBig" import "root:widgets/MprisBig"
PopupWindow { PanelWindow {
id: audioman id: audioman
anchor { anchors {
rect.x: lbar.width * 1.2 top: true
window: lbar left: true
} }
color: "transparent" color: "transparent"
@ -28,9 +28,8 @@ PopupWindow {
BRectangle { BRectangle {
id: display id: display
x: lbar.width * 1.2 x: 10
y: lbar.width * 0.2 y: 10
width: 500 width: 500
height: 600 height: 600
radius: 10 radius: 10