nosignal-shell/modules/dashboard/dash/Media.qml
2026-05-02 21:26:56 +10:00

180 lines
5 KiB
QML

pragma ComponentBehavior: Bound
import QtQuick
import Caelestia.Components
import Caelestia.Config
import Caelestia.Services
import qs.components
import qs.components.controls
import qs.components.widgets
import qs.services
import qs.utils
Item {
id: root
property real playerProgress: {
const active = Players.active;
return active?.length ? (active.position % active.length) / active.length : 0;
}
readonly property real arcCoverGap: Tokens.spacing.extraSmall
anchors.top: parent.top
anchors.bottom: parent.bottom
implicitWidth: Tokens.sizes.dashboard.mediaWidth
Behavior on playerProgress {
Anim {
type: Anim.StandardLarge
}
}
Timer {
running: Players.active?.isPlaying ?? false
interval: GlobalConfig.dashboard.mediaUpdateInterval
triggeredOnStart: true
repeat: true
onTriggered: Players.active?.positionChanged()
}
ServiceRef {
service: Audio.beatTracker
}
CircularProgress {
id: prog
anchors.centerIn: cover
implicitSize: cover.width + root.arcCoverGap + thickness * 2
fgColour: Colours.palette.m3primary
strokeWidth: Tokens.sizes.dashboard.mediaProgressThickness
startAngle: -90 - sweepAngle / 2
sweepAngle: Tokens.sizes.dashboard.mediaProgressSweep
value: root.playerProgress
wavy: true
waveFrequency: 8
waveDuration: 2000
wavePaused: !Players.active?.isPlaying
}
CoverArt {
id: cover
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
anchors.margins: Tokens.padding.medium + root.arcCoverGap + prog.thickness
implicitHeight: width
}
StyledText {
id: title
anchors.top: cover.bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: Tokens.spacing.medium
animate: true
horizontalAlignment: Text.AlignHCenter
text: (Players.active?.trackTitle ?? qsTr("No media")) || qsTr("Unknown title")
color: Colours.palette.m3primary
font: Tokens.font.title.small
width: parent.implicitWidth - Tokens.padding.extraLargeIncreased
elide: Text.ElideRight
}
StyledText {
id: album
anchors.top: title.bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: Tokens.spacing.small
animate: true
horizontalAlignment: Text.AlignHCenter
text: (Players.active?.trackAlbum ?? qsTr("No media")) || qsTr("Unknown album")
color: Colours.palette.m3outline
font: Tokens.font.body.small
width: parent.implicitWidth - Tokens.padding.extraLargeIncreased
elide: Text.ElideRight
}
StyledText {
id: artist
anchors.top: album.bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: Tokens.spacing.small
animate: true
horizontalAlignment: Text.AlignHCenter
text: (Players.active?.trackArtist ?? qsTr("No media")) || qsTr("Unknown artist")
color: Colours.palette.m3secondary
width: parent.implicitWidth - Tokens.padding.extraLargeIncreased
elide: Text.ElideRight
}
ButtonRow {
id: controls
anchors.top: artist.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.topMargin: Tokens.spacing.medium
anchors.margins: Tokens.padding.large
spacing: Tokens.spacing.small
IconButton {
type: IconButton.Tonal
icon: "skip_previous"
isRound: true
shapeMorph: true
disabled: !Players.active?.canGoPrevious
onClicked: Players.active?.previous()
}
IconButton {
fillWidth: true
icon: Players.active?.isPlaying ? "pause" : "play_arrow"
isRound: true
shapeMorph: true
checked: Players.active?.isPlaying ?? false
disabled: !Players.active?.canTogglePlaying
onClicked: Players.active?.togglePlaying()
}
IconButton {
type: IconButton.Tonal
icon: "skip_next"
isRound: true
shapeMorph: true
disabled: !Players.active?.canGoNext
onClicked: Players.active?.next()
}
}
AnimatedImage {
id: bongocat
anchors.top: controls.bottom
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.topMargin: Tokens.spacing.small
anchors.bottomMargin: Tokens.padding.large
anchors.margins: Tokens.padding.extraLargeIncreased
playing: Players.active?.isPlaying ?? false
speed: Audio.beatTracker.bpm / Config.general.mediaGifSpeedAdjustment // qmllint disable unresolved-type
source: Paths.absolutePath(Config.paths.mediaGif)
asynchronous: true
fillMode: AnimatedImage.PreserveAspectFit
}
}