-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathYouTube.js
206 lines (184 loc) · 5.5 KB
/
YouTube.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import React, { Component } from 'react'
import { callPlayer, getSDK, parseStartTime, parseEndTime } from '../utils'
import { canPlay, MATCH_URL_YOUTUBE } from '../patterns'
const SDK_URL = 'https://www.youtube.com/iframe_api'
const SDK_GLOBAL = 'YT'
const SDK_GLOBAL_READY = 'onYouTubeIframeAPIReady'
const MATCH_PLAYLIST = /[?&](?:list|channel)=([a-zA-Z0-9_-]+)/
const MATCH_USER_UPLOADS = /user\/([a-zA-Z0-9_-]+)\/?/
const MATCH_NOCOOKIE = /youtube-nocookie\.com/
const NOCOOKIE_HOST = 'https://www.youtube-nocookie.com'
export default class YouTube extends Component {
static displayName = 'YouTube'
static canPlay = canPlay.youtube
callPlayer = callPlayer
componentDidMount () {
this.props.onMount && this.props.onMount(this)
}
getID (url) {
if (!url || url instanceof Array || MATCH_PLAYLIST.test(url)) {
return null
}
return url.match(MATCH_URL_YOUTUBE)[1]
}
load (url, isReady) {
const { playing, muted, playsinline, controls, loop, shufflePlaylist, config, onError } = this.props
const { playerVars, embedOptions } = config
const id = this.getID(url)
if (isReady) {
if (MATCH_PLAYLIST.test(url) || MATCH_USER_UPLOADS.test(url) || url instanceof Array) {
this.player.loadPlaylist(this.parsePlaylist(url))
return
}
this.player.cueVideoById({
videoId: id,
startSeconds: parseStartTime(url) || playerVars.start,
endSeconds: parseEndTime(url) || playerVars.end
})
return
}
getSDK(SDK_URL, SDK_GLOBAL, SDK_GLOBAL_READY, YT => YT.loaded).then(YT => {
if (!this.container) return
this.player = new YT.Player(this.container, {
width: '100%',
height: '100%',
videoId: id,
playerVars: {
autoplay: playing ? 1 : 0,
mute: muted ? 1 : 0,
controls: controls ? 1 : 0,
start: parseStartTime(url),
end: parseEndTime(url),
origin: window.location.origin,
playsinline: playsinline ? 1 : 0,
...this.parsePlaylist(url),
...playerVars
},
events: {
onReady: () => {
if (loop) {
this.player.setLoop(true) // Enable playlist looping
}
if (shufflePlaylist) {
this.player.setShuffle(shufflePlaylist) // Enable playlist shuffling
}
this.props.onReady()
},
onPlaybackRateChange: event => this.props.onPlaybackRateChange(event.data),
onPlaybackQualityChange: event => this.props.onPlaybackQualityChange(event),
onStateChange: this.onStateChange,
onError: event => onError(event.data)
},
host: MATCH_NOCOOKIE.test(url) ? NOCOOKIE_HOST : undefined,
...embedOptions
})
}, onError)
if (embedOptions.events) {
console.warn('Using `embedOptions.events` will likely break things. Use ReactPlayer’s callback props instead, eg onReady, onPlay, onPause')
}
}
parsePlaylist = (url) => {
if (url instanceof Array) {
return {
listType: 'playlist',
playlist: url.map(this.getID).join(',')
}
}
if (MATCH_PLAYLIST.test(url)) {
const [, playlistId] = url.match(MATCH_PLAYLIST)
return {
listType: 'playlist',
list: playlistId.replace(/^UC/, 'UU')
}
}
if (MATCH_USER_UPLOADS.test(url)) {
const [, username] = url.match(MATCH_USER_UPLOADS)
return {
listType: 'user_uploads',
list: username
}
}
return {}
}
onStateChange = (event) => {
const { data } = event
const { onPlay, onPause, onBuffer, onBufferEnd, onEnded, onReady, loop, config: { playerVars, onUnstarted } } = this.props
const { UNSTARTED, PLAYING, PAUSED, BUFFERING, ENDED, CUED } = window[SDK_GLOBAL].PlayerState
if (data === UNSTARTED) onUnstarted()
if (data === PLAYING) {
onPlay()
onBufferEnd()
}
if (data === PAUSED) onPause()
if (data === BUFFERING) onBuffer()
if (data === ENDED) {
const isPlaylist = !!this.callPlayer('getPlaylist')
// Only loop manually if not playing a playlist
if (loop && !isPlaylist) {
if (playerVars.start) {
this.seekTo(playerVars.start)
} else {
this.play()
}
}
onEnded()
}
if (data === CUED) onReady()
}
play () {
this.callPlayer('playVideo')
}
pause () {
this.callPlayer('pauseVideo')
}
stop () {
if (!document.body.contains(this.callPlayer('getIframe'))) return
this.callPlayer('stopVideo')
}
seekTo (amount, keepPlaying = false) {
this.callPlayer('seekTo', amount)
if (!keepPlaying && !this.props.playing) {
this.pause()
}
}
setVolume (fraction) {
this.callPlayer('setVolume', fraction * 100)
}
mute = () => {
this.callPlayer('mute')
}
unmute = () => {
this.callPlayer('unMute')
}
setPlaybackRate (rate) {
this.callPlayer('setPlaybackRate', rate)
}
setLoop (loop) {
this.callPlayer('setLoop', loop)
}
getDuration () {
return this.callPlayer('getDuration')
}
getCurrentTime () {
return this.callPlayer('getCurrentTime')
}
getSecondsLoaded () {
return this.callPlayer('getVideoLoadedFraction') * this.getDuration()
}
ref = container => {
this.container = container
}
render () {
const { display } = this.props
const style = {
width: '100%',
height: '100%',
display
}
return (
<div style={style}>
<div ref={this.ref} />
</div>
)
}
}