Skip to content

Commit 879eab4

Browse files
nathanstittgajus
authored andcommitted
fix: playing inside iframe or popup window (#77)
* Attempt to play even if maybeElementId can't be accessed When attempting to instantiate inside an iframe or popup window, the element can't be read. * silence eslint errors and warnings
1 parent 9126f61 commit 879eab4

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/YouTubePlayer.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// @flow
2+
/* eslint-disable promise/prefer-await-to-then */
23

34
import createDebug from 'debug';
45
import functionNames from './functionNames';

src/index.js

+8-9
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ let youtubeIframeAPI;
2828
/**
2929
* A factory function used to produce an instance of YT.Player and queue function calls and proxy events of the resulting object.
3030
*
31-
* @param elementId Either An existing YT.Player instance,
31+
* @param maybeElementId Either An existing YT.Player instance,
3232
* the DOM element or the id of the HTML element where the API will insert an <iframe>.
3333
* @param options See `options` (Ignored when using an existing YT.Player instance).
3434
* @param strictState A flag designating whether or not to wait for
@@ -53,10 +53,15 @@ export default (maybeElementId: YouTubePlayerType | HTMLElement | string, option
5353
options.events = YouTubePlayer.proxyEvents(emitter);
5454

5555
const playerAPIReady = new Promise((resolve: (result: YouTubePlayerType) => void) => {
56-
if (typeof maybeElementId === 'string' || maybeElementId instanceof HTMLElement) {
56+
if (typeof maybeElementId === 'object' && maybeElementId.playVideo instanceof Function) {
57+
const player: YouTubePlayerType = maybeElementId;
58+
59+
resolve(player);
60+
} else {
61+
// asume maybeElementId can be rendered inside
5762
// eslint-disable-next-line promise/catch-or-return
5863
youtubeIframeAPI
59-
.then((YT) => {
64+
.then((YT) => { // eslint-disable-line promise/prefer-await-to-then
6065
const player: YouTubePlayerType = new YT.Player(maybeElementId, options);
6166

6267
emitter.on('ready', () => {
@@ -65,12 +70,6 @@ export default (maybeElementId: YouTubePlayerType | HTMLElement | string, option
6570

6671
return null;
6772
});
68-
} else if (typeof maybeElementId === 'object' && maybeElementId.playVideo instanceof Function) {
69-
const player: YouTubePlayerType = maybeElementId;
70-
71-
resolve(player);
72-
} else {
73-
throw new TypeError('Unexpected state.');
7473
}
7574
});
7675

0 commit comments

Comments
 (0)