@@ -28,7 +28,7 @@ let youtubeIframeAPI;
28
28
/**
29
29
* A factory function used to produce an instance of YT.Player and queue function calls and proxy events of the resulting object.
30
30
*
31
- * @param elementId Either An existing YT.Player instance,
31
+ * @param maybeElementId Either An existing YT.Player instance,
32
32
* the DOM element or the id of the HTML element where the API will insert an <iframe>.
33
33
* @param options See `options` (Ignored when using an existing YT.Player instance).
34
34
* @param strictState A flag designating whether or not to wait for
@@ -53,10 +53,15 @@ export default (maybeElementId: YouTubePlayerType | HTMLElement | string, option
53
53
options . events = YouTubePlayer . proxyEvents ( emitter ) ;
54
54
55
55
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
57
62
// eslint-disable-next-line promise/catch-or-return
58
63
youtubeIframeAPI
59
- . then ( ( YT ) => {
64
+ . then ( ( YT ) => { // eslint-disable-line promise/prefer-await-to-then
60
65
const player : YouTubePlayerType = new YT . Player ( maybeElementId , options ) ;
61
66
62
67
emitter . on ( 'ready' , ( ) => {
@@ -65,12 +70,6 @@ export default (maybeElementId: YouTubePlayerType | HTMLElement | string, option
65
70
66
71
return null ;
67
72
} ) ;
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.' ) ;
74
73
}
75
74
} ) ;
76
75
0 commit comments