mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-04-03 11:22:41 +00:00
Adjusted C++ code to handle with new and renamed objects, as well as properties with different types. As a result of changing types, the QML side had to be updated as well. I hope I found everything by manually testing. Additionally, the Qt Quick application has been updated to test the remote sessions more easily and to make it launch again.
185 lines
7.6 KiB
QML
185 lines
7.6 KiB
QML
/*
|
|
Sailfin: a Jellyfin client written using Qt
|
|
Copyright (C) 2022-2024 Chris Josten
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
import QtQuick 2.6
|
|
import Sailfish.Silica 1.0
|
|
|
|
import nl.netsoj.chris.Jellyfin 1.0 as J
|
|
|
|
import "../../components"
|
|
import "../.."
|
|
|
|
BaseDetailPage {
|
|
id: musicLibraryPage
|
|
property bool _firstTimeLoaded: false
|
|
|
|
onStatusChanged: {
|
|
if (status == PageStatus.Active) {
|
|
_firstTimeLoaded = true
|
|
}
|
|
}
|
|
|
|
SilicaFlickable {
|
|
anchors.fill: parent
|
|
contentHeight: content.height
|
|
|
|
PullDownMenu {
|
|
MenuItem {
|
|
//: Pulley menu item: navigate to application settings page
|
|
text: qsTr("Settings")
|
|
onClicked: pageStack.push(Qt.resolvedUrl("../SettingsPage.qml"))
|
|
}
|
|
MenuItem {
|
|
//: Pulley menu item: shows controllable device page
|
|
text: qsTr("Remote control")
|
|
onClicked: pageStack.push(Qt.resolvedUrl("../ControllableDevicesPage.qml"))
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: latestMediaLoaderComponent
|
|
J.LatestMediaLoader {
|
|
apiClient: appWindow.apiClient
|
|
parentId: itemData.jellyfinId
|
|
includeItemTypes: [J.ItemType.Audio]
|
|
autoReload: false
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: albumArtistLoaderComponent
|
|
J.AlbumArtistLoader {
|
|
apiClient: appWindow.apiClient
|
|
parentId: itemData.jellyfinId
|
|
autoReload: false
|
|
}
|
|
}
|
|
Component {
|
|
id: albumLoaderComponent
|
|
J.UserItemsLoader {
|
|
apiClient: appWindow.apiClient
|
|
parentId: itemData.jellyfinId
|
|
includeItemTypes: [J.ItemType.MusicAlbum]
|
|
recursive: true
|
|
sortBy: [J.SortBy.SortName]
|
|
autoReload: false
|
|
}
|
|
}
|
|
Component {
|
|
id: playlistLoaderComponent
|
|
J.UserItemsLoader {
|
|
apiClient: appWindow.apiClient
|
|
parentId: itemData.jellyfinId
|
|
includeItemTypes: [J.ItemType.Playlist]
|
|
recursive: true
|
|
sortBy: [J.SortBy.SortName]
|
|
autoReload: false
|
|
}
|
|
}
|
|
|
|
Column {
|
|
id: content
|
|
width: parent.width
|
|
|
|
PageHeader {
|
|
title: itemData.name
|
|
}
|
|
|
|
ItemChildrenShowcase {
|
|
//: Header on music library: Recently added music albums
|
|
text: qsTr("Recently added")
|
|
//collapseWhenEmpty: false
|
|
extraBusy: !_firstTimeLoaded
|
|
loader: J.LatestMediaLoader {
|
|
apiClient: appWindow.apiClient
|
|
parentId: itemData.jellyfinId
|
|
autoReload: _firstTimeLoaded && itemData.jellyfinId.length > 0
|
|
includeItemTypes: [J.ItemType.Audio]
|
|
limit: 12
|
|
}
|
|
onHeaderClicked: pageStack.push(Qt.resolvedUrl("CollectionPage.qml"), {
|
|
"loader": latestMediaLoaderComponent.createObject(musicLibraryPage),
|
|
//: Page title for the list of all albums within the music library
|
|
"pageTitle": qsTr("Latest media"),
|
|
"allowSort": false
|
|
})
|
|
|
|
}
|
|
|
|
ItemChildrenShowcase {
|
|
text: qsTr("Albums")
|
|
//collapseWhenEmpty: false
|
|
extraBusy: !_firstTimeLoaded
|
|
loader: J.UserItemsLoader {
|
|
apiClient: appWindow.apiClient
|
|
parentId: itemData.jellyfinId
|
|
includeItemTypes: [J.ItemType.MusicAlbum]
|
|
autoReload: _firstTimeLoaded && itemData.jellyfinId.length > 0
|
|
sortBy: [J.SortBy.Random]
|
|
recursive: true
|
|
limit: 12
|
|
}
|
|
onHeaderClicked: pageStack.push(Qt.resolvedUrl("CollectionPage.qml"), {
|
|
"loader": albumLoaderComponent.createObject(musicLibraryPage),
|
|
//: Page title for the list of all albums within the music library
|
|
"pageTitle": qsTr("Albums")
|
|
})
|
|
}
|
|
|
|
ItemChildrenShowcase {
|
|
text: qsTr("Playlists")
|
|
//collapseWhenEmpty: false
|
|
extraBusy: !_firstTimeLoaded
|
|
loader: J.UserItemsLoader {
|
|
apiClient: appWindow.apiClient
|
|
parentId: itemData.jellyfinId
|
|
includeItemTypes: [J.ItemType.Playlist]
|
|
autoReload: _firstTimeLoaded && itemData.jellyfinId.length > 0
|
|
sortBy: [J.SortBy.Random]
|
|
recursive: true
|
|
limit: 12
|
|
}
|
|
onHeaderClicked: pageStack.push(Qt.resolvedUrl("CollectionPage.qml"), {
|
|
"loader": playlistLoaderComponent.createObject(musicLibraryPage),
|
|
//: Page title for the list of all playlists within the music library
|
|
"pageTitle": qsTr("Playlists")
|
|
})
|
|
}
|
|
|
|
ItemChildrenShowcase {
|
|
//: Header for music artists
|
|
text: qsTr("Artists")
|
|
//collapseWhenEmpty: false
|
|
extraBusy: !_firstTimeLoaded
|
|
loader: J.AlbumArtistLoader {
|
|
apiClient: appWindow.apiClient
|
|
parentId: itemData.jellyfinId
|
|
autoReload: _firstTimeLoaded && itemData.jellyfinId.length > 0
|
|
limit: 12
|
|
}
|
|
onHeaderClicked: pageStack.push(Qt.resolvedUrl("CollectionPage.qml"), {
|
|
"loader": albumArtistLoaderComponent.createObject(musicLibraryPage),
|
|
"allowSort": false,
|
|
//: Page title for the list of all artists within the music library
|
|
"pageTitle": qsTr("Artists")
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|