211 lines
6.7 KiB
QML
211 lines
6.7 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import M3Shapes
|
|
import Caelestia.Config
|
|
import qs.components
|
|
import qs.components.controls
|
|
import qs.components.effects
|
|
import qs.services
|
|
|
|
CustomMouseArea {
|
|
id: root
|
|
|
|
required property DashboardState dashState
|
|
|
|
readonly property int currMonth: dashState.currentDate.getMonth()
|
|
readonly property int currYear: dashState.currentDate.getFullYear()
|
|
|
|
function onWheel(event: WheelEvent): void {
|
|
if (event.angleDelta.y > 0)
|
|
root.dashState.currentDate = new Date(root.currYear, root.currMonth - 1, 1);
|
|
else if (event.angleDelta.y < 0)
|
|
root.dashState.currentDate = new Date(root.currYear, root.currMonth + 1, 1);
|
|
}
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
implicitHeight: inner.implicitHeight + inner.anchors.margins * 2
|
|
|
|
acceptedButtons: Qt.MiddleButton
|
|
onClicked: root.dashState.currentDate = new Date()
|
|
|
|
ColumnLayout {
|
|
id: inner
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Tokens.padding.large
|
|
spacing: Tokens.spacing.extraSmall
|
|
|
|
RowLayout {
|
|
id: monthNavigationRow
|
|
|
|
Layout.fillWidth: true
|
|
spacing: Tokens.spacing.extraSmall
|
|
|
|
IconButton {
|
|
icon: "chevron_left"
|
|
type: IconButton.Text
|
|
font: Tokens.font.icon.builders.small.weight(Font.Bold).build()
|
|
inactiveOnColour: Colours.palette.m3tertiary
|
|
padding: Tokens.padding.small
|
|
onClicked: root.dashState.currentDate = new Date(root.currYear, root.currMonth - 1, 1)
|
|
}
|
|
|
|
Item {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
implicitWidth: monthYearDisplay.implicitWidth + Tokens.padding.large * 2
|
|
implicitHeight: monthYearDisplay.implicitHeight + Tokens.padding.extraSmall * 2
|
|
|
|
StateLayer {
|
|
color: Colours.palette.m3primary
|
|
radius: Tokens.rounding.full
|
|
disabled: {
|
|
const now = new Date();
|
|
return root.currMonth === now.getMonth() && root.currYear === now.getFullYear();
|
|
}
|
|
onClicked: root.dashState.currentDate = new Date()
|
|
}
|
|
|
|
StyledText {
|
|
id: monthYearDisplay
|
|
|
|
anchors.centerIn: parent
|
|
text: grid.title
|
|
color: Colours.palette.m3primary
|
|
font: Tokens.font.title.builders.small.capitalisation(Font.Capitalize).build()
|
|
}
|
|
}
|
|
|
|
IconButton {
|
|
icon: "chevron_right"
|
|
type: IconButton.Text
|
|
font: Tokens.font.icon.builders.small.weight(Font.Bold).build()
|
|
inactiveOnColour: Colours.palette.m3tertiary
|
|
padding: Tokens.padding.small
|
|
onClicked: root.dashState.currentDate = new Date(root.currYear, root.currMonth + 1, 1)
|
|
}
|
|
}
|
|
|
|
DayOfWeekRow {
|
|
id: daysRow
|
|
|
|
Layout.fillWidth: true
|
|
locale: grid.locale
|
|
|
|
delegate: StyledText {
|
|
required property var model
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
text: model.shortName
|
|
font: Tokens.font.body.builders.small.weight(Font.Medium).build()
|
|
color: (model.day === 0 || model.day === 6) ? Colours.palette.m3secondary : Colours.palette.m3onSurfaceVariant
|
|
}
|
|
}
|
|
|
|
Item {
|
|
Layout.fillWidth: true
|
|
implicitHeight: grid.implicitHeight
|
|
|
|
MonthGrid {
|
|
id: grid
|
|
|
|
month: root.currMonth
|
|
year: root.currYear
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 3
|
|
locale: Qt.locale()
|
|
|
|
delegate: Item {
|
|
id: dayItem
|
|
|
|
required property var model
|
|
|
|
implicitWidth: implicitHeight
|
|
implicitHeight: text.implicitHeight + Tokens.padding.small
|
|
|
|
StyledText {
|
|
id: text
|
|
|
|
anchors.centerIn: parent
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
text: grid.locale.toString(dayItem.model.day)
|
|
color: {
|
|
const dayOfWeek = dayItem.model.date.getUTCDay();
|
|
if (dayOfWeek === 0 || dayOfWeek === 6)
|
|
return Colours.palette.m3secondary;
|
|
|
|
return Colours.palette.m3onSurfaceVariant;
|
|
}
|
|
opacity: dayItem.model.today || dayItem.model.month === grid.month ? 1 : 0.4
|
|
font: Tokens.font.body.small
|
|
}
|
|
}
|
|
}
|
|
|
|
MaterialShape {
|
|
id: todayIndicator
|
|
|
|
readonly property Item todayItem: grid.contentItem.children.find(c => c.model.today) ?? null
|
|
property Item today
|
|
|
|
onTodayItemChanged: {
|
|
if (todayItem)
|
|
today = todayItem;
|
|
}
|
|
|
|
// I have no idea why it needs -1 but oh well
|
|
x: today ? today.x + (today.width - implicitWidth) / 2 - 1 : 0
|
|
y: today ? today.y - Tokens.padding.extraSmall - 1 : 0
|
|
|
|
implicitSize: today ? Math.max(today.implicitWidth, today.implicitHeight) + Tokens.padding.extraSmall * 2 : 0
|
|
shape: MaterialShape.Sunny
|
|
|
|
clip: true
|
|
color: Colours.palette.m3primary
|
|
|
|
opacity: todayItem ? 1 : 0
|
|
scale: todayItem ? 1 : 0.7
|
|
|
|
Colouriser {
|
|
x: -todayIndicator.x
|
|
y: -todayIndicator.y
|
|
|
|
implicitWidth: grid.width
|
|
implicitHeight: grid.height
|
|
|
|
source: grid
|
|
sourceColor: Colours.palette.m3onSurface
|
|
colorizationColor: Colours.palette.m3onPrimary
|
|
}
|
|
|
|
Behavior on opacity {
|
|
Anim {
|
|
type: Anim.DefaultEffects
|
|
}
|
|
}
|
|
|
|
Behavior on scale {
|
|
Anim {
|
|
type: Anim.FastSpatial
|
|
}
|
|
}
|
|
|
|
Behavior on x {
|
|
Anim {}
|
|
}
|
|
|
|
Behavior on y {
|
|
Anim {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|