-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathangular-action.js
More file actions
285 lines (227 loc) · 10.8 KB
/
Copy pathangular-action.js
File metadata and controls
285 lines (227 loc) · 10.8 KB
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define([ 'module', 'angular' ], function (module, angular) {
module.exports = factory(angular);
});
} else if (typeof module === 'object') {
module.exports = factory(require('angular'));
} else {
if (!root.mp) {
root.mp = {};
}
root.mp.action = factory(root.angular);
}
}(this, function (angular) {
'use strict';
function installObjectFieldRegistry($q, ownerScope, isOptional) {
var fieldScopeMap = {};
var fieldDeferredValueMap = {};
// keep track of declared object fields as they are instantiated and destroyed
ownerScope.$on('$actionDataObjectFieldCreated', function (event, name) {
// consume the data response
event.stopPropagation();
var fieldScope = event.targetScope;
if (fieldScopeMap[name]) {
// @todo might be over-zealous in case of dynamic field replacement
throw new Error('duplicate field name');
}
fieldScopeMap[name] = fieldScope;
fieldScope.$on('$destroy', function () {
if (fieldScopeMap[name] === fieldScope) {
delete fieldScopeMap[name];
}
});
});
// when a data request comes in, set up a deferred object response and send up as single value
ownerScope.$on('$actionDataRequest', function (event) {
var valuePromiseMap = {};
var hasAnyFields = false;
for (var name in fieldScopeMap) {
var deferred = $q.defer();
valuePromiseMap[name] = deferred.promise;
fieldDeferredValueMap[name] = deferred;
hasAnyFields = true;
}
if (isOptional && !hasAnyFields) {
return;
}
// standard single-value response
ownerScope.$emit('$actionDataResponse', $q.all(valuePromiseMap));
});
// fill up the current deferred object fields with field responses
// that are coming in from child scopes
ownerScope.$on('$actionDataObjectFieldResponse', function (event, name, valuePromise) {
var deferred = fieldDeferredValueMap[name];
// silently ignore field data not intended for us
if (!deferred || fieldScopeMap[name] !== event.targetScope) {
return;
}
// consume the data response only if not ignoring
event.stopPropagation();
deferred.resolve(valuePromise);
});
}
// @todo on-demand interim validation
return angular.module('mp.action', [])
.directive('do', function () {
return {
restrict: 'A',
scope: true,
controllerAs: '$action',
// @todo eliminate the "then" attribute and just chain promises elsewhere
controller: [ '$scope', '$element', '$attrs', '$q', function (childScope, $element, $attr, $q) {
var doExpr = $attr['do'],
thenExpr = $attr.then,
action = this;
action.isPending = false;
action.error = null;
// for traditional usage, also inject implicit object map behaviour
// (which converts child parameter data responses into the standard single-value response)
installObjectFieldRegistry($q, childScope, true);
// @todo use a deferred?
var currentValuePromiseCollection = null;
// collect standard single-value responses
childScope.$on('$actionDataResponse', function (event, valuePromise) {
// consume the data response
event.stopPropagation();
if (!currentValuePromiseCollection) {
return;
}
currentValuePromiseCollection.push(valuePromise);
});
function collectDataPromise() {
// listen to data and issue a collection request
var valuePromiseCollection = currentValuePromiseCollection = [];
childScope.$broadcast('$actionDataRequest');
// stop collecting
currentValuePromiseCollection = null;
if (valuePromiseCollection.length > 1) {
throw new Error('expecting to collect at most one value, got ' + valuePromiseCollection.length);
}
return valuePromiseCollection[0] || $q.when();
}
this.invoke = function () {
action.isPending = true;
action.error = null;
// resolve field data
// (converting field errors into null overall error)
var whenDataReady = collectDataPromise()['catch'](function () {
return $q.reject(null);
});
// run the main action if data collected OK
var whenActionFinished = whenDataReady.then(function (valueMap) {
return childScope.$eval(doExpr, { $data: valueMap });
});
// run "then" or report errors
whenActionFinished.then(function (data) {
childScope.$eval(thenExpr, { $data: data });
}, function (error) {
action.error = error;
})['finally'](function () {
action.isPending = false;
});
};
this.reset = function () {
// only reset if not already pending
if (action.isPending) {
throw new Error('cannot reset pending action');
}
action.error = null;
childScope.$broadcast('$actionReset');
};
} ]
};
})
.directive('parameterMap', function () {
return {
restrict: 'A',
scope: true,
controller: [ '$scope', '$q', function (childScope, $q) {
// object map functionality (convert parameter data into single-value response)
installObjectFieldRegistry($q, childScope, false);
} ]
};
})
.directive('parameter', function () {
return {
restrict: 'A',
scope: true,
controller: [ '$scope', '$element', '$attrs', '$interpolate', function (childScope, $element, $attr, $interpolate) {
// accept interpolated expressions
var name = $interpolate($attr.parameter)(childScope);
// declare our existence
childScope.$emit('$actionDataObjectFieldCreated', name);
// collect standard single-value response and report it as field data
childScope.$on('$actionDataResponse', function (event, valuePromise) {
// consume the data response
event.stopPropagation();
childScope.$emit('$actionDataObjectFieldResponse', name, valuePromise);
});
} ]
};
})
.directive('collect', function () {
return {
restrict: 'A',
scope: true,
controllerAs: '$actionData',
controller: [ '$scope', '$element', '$attrs', '$q', function (childScope, $element, $attr, $q) {
var state = this;
// public properties
this.value = childScope.$parent.$eval($attr.value);
this.error = null;
// track the collection filter expression
var collectExpr;
// @todo use in-time eval
$attr.$observe('collect', function (value) {
collectExpr = value;
});
// error tracking
var currentTrackedErrorPromise = null;
function trackError(promise) {
currentTrackedErrorPromise = promise;
state.error = null;
function onError(e) {
if (promise !== currentTrackedErrorPromise) {
return;
}
state.error = e;
}
// for synchronously resolved promises, report immediately
// @todo remove this hacky workaround eventually
if (promise.$$state && promise.$$state.status === 2) {
onError(promise.$$state.value);
} else {
promise['catch'](onError);
}
}
// report latest value before submitting
childScope.$on('$actionDataRequest', function (event) {
// set up to report future result
var deferred = $q.defer();
// resolve the value promise
if (collectExpr) {
try {
deferred.resolve(childScope.$parent.$eval('$value | ' + collectExpr, { $value: state.value }));
} catch (e) {
deferred.reject(e);
}
} else {
deferred.resolve(state.value);
}
// report any local error, synchronous or not
trackError(deferred.promise);
// report data up the chain
childScope.$emit('$actionDataResponse', deferred.promise);
});
// re-evaluate source value
// @todo deprecate? too specific to this directive
childScope.$on('$actionReset', function () {
state.value = childScope.$parent.$eval($attr.value);
state.error = null;
});
} ]
};
})
.name; // pass back as dependency name
}));