-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjoin.js
110 lines (92 loc) · 2.35 KB
/
join.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
/*jshint -W054 */
;(function (exports) {
'use strict';
function Join(context) {
var me = this
;
if (!(me instanceof Join)) {
return new Join(context);
}
me._context = context || null;
me._waiting = [];
me._done = 0;
me._callbacks = [];
me._notifiables = [];
me._begun = false;
me.length = 0;
}
Join.create = Join;
Join.prototype._partial = function (i, args) {
var me = this
;
me._done += 1;
me._waiting[i] = args;
me._notifiables.forEach(function (n) {
n.fn.call(n.ctx || me._context, i, args);
});
me._complete();
};
Join.prototype._complete = function () {
var me = this
;
if (me._done !== me._waiting.length || !me._callbacks.length) {
return;
}
me._callbacks.forEach(function (cb) {
cb.fn.apply(cb.ctx || me._context, me._waiting);
});
};
Join.prototype.add = function () {
var me = this
, index = me._waiting.length
;
if (me._begun) {
throw new Error('You tried to `add()` after calling `then()`');
}
me._waiting[me._waiting.length] = null;
me.length = me._waiting.length;
return function () {
me._partial(index, Array.prototype.slice.call(arguments));
};
};
Join.prototype.notify = function (cb, context) {
var me = this
;
me._notifiables.push({
fn: cb
, ctx: context
});
return this;
};
Join.prototype.then = function (cb, context) {
var me = this
;
me._begun = true;
me._callbacks.push({
fn: cb
, ctx: context
});
me._complete();
return this;
};
Join.prototype.when = function (promises, ctx) {
var me = this
, index = me._waiting.length
;
if ('function' === typeof promises) {
console.warn('`when` is deprecated. Please use `then` instead.');
//throw new Error('`when` is deprecated. Please use `then` instead.');
me.then(promises, ctx);
} else if (!Array.isArray(promises)) {
throw new Error('expected an array of objects with a `then` method');
}
me._waiting[length] = null;
promises.forEach(function (p) {
p.then(function () {
me._partial(index, Array.prototype.slice(arguments));
});
});
return this;
};
exports.Join = Join;
}('undefined' !== typeof exports && exports || new Function('return this')()));