2020-10-27 01:35:50 +00:00
|
|
|
/*
|
|
|
|
Sailfin: a Jellyfin client written using Qt
|
|
|
|
Copyright (C) 2020 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
|
|
|
|
*/
|
2020-10-26 21:29:07 +00:00
|
|
|
import QtQuick 2.6
|
|
|
|
import Sailfish.Silica 1.0
|
2020-10-27 01:35:50 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
Restructured the way item "details" are loaded
Previously, Items were displayed in one page, named DetailPage.qml.
This page then would load a qml component, based on the page type. It
also contained some components common for each detail page, like
displaying the name of the item. This construction had as downside that
modifying the page properties, adding a pulley menu or basing the page
around a SilicaListview was not possible. So I already had created some
other pages.
The new construction uses a base page, named BaseDetailPage which does
set some common properties and handle the loading of the items, so that
that part does not have to be duplicated. Displaying the name of an item
was a very trivial thing to do, so duplicating that part across files
was not a problem. Anyway, the rest of the pages are now seperate, but
all have BaseDetailsPage as the root, so they can use the common
functionality by that page. Those subpages now can be based around
GridViews, Carrousels, have pully menus and so on. To determine to which
page to go to, based on the content type, a function named getPageUrl
has been added to Utils.js, which takes a content type as argument and
gives the page url back.
2020-09-29 00:15:50 +00:00
|
|
|
|
2021-07-31 13:06:17 +00:00
|
|
|
import nl.netsoj.chris.Jellyfin 1.0 as J
|
Restructured the way item "details" are loaded
Previously, Items were displayed in one page, named DetailPage.qml.
This page then would load a qml component, based on the page type. It
also contained some components common for each detail page, like
displaying the name of the item. This construction had as downside that
modifying the page properties, adding a pulley menu or basing the page
around a SilicaListview was not possible. So I already had created some
other pages.
The new construction uses a base page, named BaseDetailPage which does
set some common properties and handle the loading of the items, so that
that part does not have to be duplicated. Displaying the name of an item
was a very trivial thing to do, so duplicating that part across files
was not a problem. Anyway, the rest of the pages are now seperate, but
all have BaseDetailsPage as the root, so they can use the common
functionality by that page. Those subpages now can be based around
GridViews, Carrousels, have pully menus and so on. To determine to which
page to go to, based on the content type, a function named getPageUrl
has been added to Utils.js, which takes a content type as argument and
gives the page url back.
2020-09-29 00:15:50 +00:00
|
|
|
|
2020-10-26 21:29:07 +00:00
|
|
|
import "../../components"
|
2020-10-27 01:35:50 +00:00
|
|
|
import "../../components/music"
|
2020-10-26 21:29:07 +00:00
|
|
|
import "../.."
|
|
|
|
|
|
|
|
BaseDetailPage {
|
2020-10-27 01:35:50 +00:00
|
|
|
id: albumPageRoot
|
2020-10-26 21:29:07 +00:00
|
|
|
readonly property int _songIndexWidth: 100
|
|
|
|
|
2021-09-10 03:18:05 +00:00
|
|
|
property bool _collectionModelLoaded: false
|
2021-01-17 20:11:55 +00:00
|
|
|
readonly property bool _twoColumns: albumPageRoot.width / Theme.pixelRatio >= 800
|
2022-07-23 18:01:23 +00:00
|
|
|
readonly property string _description: {
|
|
|
|
if (itemData.type === "MusicAlbum") {
|
|
|
|
//: Short description of the album: %1 -> album artist, %2 -> amount of songs, %3 -> duration, %4 -> release year
|
|
|
|
qsTr("%1\n%2 songs | %3 | %4")
|
|
|
|
.arg(itemData.albumArtist)
|
|
|
|
.arg(itemData.childCount)
|
|
|
|
.arg(Utils.ticksToText(itemData.runTimeTicks))
|
|
|
|
//: Unknown album release year
|
|
|
|
.arg(itemData.productionYear >= 0 ? itemData.productionYear : qsTr("Unknown year"))
|
|
|
|
} else {
|
|
|
|
qsTr("Playlist\n%1 songs | %2")
|
|
|
|
.arg(itemData.childCount)
|
|
|
|
.arg(Utils.ticksToText(itemData.runTimeTicks))
|
|
|
|
}
|
|
|
|
}
|
2021-01-17 20:11:55 +00:00
|
|
|
|
2021-07-31 13:06:17 +00:00
|
|
|
J.ItemModel {
|
2020-10-26 21:29:07 +00:00
|
|
|
id: collectionModel
|
2021-07-31 13:06:17 +00:00
|
|
|
loader: J.UserItemsLoader {
|
2021-08-11 21:35:33 +00:00
|
|
|
apiClient: appWindow.apiClient
|
2022-07-23 18:01:23 +00:00
|
|
|
sortBy: itemData.type === "MusicAlbum" ? "ParentIndexNumber,IndexNumber,SortName" : ""
|
2021-09-10 03:18:05 +00:00
|
|
|
fields: [J.ItemFields.ItemCounts, J.ItemFields.PrimaryImageAspectRatio]
|
2021-07-31 13:06:17 +00:00
|
|
|
parentId: itemData.jellyfinId
|
2021-08-11 21:35:33 +00:00
|
|
|
autoReload: itemData.jellyfinId.length > 0
|
2021-09-10 03:18:05 +00:00
|
|
|
//onParentIdChanged: if (parentId.length > 0) reload()
|
2021-07-31 13:06:17 +00:00
|
|
|
}
|
2020-10-26 21:29:07 +00:00
|
|
|
}
|
2020-10-27 01:35:50 +00:00
|
|
|
RowLayout {
|
2020-10-26 21:29:07 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
|
2020-10-27 01:35:50 +00:00
|
|
|
Item {height: 1; width: Theme.horizontalPageMargin; visible: wideAlbumCover.visible; }
|
|
|
|
Loader {
|
|
|
|
id: wideAlbumCover
|
2021-01-17 20:11:55 +00:00
|
|
|
visible: _twoColumns
|
2020-10-27 01:35:50 +00:00
|
|
|
Layout.minimumWidth: 1000 / Theme.pixelRatio
|
|
|
|
Layout.fillHeight: true
|
2021-08-11 21:35:33 +00:00
|
|
|
source: visible
|
2020-10-27 01:35:50 +00:00
|
|
|
? "../../components/music/WideAlbumCover.qml" : ""
|
2021-08-11 21:35:33 +00:00
|
|
|
onLoaded: bindAlbum(item)
|
2020-10-26 21:29:07 +00:00
|
|
|
}
|
2020-10-27 01:35:50 +00:00
|
|
|
Item {height: 1; width: Theme.horizontalPageMargin; visible: wideAlbumCover.visible; }
|
|
|
|
SilicaListView {
|
|
|
|
id: list
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
model: collectionModel
|
|
|
|
header: Loader {
|
|
|
|
width: parent.width
|
2021-08-11 21:35:33 +00:00
|
|
|
source: "../../components/music/NarrowAlbumCover.qml"
|
|
|
|
onLoaded: bindAlbum(item)
|
2020-10-26 21:29:07 +00:00
|
|
|
}
|
2020-10-27 01:35:50 +00:00
|
|
|
section {
|
2022-07-23 18:01:23 +00:00
|
|
|
property: itemData.type === "MusicAlbum" ? "parentIndexNumber" : ""
|
2020-10-27 01:35:50 +00:00
|
|
|
delegate: SectionHeader {
|
|
|
|
text: qsTr("Disc %1").arg(section)
|
2020-10-26 21:29:07 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-27 01:35:50 +00:00
|
|
|
delegate: SongDelegate {
|
2021-02-14 12:29:30 +00:00
|
|
|
id: songDelegate
|
2020-10-27 01:35:50 +00:00
|
|
|
name: model.name
|
2022-07-29 23:16:40 +00:00
|
|
|
artists: model.artistItems
|
2020-10-27 01:35:50 +00:00
|
|
|
duration: model.runTimeTicks
|
2022-07-22 23:52:26 +00:00
|
|
|
indexNumber: itemData.type === "MusicAlbum" ? model.indexNumber : index + 1
|
2021-08-11 21:35:33 +00:00
|
|
|
onClicked: window.playbackManager.playItemInList(collectionModel, model.index)
|
2020-10-26 21:29:07 +00:00
|
|
|
}
|
|
|
|
|
2020-10-27 01:35:50 +00:00
|
|
|
VerticalScrollDecorator {}
|
2020-10-26 21:29:07 +00:00
|
|
|
}
|
2020-10-27 01:35:50 +00:00
|
|
|
}
|
2020-10-26 21:29:07 +00:00
|
|
|
|
2020-10-27 01:35:50 +00:00
|
|
|
function bindAlbum(item) {
|
2021-08-11 21:35:33 +00:00
|
|
|
item.albumArt = Qt.binding(function(){ return Utils.itemImageUrl(apiClient.baseUrl, itemData, "Primary", {"maxWidth": parent.width})})
|
2020-10-27 01:35:50 +00:00
|
|
|
item.name = Qt.binding(function(){ return itemData.name})
|
|
|
|
item.listview = Qt.binding(function() { return list})
|
2021-09-10 03:18:05 +00:00
|
|
|
item.aspectRatio = Qt.binding(function() { return itemData.primaryImageAspectRatio})
|
2021-01-14 19:35:24 +00:00
|
|
|
item.blurhash = Qt.binding(function() { return itemData.imageBlurHashes["Primary"][itemData.imageTags["Primary"]]; })
|
2021-01-17 20:11:55 +00:00
|
|
|
item.twoColumns = Qt.binding(function() { return _twoColumns })
|
2022-07-23 18:01:23 +00:00
|
|
|
item.description = Qt.binding(function() { return _description })
|
2020-10-27 01:35:50 +00:00
|
|
|
}
|
Restructured the way item "details" are loaded
Previously, Items were displayed in one page, named DetailPage.qml.
This page then would load a qml component, based on the page type. It
also contained some components common for each detail page, like
displaying the name of the item. This construction had as downside that
modifying the page properties, adding a pulley menu or basing the page
around a SilicaListview was not possible. So I already had created some
other pages.
The new construction uses a base page, named BaseDetailPage which does
set some common properties and handle the loading of the items, so that
that part does not have to be duplicated. Displaying the name of an item
was a very trivial thing to do, so duplicating that part across files
was not a problem. Anyway, the rest of the pages are now seperate, but
all have BaseDetailsPage as the root, so they can use the common
functionality by that page. Those subpages now can be based around
GridViews, Carrousels, have pully menus and so on. To determine to which
page to go to, based on the content type, a function named getPageUrl
has been added to Utils.js, which takes a content type as argument and
gives the page url back.
2020-09-29 00:15:50 +00:00
|
|
|
}
|