mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-04 20:28:23 +02:00
233 lines
7.5 KiB
QML
233 lines
7.5 KiB
QML
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Services.Mpris
|
|
import qs.Ui
|
|
import qs.Commons
|
|
|
|
BarWidget {
|
|
id: root
|
|
moduleName: "media"
|
|
|
|
|
|
function setting(name, fallback) {
|
|
var value = settings ? settings[name] : undefined
|
|
return value === undefined || value === null ? fallback : value
|
|
}
|
|
|
|
readonly property var players: Mpris.players ? Mpris.players.values : []
|
|
readonly property var activePlayer: {
|
|
var playing = null
|
|
for (var i = 0; i < players.length; i++) {
|
|
var p = players[i]
|
|
if (!p) continue
|
|
if (p.isPlaying) return p
|
|
if (!playing && p.trackTitle) playing = p
|
|
}
|
|
return playing
|
|
}
|
|
|
|
readonly property bool hasMedia: activePlayer !== null && (activePlayer.trackTitle || activePlayer.trackArtist)
|
|
readonly property string playIcon: activePlayer && activePlayer.isPlaying ? "" : ""
|
|
readonly property string title: activePlayer ? (activePlayer.trackTitle || "") : ""
|
|
readonly property string artist: activePlayer ? (activePlayer.trackArtist || "") : ""
|
|
|
|
property bool popupOpen: false
|
|
|
|
function close() { popupOpen = false }
|
|
property real maxLabelWidth: 180
|
|
|
|
visible: hasMedia
|
|
implicitWidth: hasMedia ? row.implicitWidth + Style.space(14) : 0
|
|
implicitHeight: bar ? bar.barSize : 26
|
|
|
|
Row {
|
|
id: row
|
|
anchors.centerIn: parent
|
|
spacing: Style.space(6)
|
|
|
|
Text {
|
|
id: glyph
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: root.playIcon
|
|
color: activePlayer && activePlayer.isPlaying ? root.bar.foreground : Qt.darker(root.bar.foreground, 1.5)
|
|
font.family: root.bar.fontFamily
|
|
font.pixelSize: Style.font.body
|
|
Behavior on color { ColorAnimation { duration: 160 } }
|
|
}
|
|
|
|
Item {
|
|
id: scrollClip
|
|
width: Math.min(root.maxLabelWidth, labelText.implicitWidth)
|
|
height: glyph.height
|
|
clip: true
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
visible: !root.bar.vertical && root.title !== ""
|
|
|
|
Text {
|
|
id: labelText
|
|
text: root.title + (root.artist ? " · " + root.artist : "")
|
|
color: root.bar.foreground
|
|
font.family: root.bar.fontFamily
|
|
font.pixelSize: Style.font.body
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
property bool needsScroll: implicitWidth > scrollClip.width
|
|
|
|
NumberAnimation on x {
|
|
id: scrollAnim
|
|
running: labelText.needsScroll && !root.popupOpen && !root.bar.vertical
|
|
loops: Animation.Infinite
|
|
duration: Math.max(6000, labelText.implicitWidth * 25)
|
|
from: scrollClip.width
|
|
to: -labelText.implicitWidth
|
|
easing.type: Easing.Linear
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: root.activePlayer ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton | Qt.MiddleButton
|
|
|
|
onClicked: function(mouse) {
|
|
if (!root.activePlayer) return
|
|
if (mouse.button === Qt.MiddleButton) {
|
|
if (root.activePlayer.canGoNext) root.activePlayer.next()
|
|
} else if (mouse.button === Qt.RightButton) {
|
|
root.popupOpen = !root.popupOpen
|
|
} else {
|
|
if (root.activePlayer.canTogglePlaying) root.activePlayer.togglePlaying()
|
|
}
|
|
}
|
|
onWheel: function(wheel) {
|
|
if (!root.activePlayer) return
|
|
if (wheel.angleDelta.y > 0 && root.activePlayer.canGoPrevious) root.activePlayer.previous()
|
|
else if (wheel.angleDelta.y < 0 && root.activePlayer.canGoNext) root.activePlayer.next()
|
|
}
|
|
onEntered: if (root.bar) root.bar.showTooltip(root, root.hasMedia ? (root.title + (root.artist ? " — " + root.artist : "")) : "")
|
|
onExited: if (root.bar) root.bar.hideTooltip(root)
|
|
}
|
|
|
|
PopupCard {
|
|
id: popup
|
|
anchorItem: root
|
|
bar: root.bar
|
|
owner: root
|
|
open: root.popupOpen
|
|
contentWidth: popup.fittedContentWidth(Style.space(320))
|
|
contentHeight: popup.fittedContentHeight(column.implicitHeight)
|
|
|
|
Column {
|
|
id: column
|
|
anchors.fill: parent
|
|
spacing: Style.space(10)
|
|
|
|
Row {
|
|
spacing: Style.space(10)
|
|
width: parent.width
|
|
|
|
Rectangle {
|
|
width: Style.space(64)
|
|
height: Style.space(64)
|
|
radius: Style.spacing.labelGap
|
|
color: Style.normalFillFor(root.bar.foreground, Color.accent)
|
|
border.color: Style.normalBorderFor(root.bar.foreground, Color.accent)
|
|
border.width: Style.normalBorderWidth
|
|
|
|
Image {
|
|
anchors.fill: parent
|
|
anchors.margins: Style.space(2)
|
|
fillMode: Image.PreserveAspectCrop
|
|
asynchronous: true
|
|
source: root.activePlayer && root.activePlayer.trackArtUrl ? root.activePlayer.trackArtUrl : ""
|
|
visible: source !== ""
|
|
}
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
visible: !root.activePlayer || !root.activePlayer.trackArtUrl
|
|
text: ""
|
|
color: root.bar.foreground
|
|
font.family: root.bar.fontFamily
|
|
font.pixelSize: Style.font.displayLarge
|
|
}
|
|
}
|
|
|
|
Column {
|
|
spacing: Style.space(4)
|
|
width: parent.width - Style.space(74)
|
|
|
|
Text {
|
|
text: root.title || "Nothing playing"
|
|
color: root.bar.foreground
|
|
font.family: root.bar.fontFamily
|
|
font.pixelSize: Style.font.subtitle
|
|
font.bold: true
|
|
elide: Text.ElideRight
|
|
width: parent.width
|
|
}
|
|
|
|
Text {
|
|
text: root.artist
|
|
color: Qt.darker(root.bar.foreground, 1.3)
|
|
font.family: root.bar.fontFamily
|
|
font.pixelSize: Style.font.bodySmall
|
|
elide: Text.ElideRight
|
|
width: parent.width
|
|
visible: text !== ""
|
|
}
|
|
|
|
Text {
|
|
text: root.activePlayer && root.activePlayer.trackAlbum ? root.activePlayer.trackAlbum : ""
|
|
color: Qt.darker(root.bar.foreground, 1.6)
|
|
font.family: root.bar.fontFamily
|
|
font.pixelSize: Style.font.caption
|
|
elide: Text.ElideRight
|
|
width: parent.width
|
|
visible: text !== ""
|
|
}
|
|
}
|
|
}
|
|
|
|
Row {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
spacing: Style.space(6)
|
|
|
|
Button {
|
|
iconText: ""
|
|
foreground: root.bar.foreground
|
|
horizontalPadding: Style.spacing.controlPaddingX
|
|
verticalPadding: Style.spacing.controlPaddingY
|
|
enabled: root.activePlayer && root.activePlayer.canGoPrevious
|
|
opacity: enabled ? 1.0 : 0.4
|
|
onClicked: if (root.activePlayer) root.activePlayer.previous()
|
|
}
|
|
|
|
Button {
|
|
iconText: root.activePlayer && root.activePlayer.isPlaying ? "" : ""
|
|
foreground: root.bar.foreground
|
|
horizontalPadding: Style.spacing.panelGap
|
|
verticalPadding: Style.spacing.controlPaddingY
|
|
iconSize: Style.font.iconLarge
|
|
enabled: root.activePlayer && root.activePlayer.canTogglePlaying
|
|
opacity: enabled ? 1.0 : 0.4
|
|
onClicked: if (root.activePlayer) root.activePlayer.togglePlaying()
|
|
}
|
|
|
|
Button {
|
|
iconText: ""
|
|
foreground: root.bar.foreground
|
|
horizontalPadding: Style.spacing.controlPaddingX
|
|
verticalPadding: Style.spacing.controlPaddingY
|
|
enabled: root.activePlayer && root.activePlayer.canGoNext
|
|
opacity: enabled ? 1.0 : 0.4
|
|
onClicked: if (root.activePlayer) root.activePlayer.next()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|