mirror of
https://github.com/yattee/yattee.git
synced 2024-12-14 06:10:32 +05:30
Performance improvements
This commit is contained in:
parent
4dbdd00829
commit
9197309115
@ -37,39 +37,25 @@ final class PlayerControlsModel: ObservableObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func handlePresentationChange() {
|
func handlePresentationChange() {
|
||||||
DispatchQueue.main.async { [weak self] in
|
guard let player = player else { return }
|
||||||
guard let self = self,
|
if presentingControls {
|
||||||
let player = self.player else { return }
|
|
||||||
if self.presentingControls {
|
|
||||||
player.backend.startControlsUpdates()
|
player.backend.startControlsUpdates()
|
||||||
self.resetTimer()
|
resetTimer()
|
||||||
} else {
|
} else {
|
||||||
if !player.musicMode {
|
if !player.musicMode {
|
||||||
player.backend.stopControlsUpdates()
|
player.backend.stopControlsUpdates()
|
||||||
self.removeTimer()
|
removeTimer()
|
||||||
} else {
|
} else {
|
||||||
self.presentingControls = true
|
presentingControls = true
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleSettingsOverlayPresentationChange() {
|
func handleSettingsOverlayPresentationChange() {
|
||||||
player?.backend.setNeedsNetworkStateUpdates(presentingControlsOverlay && Defaults[.showMPVPlaybackStats])
|
player?.backend.setNeedsNetworkStateUpdates(presentingControlsOverlay && Defaults[.showMPVPlaybackStats])
|
||||||
if presentingControlsOverlay {
|
|
||||||
removeTimer()
|
|
||||||
} else {
|
|
||||||
resetTimer()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleDetailsOverlayPresentationChange() {
|
func handleDetailsOverlayPresentationChange() {}
|
||||||
if presentingDetailsOverlay {
|
|
||||||
removeTimer()
|
|
||||||
} else {
|
|
||||||
resetTimer()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var presentingOverlays: Bool {
|
var presentingOverlays: Bool {
|
||||||
presentingDetailsOverlay || presentingControlsOverlay
|
presentingDetailsOverlay || presentingControlsOverlay
|
||||||
|
@ -136,12 +136,7 @@ struct PlayerControls: View {
|
|||||||
}
|
}
|
||||||
.onChange(of: model.presentingOverlays) { newValue in
|
.onChange(of: model.presentingOverlays) { newValue in
|
||||||
if newValue {
|
if newValue {
|
||||||
player.backend.stopControlsUpdates()
|
model.hide()
|
||||||
} else {
|
|
||||||
#if os(tvOS)
|
|
||||||
focusedField = .play
|
|
||||||
#endif
|
|
||||||
player.backend.startControlsUpdates()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if os(tvOS)
|
#if os(tvOS)
|
||||||
|
@ -103,7 +103,7 @@ struct VideoDescription: View {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func updateUIView(_: UIViewType, context _: Context) {
|
func updateUIView(_: UIViewType, context _: Context) {
|
||||||
customizeLabel()
|
updatePreferredMaxLayoutWidth()
|
||||||
}
|
}
|
||||||
|
|
||||||
func customizeLabel() {
|
func customizeLabel() {
|
||||||
@ -143,6 +143,10 @@ struct VideoDescription: View {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func updatePreferredMaxLayoutWidth() {
|
||||||
|
label.preferredMaxLayoutWidth = (detailsSize?.width ?? 330) - 30
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -454,10 +454,9 @@ struct VideoPlayerView: View {
|
|||||||
if drag > 60,
|
if drag > 60,
|
||||||
player.playingFullScreen
|
player.playingFullScreen
|
||||||
{
|
{
|
||||||
player.exitFullScreen()
|
player.exitFullScreen(showControls: false)
|
||||||
if Defaults[.rotateToPortraitOnExitFullScreen] {
|
if Defaults[.rotateToPortraitOnExitFullScreen] {
|
||||||
Orientation.lockOrientation(.allButUpsideDown, andRotateTo: .portrait)
|
Orientation.lockOrientation(.allButUpsideDown, andRotateTo: .portrait)
|
||||||
playerControls.show()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,9 +27,15 @@ struct ShareButton: View {
|
|||||||
|
|
||||||
private var instanceActions: some View {
|
private var instanceActions: some View {
|
||||||
Group {
|
Group {
|
||||||
if let url = player.playerAPI.shareURL(contentItem) {
|
|
||||||
Button(labelForShareURL(accounts.app.name)) {
|
Button(labelForShareURL(accounts.app.name)) {
|
||||||
|
if let url = player.playerAPI.shareURL(contentItem) {
|
||||||
shareAction(url)
|
shareAction(url)
|
||||||
|
} else {
|
||||||
|
navigation.presentAlert(
|
||||||
|
title: "Could not create share link",
|
||||||
|
message: "For custom locations you can configure Frontend URL in Locations settings"
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if contentItemIsPlayerCurrentVideo {
|
if contentItemIsPlayerCurrentVideo {
|
||||||
@ -44,7 +50,6 @@ struct ShareButton: View {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private var youtubeActions: some View {
|
private var youtubeActions: some View {
|
||||||
Group {
|
Group {
|
||||||
|
Loading…
Reference in New Issue
Block a user