-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.umd.js
130 lines (100 loc) · 4.19 KB
/
index.umd.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
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.onTransitionEnd = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
'use strict';
var longestTransition = require('longest-transition');
var defaultEventFailureGracePeriod = 100;
// transitionend below based on https://github.com/kubens/transition-utility
var transitionend = (function () {
var transition;
var element;
var transitions;
if (typeof document === 'undefined') {
return;
}
element = document.createElement('fakeelement');
transitions = {
transition: 'transitionend',
OTransition: 'oTransitionEnd',
MozTransition: 'transitionend',
WebkitTransition: 'webkitTransitionEnd',
};
// look for supported transition
for (transition in transitions) {
if (element.style[transition] !== undefined) {
return transitions[transition];
}
}
// transition is unsupported
return false;
})();
module.exports = function (element, options, callback) {
var timeout;
var gracePeriod;
var timeoutTimer;
var longest;
// browser does not support transitionend, no animation
if (!transitionend) {
setTimeout(callback, 0);
return function () {};
}
// handle default parameters
if (typeof options === 'function') {
callback = options;
options = {};
}
// if no timeout provided, infer it
if (!options.timeout) {
longest = longestTransition(element);
if (!longest) {
setTimeout(callback, 0);
return function () {};
}
}
timeout = options.timeout || (longest.duration + longest.delay);
gracePeriod = options.gracePeriod || defaultEventFailureGracePeriod;
element.addEventListener(transitionend, __handleTransitionEnd);
timeoutTimer = setTimeout(__handleTransitionEnd, timeout + gracePeriod);
function __handleTransitionEnd(e) {
// if event timed out or it is on target (respecting the longest transitioning property if necessary)
if (!e || (e.target === element && (!longest || longest.property === e.propertyName))) {
__cleanup();
if (callback) {
callback();
}
}
}
function __cleanup() {
clearTimeout(timeoutTimer);
element.removeEventListener(transitionend, __handleTransitionEnd);
}
return __cleanup;
};
},{"longest-transition":2}],2:[function(require,module,exports){
'use strict';
function __readTransitions(el) {
var styles = getComputedStyle(el);
var properties = styles.transitionProperty.replace(' ', '').split(',');
var durations = styles.transitionDuration.replace(' ', '').split(',').map(_parseFloat);
var delays = styles.transitionDelay.replace(' ', '').split(',').map(_parseFloat);
return properties.map(function __handleMapProperties(prop, i) {
return {
property: prop,
duration: Math.ceil((durations[i] || durations[0] || 0) * 1000),
delay: Math.ceil((delays[i] || delays[0] || 0) * 1000),
};
});
}
function longestTransition(el) {
var longest = __readTransitions(el).reduce(function __handleReduceTransitions(prev, curr) {
if (!prev) {
return curr;
}
return prev.duration + prev.delay >= curr.duration + curr.delay ? prev : curr;
}, null);
return longest;
}
function _parseFloat(x) {
return parseFloat(x, 10);
}
module.exports = longestTransition;
},{}]},{},[1])(1)
});