-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblueimp-gallery-vimeo.js
215 lines (194 loc) · 6.8 KB
/
blueimp-gallery-vimeo.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
207
208
209
210
211
212
213
214
215
/*
* blueimp Gallery Vimeo Video Factory JS 1.2.0
* https://github.com/blueimp/Gallery
*
* Copyright 2013, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
/* global define, window, document, location, $f */
(function (factory) {
'use strict';
if (typeof define === 'function' && define.amd) {
// Register as an anonymous AMD module:
define([
'./blueimp-helper',
'./blueimp-gallery-video'
], factory);
} else {
// Browser globals:
factory(
window.blueimp.helper || window.jQuery,
window.blueimp.Gallery
);
}
}(function ($, Gallery) {
'use strict';
if (!window.postMessage) {
return Gallery;
}
$.extend(Gallery.prototype.options, {
// The list object property (or data attribute) with the Vimeo video id:
vimeoVideoIdProperty: 'vimeo',
// The URL for the Vimeo video player, can be extended with custom parameters:
// https://developer.vimeo.com/player/embedding
vimeoPlayerUrl: '//player.vimeo.com/video/VIDEO_ID?api=1&player_id=PLAYER_ID',
// The prefix for the Vimeo video player ID:
vimeoPlayerIdPrefix: 'vimeo-player-',
// Require a click on the native Vimeo player for the initial playback:
vimeoClickToPlay: true
});
var textFactory = Gallery.prototype.textFactory || Gallery.prototype.imageFactory,
VimeoPlayer = function (url, videoId, playerId, clickToPlay) {
this.url = url;
this.videoId = videoId;
this.playerId = playerId;
this.clickToPlay = clickToPlay;
this.element = document.createElement('div');
this.listeners = {};
},
counter = 0;
$.extend(VimeoPlayer.prototype, {
canPlayType: function () {
return true;
},
on: function (type, func) {
this.listeners[type] = func;
return this;
},
loadAPI: function () {
var that = this,
apiUrl = '//' + (location.protocol === 'https' ? 'secure-' : '') +
'a.vimeocdn.com/js/froogaloop2.min.js',
scriptTags = document.getElementsByTagName('script'),
i = scriptTags.length,
scriptTag,
called,
callback = function () {
if (!called && that.playOnReady) {
that.play();
}
called = true;
};
while (i) {
i -= 1;
if (scriptTags[i].src === apiUrl) {
scriptTag = scriptTags[i];
break;
}
}
if (!scriptTag) {
scriptTag = document.createElement('script');
scriptTag.src = apiUrl;
}
$(scriptTag).on('load', callback);
scriptTags[0].parentNode.insertBefore(scriptTag, scriptTags[0]);
// Fix for cached scripts on IE 8:
if (/loaded|complete/.test(scriptTag.readyState)) {
callback();
}
},
onReady: function () {
var that = this;
this.ready = true;
this.player.addEvent('play', function () {
that.hasPlayed = true;
that.onPlaying();
});
this.player.addEvent('pause', function () {
that.onPause();
});
this.player.addEvent('finish', function () {
that.onPause();
});
if (this.playOnReady) {
this.play();
}
},
onPlaying: function () {
if (this.playStatus < 2) {
this.listeners.playing();
this.playStatus = 2;
}
},
onPause: function () {
this.listeners.pause();
delete this.playStatus;
},
insertIframe: function () {
var iframe = document.createElement('iframe');
iframe.src = this.url
.replace('VIDEO_ID', this.videoId)
.replace('PLAYER_ID', this.playerId);
iframe.id = this.playerId;
this.element.parentNode.replaceChild(iframe, this.element);
this.element = iframe;
},
play: function () {
var that = this;
if (!this.playStatus) {
this.listeners.play();
this.playStatus = 1;
}
if (this.ready) {
if (!this.hasPlayed && (this.clickToPlay || (window.navigator &&
/iP(hone|od|ad)/.test(window.navigator.platform)))) {
// Manually trigger the playing callback if clickToPlay
// is enabled and to workaround a limitation in iOS,
// which requires synchronous user interaction to start
// the video playback:
this.onPlaying();
} else {
this.player.api('play');
}
} else {
this.playOnReady = true;
if (!window.$f) {
this.loadAPI();
} else if (!this.player) {
this.insertIframe();
this.player = $f(this.element);
this.player.addEvent('ready', function () {
that.onReady();
});
}
}
},
pause: function () {
if (this.ready) {
this.player.api('pause');
} else if (this.playStatus) {
delete this.playOnReady;
this.listeners.pause();
delete this.playStatus;
}
}
});
$.extend(Gallery.prototype, {
VimeoPlayer: VimeoPlayer,
textFactory: function (obj, callback) {
var options = this.options,
videoId = this.getItemProperty(obj, options.vimeoVideoIdProperty);
if (videoId) {
if (this.getItemProperty(obj, options.urlProperty) === undefined) {
obj[options.urlProperty] = '//vimeo.com/' + videoId;
}
counter += 1;
return this.videoFactory(
obj,
callback,
new VimeoPlayer(
options.vimeoPlayerUrl,
videoId,
options.vimeoPlayerIdPrefix + counter,
options.vimeoClickToPlay
)
);
}
return textFactory.call(this, obj, callback);
}
});
return Gallery;
}));