feat: display multiple mpris players

This commit is contained in:
Nydragon 2024-11-16 03:16:26 +01:00
parent 5e5f265de6
commit 0ce0c58162
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -1,3 +1,5 @@
pragma ComponentBehavior: Bound
import QtQuick.Effects
import QtQuick.Controls
import QtQuick.Layouts
@ -11,14 +13,30 @@ BRectangle {
id: mprisSmall
Layout.fillWidth: true
Layout.preferredHeight: 200
radius: 15
visible: Player.current ?? false
radius: 15
clip: true
border.color: "transparent"
visible: list.count
ListView {
id: list
anchors.fill: parent
model: Mpris.players
orientation: Qt.Horizontal
snapMode: ListView.SnapOneItem
spacing: 10
delegate: Item {
id: card
required property var modelData
property MprisPlayer player: modelData
width: mprisSmall.width
height: mprisSmall.height
BlurredImage {
source: Player.current?.trackArtUrl ?? ""
source: card.player?.trackArtUrl ?? ""
anchors.fill: parent
radius: parent.radius
radius: 15
}
RowLayout {
@ -28,7 +46,7 @@ BRectangle {
id: im
color: "transparent"
visible: false
source: Player.current?.trackArtUrl ?? ""
source: card.player?.trackArtUrl ?? ""
radius: 15
}
@ -55,7 +73,7 @@ BRectangle {
clip: true
Text {
text: Player.current?.trackTitle ?? "Unknown Track"
text: card.player?.trackTitle ?? "Unknown Track"
color: "white"
Layout.alignment: Qt.AlignCenter
Layout.maximumWidth: parent.width
@ -63,7 +81,7 @@ BRectangle {
}
Text {
text: Player.current?.trackAlbum ?? "Unknown Album"
text: card.player?.trackAlbum ?? "Unknown Album"
color: "white"
Layout.alignment: Qt.AlignCenter
Layout.maximumWidth: parent.width
@ -71,7 +89,7 @@ BRectangle {
}
Text {
text: Player.current?.trackAlbumArtist ?? "Unknown Artist"
text: card.player?.trackAlbumArtist ?? "Unknown Artist"
color: "white"
Layout.alignment: Qt.AlignCenter
Layout.maximumWidth: parent.width
@ -82,18 +100,18 @@ BRectangle {
Layout.alignment: Qt.AlignCenter
BIconButton {
source: Quickshell.iconPath("media-seek-backward")
onClicked: Player.current.previous()
onClicked: card.player?.previous()
size: 20
}
BIconButton {
source: Quickshell.iconPath(Player.isPlaying ? "media-playback-pause" : "media-playback-start")
onClicked: Player.current.togglePlaying()
source: Quickshell.iconPath(card.player.playbackState === MprisPlaybackState.Playing ? "media-playback-pause" : "media-playback-start")
onClicked: card.player?.togglePlaying()
size: 20
}
BIconButton {
source: Quickshell.iconPath("media-seek-forward")
onClicked: Player.current.next()
onClicked: card.player?.next()
size: 20
}
}
@ -104,18 +122,18 @@ BRectangle {
Layout.minimumWidth: 10
Layout.minimumHeight: 3
from: 0
to: Player.current?.length ?? 0
value: Player.current?.position ?? 0
enabled: (Player.current?.canSeek && Player.current?.positionSupported) ?? false
to: card.player?.length ?? 0
value: card.player?.position ?? 0
enabled: (card.player?.canSeek && card.player?.positionSupported) ?? false
onMoved: {
if (Player.current)
Player.current.position = value;
if (card.player)
card.player.position = value;
}
Component.onCompleted: {
const con = () => mprisSmall.player?.positionChanged.connect(() => {
slider.value = Player.current?.position;
const con = () => card.player?.positionChanged.connect(() => {
slider.value = card.player?.position;
});
con();
Player.currentChanged.connect(() => {
@ -125,9 +143,11 @@ BRectangle {
FrameAnimation {
// only emit the signal when the position is actually changing.
running: Player.current?.playbackState == MprisPlaybackState.Playing
running: card.player?.playbackState == MprisPlaybackState.Playing
// emit the positionChanged signal every frame.
onTriggered: Player.current?.positionChanged()
onTriggered: card.player?.positionChanged()
}
}
}
}
}