polyfill.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. 'use strict';
  2. // Store setTimeout reference so promise-polyfill will be unaffected by
  3. // other code modifying setTimeout (like sinon.useFakeTimers())
  4. var setTimeoutFunc = setTimeout;
  5. function noop() {}
  6. // Polyfill for Function.prototype.bind
  7. function bind(fn, thisArg) {
  8. return function() {
  9. fn.apply(thisArg, arguments);
  10. };
  11. }
  12. function Promise(fn) {
  13. if (!(this instanceof Promise))
  14. throw new TypeError('Promises must be constructed via new');
  15. if (typeof fn !== 'function') throw new TypeError('not a function');
  16. this._state = 0;
  17. this._handled = false;
  18. this._value = undefined;
  19. this._deferreds = [];
  20. doResolve(fn, this);
  21. }
  22. function handle(self, deferred) {
  23. while (self._state === 3) {
  24. self = self._value;
  25. }
  26. if (self._state === 0) {
  27. self._deferreds.push(deferred);
  28. return;
  29. }
  30. self._handled = true;
  31. Promise._immediateFn(function() {
  32. var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected;
  33. if (cb === null) {
  34. (self._state === 1 ? resolve : reject)(deferred.promise, self._value);
  35. return;
  36. }
  37. var ret;
  38. try {
  39. ret = cb(self._value);
  40. } catch (e) {
  41. reject(deferred.promise, e);
  42. return;
  43. }
  44. resolve(deferred.promise, ret);
  45. });
  46. }
  47. function resolve(self, newValue) {
  48. try {
  49. // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure
  50. if (newValue === self)
  51. throw new TypeError('A promise cannot be resolved with itself.');
  52. if (
  53. newValue &&
  54. (typeof newValue === 'object' || typeof newValue === 'function')
  55. ) {
  56. var then = newValue.then;
  57. if (newValue instanceof Promise) {
  58. self._state = 3;
  59. self._value = newValue;
  60. finale(self);
  61. return;
  62. } else if (typeof then === 'function') {
  63. doResolve(bind(then, newValue), self);
  64. return;
  65. }
  66. }
  67. self._state = 1;
  68. self._value = newValue;
  69. finale(self);
  70. } catch (e) {
  71. reject(self, e);
  72. }
  73. }
  74. function reject(self, newValue) {
  75. self._state = 2;
  76. self._value = newValue;
  77. finale(self);
  78. }
  79. function finale(self) {
  80. if (self._state === 2 && self._deferreds.length === 0) {
  81. Promise._immediateFn(function() {
  82. if (!self._handled) {
  83. Promise._unhandledRejectionFn(self._value);
  84. }
  85. });
  86. }
  87. for (var i = 0, len = self._deferreds.length; i < len; i++) {
  88. handle(self, self._deferreds[i]);
  89. }
  90. self._deferreds = null;
  91. }
  92. function Handler(onFulfilled, onRejected, promise) {
  93. this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null;
  94. this.onRejected = typeof onRejected === 'function' ? onRejected : null;
  95. this.promise = promise;
  96. }
  97. /**
  98. * Take a potentially misbehaving resolver function and make sure
  99. * onFulfilled and onRejected are only called once.
  100. *
  101. * Makes no guarantees about asynchrony.
  102. */
  103. function doResolve(fn, self) {
  104. var done = false;
  105. try {
  106. fn(
  107. function(value) {
  108. if (done) return;
  109. done = true;
  110. resolve(self, value);
  111. },
  112. function(reason) {
  113. if (done) return;
  114. done = true;
  115. reject(self, reason);
  116. }
  117. );
  118. } catch (ex) {
  119. if (done) return;
  120. done = true;
  121. reject(self, ex);
  122. }
  123. }
  124. Promise.prototype['catch'] = function(onRejected) {
  125. return this.then(null, onRejected);
  126. };
  127. Promise.prototype.then = function(onFulfilled, onRejected) {
  128. var prom = new this.constructor(noop);
  129. handle(this, new Handler(onFulfilled, onRejected, prom));
  130. return prom;
  131. };
  132. Promise.prototype['finally'] = function(callback) {
  133. var constructor = this.constructor;
  134. return this.then(
  135. function(value) {
  136. return constructor.resolve(callback()).then(function() {
  137. return value;
  138. });
  139. },
  140. function(reason) {
  141. return constructor.resolve(callback()).then(function() {
  142. return constructor.reject(reason);
  143. });
  144. }
  145. );
  146. };
  147. Promise.all = function(arr) {
  148. return new Promise(function(resolve, reject) {
  149. if (!arr || typeof arr.length === 'undefined')
  150. throw new TypeError('Promise.all accepts an array');
  151. var args = Array.prototype.slice.call(arr);
  152. if (args.length === 0) return resolve([]);
  153. var remaining = args.length;
  154. function res(i, val) {
  155. try {
  156. if (val && (typeof val === 'object' || typeof val === 'function')) {
  157. var then = val.then;
  158. if (typeof then === 'function') {
  159. then.call(
  160. val,
  161. function(val) {
  162. res(i, val);
  163. },
  164. reject
  165. );
  166. return;
  167. }
  168. }
  169. args[i] = val;
  170. if (--remaining === 0) {
  171. resolve(args);
  172. }
  173. } catch (ex) {
  174. reject(ex);
  175. }
  176. }
  177. for (var i = 0; i < args.length; i++) {
  178. res(i, args[i]);
  179. }
  180. });
  181. };
  182. Promise.resolve = function(value) {
  183. if (value && typeof value === 'object' && value.constructor === Promise) {
  184. return value;
  185. }
  186. return new Promise(function(resolve) {
  187. resolve(value);
  188. });
  189. };
  190. Promise.reject = function(value) {
  191. return new Promise(function(resolve, reject) {
  192. reject(value);
  193. });
  194. };
  195. Promise.race = function(values) {
  196. return new Promise(function(resolve, reject) {
  197. for (var i = 0, len = values.length; i < len; i++) {
  198. values[i].then(resolve, reject);
  199. }
  200. });
  201. };
  202. // Use polyfill for setImmediate for performance gains
  203. Promise._immediateFn =
  204. (typeof setImmediate === 'function' &&
  205. function(fn) {
  206. setImmediate(fn);
  207. }) ||
  208. function(fn) {
  209. setTimeoutFunc(fn, 0);
  210. };
  211. Promise._unhandledRejectionFn = function _unhandledRejectionFn(err) {
  212. if (typeof console !== 'undefined' && console) {
  213. console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console
  214. }
  215. };
  216. var globalNS = (function() {
  217. // the only reliable means to get the global object is
  218. // `Function('return this')()`
  219. // However, this causes CSP violations in Chrome apps.
  220. if (typeof self !== 'undefined') {
  221. return self;
  222. }
  223. if (typeof window !== 'undefined') {
  224. return window;
  225. }
  226. if (typeof global !== 'undefined') {
  227. return global;
  228. }
  229. throw new Error('unable to locate global object');
  230. })();
  231. if (!globalNS.Promise) {
  232. globalNS.Promise = Promise;
  233. }