2020-09-15 14:53:13 +00:00
|
|
|
import QtQuick 2.0
|
|
|
|
import Sailfish.Silica 1.0
|
2020-09-25 12:46:39 +00:00
|
|
|
import QtMultimedia 5.6
|
2020-09-15 14:53:13 +00:00
|
|
|
import nl.netsoj.chris.Jellyfin 1.0
|
|
|
|
import Nemo.Notifications 1.0
|
|
|
|
|
|
|
|
import "components"
|
|
|
|
import "pages"
|
|
|
|
|
|
|
|
ApplicationWindow {
|
|
|
|
id: appWindow
|
|
|
|
property bool isInSetup: false
|
|
|
|
property bool _hasInitialized: false
|
2020-09-25 13:21:08 +00:00
|
|
|
// The global mediaPlayer instance
|
2020-09-25 12:46:39 +00:00
|
|
|
readonly property MediaPlayer mediaPlayer: _mediaPlayer
|
2020-09-25 13:21:08 +00:00
|
|
|
// Data of the currently selected item. For use on the cover.
|
2020-09-25 12:46:39 +00:00
|
|
|
property var itemData
|
2020-09-15 14:53:13 +00:00
|
|
|
|
2020-09-25 13:21:08 +00:00
|
|
|
//FIXME: proper error handling
|
2020-09-15 14:53:13 +00:00
|
|
|
Connections {
|
|
|
|
target: ApiClient
|
|
|
|
onNetworkError: errorNotification.show("Network error: " + error)
|
|
|
|
onConnectionFailed: errorNotification.show("Connect error: " + error)
|
|
|
|
//onConnectionSuccess: errorNotification.show("Success: " + loginMessage)
|
|
|
|
}
|
|
|
|
|
2020-09-25 12:46:39 +00:00
|
|
|
MediaPlayer {
|
|
|
|
id: _mediaPlayer
|
|
|
|
autoPlay: true
|
|
|
|
}
|
|
|
|
|
2020-09-15 14:53:13 +00:00
|
|
|
initialPage: Component {
|
|
|
|
MainPage {
|
|
|
|
Connections {
|
|
|
|
target: ApiClient
|
2020-09-25 13:21:08 +00:00
|
|
|
// Replace the MainPage if no server was set up.
|
2020-09-15 14:53:13 +00:00
|
|
|
onSetupRequired: {
|
|
|
|
if (!isInSetup) {
|
|
|
|
isInSetup = true;
|
2020-09-25 12:46:39 +00:00
|
|
|
pageStack.replace(Qt.resolvedUrl("pages/setup/AddServerPage.qml"), {"backNavigation": false});
|
2020-09-15 14:53:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onStatusChanged: {
|
|
|
|
if (status == PageStatus.Active && !_hasInitialized) {
|
|
|
|
_hasInitialized = true;
|
2020-09-25 12:46:39 +00:00
|
|
|
ApiClient.restoreSavedSession();
|
2020-09-15 14:53:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-25 12:46:39 +00:00
|
|
|
cover: {
|
|
|
|
if ([MediaPlayer.NoMedia, MediaPlayer.InvalidMedia, MediaPlayer.UnknownStatus].indexOf(mediaPlayer.status) >= 0) {
|
|
|
|
if (itemData) {
|
|
|
|
return Qt.resolvedUrl("cover/PosterCover.qml")
|
|
|
|
} else {
|
|
|
|
return Qt.resolvedUrl("cover/CoverPage.qml")
|
|
|
|
}
|
|
|
|
} else if (mediaPlayer.hasVideo){
|
|
|
|
return Qt.resolvedUrl("cover/VideoCover.qml")
|
|
|
|
}
|
|
|
|
}
|
2020-09-15 14:53:13 +00:00
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
|
|
|
Notification {
|
|
|
|
id: errorNotification
|
|
|
|
previewSummary: "foo"
|
|
|
|
isTransient: true
|
|
|
|
|
|
|
|
function show(data) {
|
|
|
|
previewSummary = data;
|
|
|
|
publish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|