forked from bennadel/JavaScript-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
336 lines (240 loc) · 8.98 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
<!doctype html>
<html ng-app="Demo">
<head>
<meta charset="utf-8" />
<title>
Experimenting With ngModel And ngModelController In AngularJS
</title>
<link rel="stylesheet" type="text/css" href="./demo.css"></link>
</head>
<body ng-controller="AppController">
<h1>
Experimenting With ngModel And ngModelController In AngularJS
</h1>
<!--
We're using the FORM directive in this demo as the ngModel usage will
automatically interact with the FormController to do things like apply an
"ng-dirty" class to the form when our list-toggle directive is consumed by
the user.
--
NOTE: By naming the form, an instance of the FormController will automatically
be applied to the current Scope using the given name (ie, $scope.myForm).
-->
<form name="myForm">
<!--
Using this directive to iterate over the given list when clicked, one item
per click. When moving onto the next item, the ngModel value is updated to
reflect the current selection; this will, in turn, interact automatically
with the parent Form directive.
--
* bnListToggle: The expression used to access the target list.
* text: The expression used to render the selected value.
-->
<div
ng-model="selectedFriend"
bn-list-toggle="friends"
text="( id + '. ' + name )">
</div>
<p>
<!-- Using this to alter the view-model externally to the directive. -->
<a ng-click="selectFirstFriend()">Select First Friend</a>
—
<!-- Using this to erase a friend selection. -->
<a ng-click="selectNullFriend()">Select NULL Friend</a>
</p>
</form>
<!-- Load scripts. -->
<script type="text/javascript" src="../../vendor/angularjs/angular-1.3.6.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 ) {
// I hold the list of friends over which we will be iterating in the
// ngModel control.
$scope.friends = [
{
id: 1,
name: "Kim"
},
{
id: 2,
name: "Sarah"
},
{
id: 3,
name: "Joanna"
},
{
id: 4,
name: "Tricia"
},
{
id: 5,
name: "Anna"
}
];
// By default, select the first friend.
$scope.selectedFriend = $scope.friends[ 0 ];
// For debugging purposes, let's observe changes in the selected friend.
// This way, we can see when / how the view-model is changed by the two-way
// ngModel binding.
$scope.$watch(
"selectedFriend",
function handleModelChange( newValue, oldValue ) {
// Ignore null values as we can't render them (using .name).
if ( ! newValue || ! oldValue ) {
return( console.info( "Null value change:", newValue ) );
}
console.log( "Selected friend changed from [", newValue.name, "-->", oldValue.name, "]." );
}
);
// Since we are using a named-form, we now have a copy of the
// FormController on the scope. As such, we can watch for changes in the
// form state and respond. In this case, we're logging when the form loses
// its pristine nature.
$scope.$watch(
"myForm.$dirty",
function handleModelChange( newValue ) {
if ( newValue ) {
console.warn( "Form is so dirty." );
}
}
);
// ---
// PUBLIC METHODS.
// ---
// I select the first friend in the list. This demonstrates that the
// ngModel binding can react to external changes as well as internal
// changes triggered by the control.
$scope.selectFirstFriend = function() {
console.info( "Selecting first friend." );
$scope.selectedFriend = $scope.friends[ 0 ];
};
// I remove the current friend selection. This demonstrates how the
// control can react to changes in the model that aren't necessarily
// accounted for in the list-context.
$scope.selectNullFriend = function() {
console.info( "Selecting NULL friend." );
$scope.selectedFriend = null;
};
}
);
// -------------------------------------------------- //
// -------------------------------------------------- //
// I provide an input control that iterates though a list, selecting the current
// value (into ngModel). When the user clicks on the control, the next list item
// is selected (loops back to index 0 when end of list is reached).
app.directive(
"bnListToggle",
function( $parse ) {
// Return the directive configuration. Notice that we are requiring the
// ngModel controller to be passed into our linking function.
return({
link: link,
require: "ngModel",
restrict: "A"
});
// I bind the JavaScript events to the local scope.
function link( scope, element, attributes, ngModelController ) {
// Validate directive attributes.
if ( ! attributes.bnListToggle ) {
throw( new Error( "bnListToggle requires list over which to iterate." ) );
}
// Validate directive attributes.
if ( ! attributes.text ) {
throw( new Error( "bnListToggle requires a text expression." ) );
}
// I provide a method to access the list for the control.
var listAccessor = $parse( attributes.bnListToggle );
// When the value of the control is selected, we need a way to
// render it in the HTML. We'll use the text attribute as an
// expression to evaluate in the context of the selected value.
var textAccessor = $parse( attributes.text );
// When the ngModel directive updates the bi-directionally-bound
// value, our control needs to be notified so that we can update
// the HTML. By providing a $render() method, we can hook into the
// ngModel update.
ngModelController.$render = renderCurrentValue;
// When the use clicks on the toggle, we need to move onto the next
// item in the list.
element.on(
"click",
function handleClickEvent( event ) {
// Since we are changing the View-Model, we have to use
// $apply() in order to let AngularJS know that a change has
// occurred.
scope.$apply( selectNextValue );
}
);
// ---
// PUBLIC METHODS.
// ---
// I use the current ngModel value to the render the HTML.
function renderCurrentValue() {
// If the current value is empty, clear the control.
// --
// NOTE: Each Control can provide its own $isEmpty() override;
// however, the default implementation checks for null / undefined
// values, which is sufficient for our use-case.
if ( ngModelController.$isEmpty( ngModelController.$viewValue ) ) {
return( element.html( "<em>Nothing selected</em>" ) );
}
// If the ngModel has a non-empty value, we can build the HTML for
// the control by evaluating the text-accessor in the context of
// the selected value.
element.html( textAccessor( ngModelController.$viewValue ) );
};
// ---
// PRIVATE METHODS.
// ---
// I get the next list item given the current list item.
function getNextListValue( list, currentValue ) {
// If we have no list, then there is no next item.
if ( ! list || ! list.length ) {
return( null );
}
var currentIndex = list.indexOf( currentValue );
// NOTE: If -1, becomes 0, which is OK.
var nextIndex = ( currentIndex + 1 );
// Check bounds, loop around if necessary.
if ( nextIndex >= list.length ) {
nextIndex = 0;
}
return( list[ nextIndex ] );
}
// I select the next value in the list, based on the current state of
// the ngModel binding.
function selectNextValue() {
// Gather the list from the current scope.
var list = listAccessor( scope );
// Get the current ngModel binding.
var currentValue = ngModelController.$viewValue;
// Get the next value. May return NULL if the list is empty.
var nextValue = getNextListValue( list, currentValue );
// Tell the ngModel directive to update the value to reflect the
// next item in the list.
// --
// NOTE: The AngualrJS documentation suggests passing-in a COPY
// of this value (if its an Object) since the ngModel directive
// compares references internally (not deep-copy comparisons).
// However, I believe that is only required in edge-cases; as
// long as we are using direct "view-model" references (as we
// are in this approach), then I see no problem with passing the
// reference directly into $setViewValue().
ngModelController.$setViewValue( nextValue );
// Calling $setViewModel() does not implicitly trigger a call to
// $render(). As such, we have to explicitly re-render the newly-
// selected value.
renderCurrentValue();
}
}
}
);
</script>
</body>
</html>