forked from bennadel/JavaScript-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
114 lines (81 loc) · 2.7 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
<!doctype html>
<html ng-app="Demo">
<head>
<meta charset="utf-8" />
<title>
Watching A Collection Of Expressions Using Scope.$watchGroup() In AngularJS
</title>
</head>
<body ng-controller="AppController">
<h1>
Watching A Collection Of Expressions Using Scope.$watchGroup() In AngularJS
</h1>
<p>
<em>All the good stuff is in the console.</em>
</p>
<!-- Load scripts. -->
<script type="text/javascript" src="../../vendor/angularjs/angular-1.3.8.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, $parse, $interpolate, $timeout ) {
// Define some scope-based data to work with during the experiment.
$scope.friend = {
id: 1,
name: "Heather",
isBFF: true,
secretHandshake: true
};
// Define the array of expressions that will be watched in unison. Under
// the hood, each one of these gets passed to the Scope.$watch() method.
// As such, each item can be anything that Scope.$watch() can accept.
var watchExpressions = [
// A vanilla scope reference.
"friend.id",
// An accessor generated by the $parse() service.
$parse( "friend.name" ),
// An interpolator generated by the $interpolate() service.
$interpolate( "{{ friend.name }} is awesome!" ),
// A watch function that returns the value being watched.
function watchExpression( scope ) {
return( "isBFF: " + scope.friend.isBFF );
},
// A one-time binding.
":: ( 'Secret handshake: ' + friend.secretHandshake )"
];
// When we pass the array of expressions into $watchGroup(), each
// expression is individually passed to its own $watch() handler. Then,
// if any one of the values changes, our callback is invoked with the
// collection of evaluated expressions.
var deregisterWatch = $scope.$watchGroup(
watchExpressions,
function handleModelChange( newValues ) {
console.info( "The group has changed in some way:" );
for ( var i = 0, length = newValues.length ; i < length ; i++ ) {
console.log( ">> ", newValues[ i ] );
}
}
);
// After a brief pause, change the model - just so we can see all the
// expression evaluations change.
$timeout(
function deferModelChange() {
$scope.friend = {
id: 2,
name: "Georgia",
isBFF: false,
secretHandshake: false
};
},
100
);
}
);
</script>
</body>
</html>