forked from bennadel/JavaScript-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
399 lines (276 loc) · 9.06 KB
/
index.htm
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<!doctype html>
<html ng-app="Demo">
<head>
<meta charset="utf-8" />
<title>
Exploring $q And Scope $digest Integration In AngularJS
</title>
<link rel="stylesheet" type="text/css" href="demo.css"></link>
</head>
<body ng-controller="AppController">
<h1>
Exploring $q And Scope $digest Integration In AngularJS
</h1>
<!--
NOTE: All of our click-handlers are being defined inside DIRECTIVES rather than
in ng-click handlers so that we are sure to be outside of an "Angular Context".
This way, we can isolate the $q / $digest interaction.
-->
<p>
<a bn-bind-unresolved>Bind to unresolved promise</a>
<a bn-bind-resolved>Bind to resolved promise</a>
<a bn-resolve>Resolve promise</a>
<a bn-re-resolve>Re-Resolve an already-resolved promise</a>
<a bn-resolve-chain>Resolved chained-promise</a>
<a bn-resolve-timeout-chain>Resolved timeout-chained-promise</a>
<a bn-notify>Notify a pending-promise</a>
<a bn-notify-resolved>Notify a resolved-promise</a>
</p>
<!-- Load scripts. -->
<script type="text/javascript" src="../../vendor/angularjs/angular-1.3.12.min.js"></script>
<script type="text/javascript">
// Create an application module for our demo.
var app = angular.module( "Demo", [] );
// -------------------------------------------------- //
// -------------------------------------------------- //
// I control the root of the application.
app.controller(
"AppController",
function( $scope ) {
// Here's we're binding to the $digest lifecycle. By Supplying a $watch()
// function, we can get a hook into each digest iteration. We're going to
// log out each digest so we can see how it mixes with the other data
// that we log around the promise binding and resolution.
$scope.$watch(
function logDigest() {
console.log( "Such $digest! Much triggered." );
}
);
}
);
// -------------------------------------------------- //
// -------------------------------------------------- //
// I test $q and $digest interactions.
app.directive(
"bnBindUnresolved",
function( $q ) {
// In this demo, we're going to bind a promise handler to a deferred
// value that is in a pending state. Since the binding has no chance of
// changing the view-model, NO DIGEST is triggered.
return({
link: function( scope, element ) {
var unresolved = $q.defer();
element.click(
function( event ) {
console.info( "Binding to unresolved promise." );
unresolved.promise.then( angular.noop );
}
);
}
});
}
);
// I test $q and $digest interactions.
app.directive(
"bnBindResolved",
function( $q ) {
// In this demo, we're going to bind a promise handler to a RESOLVED
// deferred value. Since this causes the bound callback to be invoked
// immediately (yet asynchronously), it means that the view-model has
// a chance to change. As such, this will TRIGGER A DIGEST.
return({
link: function( scope, element ) {
var resolved = $q.when( true );
element.click(
function( event ) {
console.info( "Binding to resolved promise." );
resolved.then(
function() {
console.log( "( 1 ) Callback invoked." );
}
);
// NOTE: Here to demonstrate that it will be output in
// the console before the log above (due to the
// asynchronous nature of promises).
console.log( "( 2 ) Asynchronous callback test." );
}
);
}
});
}
);
// I test $q and $digest interactions.
app.directive(
"bnResolve",
function( $q ) {
// In this demo, we're going to resolve a deferred value that is in a
// pending state. Since this will cause the promise callbacks to be
// invoked, it means that there is a chance the view-model will be
// changed. As such, this will TRIGGER A DIGEST.
return({
link: function( scope, element ) {
var deferred = $q.defer();
// NOTE: We have to assign at least one promise handler
// otherwise, AngularJS won't bother scheduling anything.
deferred.promise.then( angular.noop );
element.click(
function( event ) {
console.info( "Resolving a promise." );
deferred.resolve( true );
}
);
}
});
}
);
// I test $q and $digest interactions.
app.directive(
"bnReResolve",
function( $q ) {
// In this demo, we're going to try to resolve an already-resolved
// deferred value. Since a promise cannot be resolved (or rejected) more
// than once, this will NOT trigger a digest.
return({
link: function( scope, element ) {
var deferred = $q.defer();
// Resolve it ahead of time.
deferred.resolve();
// NOTE: We have to assign at least one promise handler
// otherwise, AngularJS won't bother scheduling anything.
deferred.promise.then( angular.noop );
element.click(
function( event ) {
console.info( "Resolving an already-resolved promise." );
deferred.resolve( true );
}
);
}
});
}
);
// I test $q and $digest interactions.
app.directive(
"bnResolveChain",
function( $q ) {
// In this demo, we're going to resolve a deferred value that has a
// long promise-chain attached to it. We already know that a DIGEST
// WILl BE TRIGGERED (based on demo above); this is to see if a digest
// is triggered per-promise or, after the entire promise chain is
// executed.
return({
link: function( scope, element ) {
// I simply pass-through the resolved value.
function passThrough( value ) {
return( value );
}
var deferred = $q.defer();
deferred.promise
.then( passThrough )
.then( passThrough )
.then( passThrough )
.then( passThrough )
;
element.click(
function( event ) {
console.info( "Resolving a promise chain (4)." );
deferred.resolve( true );
}
);
}
});
}
);
// I test $q and $digest interactions.
app.directive(
"bnResolveTimeoutChain",
function( $q, $timeout ) {
// In this demo, we're going to resolve a deferred value that has a
// long promise-chain attached to it. However, unlike the previous demo,
// each of these promise callbacks will return a new promise that is
// delayed by some given timeout. This is to see when a digest is
// triggered - after the entire chain? Or after each delayed promise.
return({
link: function( scope, element ) {
// I return a new promise that will be resolved after the given
// timeout delay.
function delay( time ) {
// NOTE: False is here to prevent digest triggered by timeout.
return( $timeout( angular.noop, time, false ) );
}
var deferred = $q.defer();
deferred.promise
.then( delay )
.then( delay )
.then( delay )
.then( delay )
;
element.click(
function( event ) {
console.info( "Resolving a $timeout promise chain (4)." );
deferred.resolve( 50 );
}
);
}
});
}
);
// I test $q and $digest interactions.
app.directive(
"bnNotify",
function( $q, $timeout ) {
// In this demo, we're going to notify a pending deferred value. Since a
// notification may cause a view-model change, this will TRIGGER A DIGEST.
return({
link: function( scope, element ) {
var deferred = $q.defer();
// NOTE: We have to assign at least one promise handler
// otherwise, AngularJS won't bother scheduling anything.
deferred.promise.then( angular.noop );
element.click(
function( event ) {
console.info( "Notifying a pending promise." );
deferred.notify( "update" );
}
);
}
});
}
);
// I test $q and $digest interactions.
app.directive(
"bnNotifyResolved",
function( $q, $timeout ) {
// In this demo, we're going to notify a pending deferred value. Since a
// notification may cause a view-model change, this will TRIGGER A DIGEST.
return({
link: function( scope, element ) {
var deferred = $q.defer();
// Resolve it ahead of time.
deferred.resolve();
// NOTE: We have to assign at least one promise handler
// otherwise, AngularJS won't bother scheduling anything.
deferred.promise.then( angular.noop );
element.click(
function( event ) {
console.info( "Notifying a resolved promise." );
deferred.notify( "update" );
}
);
}
});
}
);
// -------------------------------------------------- //
// -------------------------------------------------- //
// I create an element plugin to allow for "click" to be used a short-hand for
// binding element events. This is just to reduce noise in the demo.
app.config(
function() {
angular.element.prototype.click = function( callback ) {
return( this.on( "click", callback ) );
};
}
);
</script>
</body>
</html>