forked from thinkpixellab/PxLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PxLoaderVideo.js
116 lines (95 loc) · 3.14 KB
/
PxLoaderVideo.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
/*global PxLoader: true, define: true, Video: true */
// PxLoader plugin to load video elements
function PxLoaderVideo(url, tags, priority) {
var self = this;
var loader = null;
try {
this.vid = new Video();
} catch(e) {
this.vid = document.createElement('video');
}
this.tags = tags;
this.priority = priority;
var onReadyStateChange = function() {
if (self.vid.readyState !== 4) {
return;
}
removeEventHandlers();
loader.onLoad(self);
};
var onLoad = function() {
removeEventHandlers();
loader.onLoad(self);
};
var onError = function() {
removeEventHandlers();
loader.onError(self);
};
var removeEventHandlers = function() {
self.unbind('load', onLoad);
self.unbind('canplaythrough', onReadyStateChange);
self.unbind('error', onError);
};
this.start = function(pxLoader) {
// we need the loader ref so we can notify upon completion
loader = pxLoader;
// NOTE: Must add event listeners before the src is set. We
// also need to use the readystatechange because sometimes
// load doesn't fire when an video is in the cache.
self.bind('load', onLoad);
self.bind('canplaythrough', onReadyStateChange);
self.bind('error', onError);
self.vid.src = url;
};
// called by PxLoader to check status of video (fallback in case
// the event listeners are not triggered).
this.checkStatus = function() {
if (self.vid.readyState !== 4) {
return;
}
removeEventHandlers();
loader.onLoad(self);
};
// called by PxLoader when it is no longer waiting
this.onTimeout = function() {
removeEventHandlers();
if (self.vid.readyState !== 4) {
loader.onLoad(self);
} else {
loader.onTimeout(self);
}
};
// returns a name for the resource that can be used in logging
this.getName = function() {
return url;
};
// cross-browser event binding
this.bind = function(eventName, eventHandler) {
if (self.vid.addEventListener) {
self.vid.addEventListener(eventName, eventHandler, false);
} else if (self.vid.attachEvent) {
self.vid.attachEvent('on' + eventName, eventHandler);
}
};
// cross-browser event un-binding
this.unbind = function(eventName, eventHandler) {
if (self.vid.removeEventListener) {
self.vid.removeEventListener(eventName, eventHandler, false);
} else if (self.vid.detachEvent) {
self.vid.detachEvent('on' + eventName, eventHandler);
}
};
}
// add a convenience method to PxLoader for adding an image
PxLoader.prototype.addVideo = function(url, tags, priority) {
var videoLoader = new PxLoaderVideo(url, tags, priority);
this.add(videoLoader);
// return the vid element to the caller
return videoLoader.vid;
};
// AMD module support
if (typeof define === 'function' && define.amd) {
define('PxLoaderVideo', [], function() {
return PxLoaderVideo;
});
}