Skip to content

Commit

Permalink
Merge branch 'main' into feat/addSrcAsSourceElement-tech-method
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-barstow authored Oct 8, 2024
2 parents 3b7d199 + 077077b commit ff4cda9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/js/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -2003,7 +2003,8 @@ class Player extends Component {
}

/**
* Handle a double-click on the media element to enter/exit fullscreen
* Handle a double-click on the media element to enter/exit fullscreen,
* or exit documentPictureInPicture mode
*
* @param {Event} event
* the event that caused this function to trigger
Expand Down Expand Up @@ -2045,7 +2046,12 @@ class Player extends Component {
) {

this.options_.userActions.doubleClick.call(this, event);

} else if (this.isInPictureInPicture() && !document.pictureInPictureElement) {
// Checking the presence of `window.documentPictureInPicture.window` complicates
// tests, checking `document.pictureInPictureElement` also works. It wouldn't
// be null in regular picture in picture.
// Exit picture in picture mode. This gesture can't trigger pip on the main window.
this.exitPictureInPicture();
} else if (this.isFullscreen()) {
this.exitFullscreen();
} else {
Expand Down
13 changes: 13 additions & 0 deletions test/unit/player-user-actions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,19 @@ QUnit.test('by default, double-click opens fullscreen', function(assert) {
assert.strictEqual(this.player.exitFullscreen.callCount, 1, 'has exited fullscreen');
});

QUnit.test('in document picture in picture mode, double-click exits pip', function(assert) {
this.player.isInPictureInPicture = () => true;
this.player.exitPictureInPicture = sinon.spy();
this.player.requestFullscreen = sinon.spy();
this.player.exitFullscreen = sinon.spy();

this.player.handleTechDoubleClick_({target: this.player.tech_.el_});

assert.strictEqual(this.player.exitPictureInPicture.callCount, 1, 'has exited pip once');
assert.strictEqual(this.player.requestFullscreen.callCount, 0, 'has not entered fullscreen');
assert.strictEqual(this.player.exitFullscreen.callCount, 0, 'has not exited fullscreen');
});

QUnit.test('when controls are disabled, double-click does nothing', function(assert) {
let fullscreen = false;

Expand Down

0 comments on commit ff4cda9

Please sign in to comment.