Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): Fix iOS fullscreen on rotation #4679

Merged
merged 6 commits into from
Dec 6, 2022
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 38 additions & 19 deletions ui/controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -587,21 +587,16 @@ shaka.ui.Controls = class extends shaka.util.FakeEventTarget {
return false;
}

/** @export */
async toggleFullScreen() {
if (document.fullscreenEnabled) {
if (document.fullscreenElement) {
if (screen.orientation) {
screen.orientation.unlock();
}
await document.exitFullscreen();
} else {
// If we are in PiP mode, leave PiP mode first.
/** @private */
async enterFullScreen_() {
try {
if (document.fullscreenEnabled) {
try {
if (document.pictureInPictureElement) {
await document.exitPictureInPicture();
}
await this.videoContainer_.requestFullscreen({navigationUI: 'hide'});

if (this.config_.forceLandscapeOnFullscreen && screen.orientation) {
try {
// Locking to 'landscape' should let it be either
Expand All @@ -616,19 +611,43 @@ shaka.ui.Controls = class extends shaka.util.FakeEventTarget {
this.dispatchEvent(new shaka.util.FakeEvent(
'error', (new Map()).set('detail', error)));
}
} else {
const video = /** @type {HTMLVideoElement} */(this.localVideo_);
if (video.webkitSupportsFullscreen) {
video.webkitEnterFullscreen();
}
}
} catch (error) {
joeyparrish marked this conversation as resolved.
Show resolved Hide resolved
// Entering fullscreen can fail
// if the user didn't interacting with the video.
// be rejected with an error. Suppress that error.
joeyparrish marked this conversation as resolved.
Show resolved Hide resolved
}
}

/** @private */
async exitFullScreen_() {
if (document.fullscreenEnabled) {
if (screen.orientation) {
screen.orientation.unlock();
}
await document.exitFullscreen();
} else {
const video = /** @type {HTMLVideoElement} */(this.localVideo_);
if (video.webkitSupportsFullscreen) {
if (video.webkitDisplayingFullscreen) {
video.webkitExitFullscreen();
} else {
video.webkitEnterFullscreen();
}
video.webkitExitFullscreen();
}
}
}

/** @export */
async toggleFullScreen() {
if (this.isFullScreenEnabled()) {
await this.exitFullScreen_();
} else {
await this.enterFullScreen_();
}
}

/** @export */
showAdUI() {
shaka.ui.Utils.setDisplay(this.adPanel_, true);
Expand Down Expand Up @@ -1030,11 +1049,11 @@ shaka.ui.Controls = class extends shaka.util.FakeEventTarget {
}

if (screen.orientation.type.includes('landscape') &&
!document.fullscreenElement) {
await this.videoContainer_.requestFullscreen({navigationUI: 'hide'});
!this.isFullScreenEnabled()) {
await this.enterFullScreen_();
} else if (screen.orientation.type.includes('portrait') &&
document.fullscreenElement) {
await document.exitFullscreen();
this.isFullScreenEnabled()) {
await this.exitFullScreen_();
}
}

Expand Down