forked from bennadel/JavaScript-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
235 lines (166 loc) · 6.19 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
<!doctype html>
<html ng-app="Demo">
<head>
<meta charset="utf-8" />
<title>
Defining Post-Route-Change Scroll Behavior Using $location in AngularJS
</title>
<link rel="stylesheet" type="text/css" href="./demo.css"></link>
</head>
<body ng-controller="AppController">
<h1>
Defining Post-Route-Change Scroll Behavior Using $location in AngularJS
</h1>
<!--
BEGIN: Nav.
In these navigational links, the path is mapped on to the view that should
be rendered (ie, "a" vs. "b") and the query string is then used to determine
state transformation after the view is rendered.
-->
<div class="nav">
<div
class="section"
ng-class="{ active: ( section == 'a' ) }">
<strong>Section A:</strong>
<a href="#/a">Normal</a>
<a href="#/a?scroll=same">Same</a>
<a href="#/a?scroll=500">500px</a>
<a href="#/a?scroll=1000">1,000px</a>
</div>
<div
class="section"
ng-class="{ active: ( section == 'b' ) }">
<strong>Section B:</strong>
<a href="#/b">Normal</a>
<a href="#/b?scroll=same">Same</a>
<a href="#/b?scroll=500">500px</a>
<a href="#/b?scroll=1000">1,000px</a>
</div>
</div>
<!-- END: Nav. -->
<!-- BEGIN: Views. -->
<div
class="views"
ng-switch="section">
<div
ng-switch-when="a"
bn-view
class="view view-a">
<h2>
Section A
</h2>
Section a - 1.<br />Section a - 2.<br />Section a - 3.<br />Section a - 4.<br />
Section a - 5.<br />Section a - 6.<br />Section a - 7.<br />Section a - 8.<br />
Section a - 9.<br />Section a - 10.<br />Section a - 11.<br />Section a - 12.<br />
Section a - 13.<br />Section a - 14.<br />Section a - 15.<br />Section a - 16.<br />
Section a - 17.<br />Section a - 18.<br />Section a - 19.<br />Section a - 20.<br />
</div>
<div
ng-switch-when="b"
bn-view
class="view view-b">
<h2>
Section B
</h2>
Section b - 1.<br />Section b - 2.<br />Section b - 3.<br />Section b - 4.<br />
Section b - 5.<br />Section b - 6.<br />Section b - 7.<br />Section b - 8.<br />
Section b - 9.<br />Section b - 10.<br />Section b - 11.<br />Section b - 12.<br />
Section b - 13.<br />Section b - 14.<br />Section b - 15.<br />Section b - 16.<br />
Section b - 17.<br />Section b - 18.<br />Section b - 19.<br />Section b - 20.<br />
</div>
</div>
<!-- END: Views. -->
<!-- Load scripts. -->
<script type="text/javascript" src="../../vendor/angularjs/angular-1.3.8.min.js"></script>
<script type="text/javascript" src="../../vendor/angularjs/angular-route-1.3.8.min.js"></script>
<script type="text/javascript">
// Create an application module for our demo.
var app = angular.module( "Demo", [ "ngRoute" ] );
// -------------------------------------------------- //
// -------------------------------------------------- //
// Configure the route provider.
app.config(
function( $routeProvider ) {
// Set up the route so that we can easily map the URL component on to
// the "section" route parameter.
$routeProvider.when( "/:section", {} );
// Default to section selection in case one is not being provided.
$routeProvider.otherwise( "/a" );
}
);
// -------------------------------------------------- //
// -------------------------------------------------- //
// I control the root of the application.
// --
// NOTE: While we are not referencing the $route service, we have to inject it or
// the "$routeChangeSuccess" event will never be fired (as AngularJS will only
// create the $route service on-demand).
app.controller(
"AppController",
function( $scope, $route, $routeParams ) {
// I determine which section is rendered.
$scope.section = null;
// I update the rendered section to reflect the route configuration.
$scope.$on(
"$routeChangeSuccess",
function handleRouteChangeEvent( event ) {
// The $routeChangeSuccess event will fire even if the query
// string is the only thing that changes. As such, just ignore
// any events that don't result in an actual route-change.
if ( $scope.section === $routeParams.section ) {
return;
}
$scope.section = $routeParams.section;
console.log( "Route Changed:", $scope.section );
}
);
}
);
// -------------------------------------------------- //
// -------------------------------------------------- //
// I help transition the state of the currently rendered view.
app.directive(
"bnView",
function( $location ) {
// Return the directive configuration.
return({
link: link,
restrict: "A"
});
// I bind the JavaScript events to the local scope.
function link( scope, element, attributes ) {
// The current element is the "content" which is being scrolled
// within the context of the parent. As such, we need to affect the
// scrolling on the parent element.
// --
// NOTE: It would probably be cleaner to put this directive directly
// on the parent element; but this approach keeps the demo simple.
var parentNode = element.parent()[ 0 ];
// Grab the "scroll" property out of the query string. This value
// determines how we scroll the viewport. If no value is present,
// we'll assume the viewport should scroll to the top.
var scroll = ( $location.search().scroll || "none" );
// Since the query string is only taken into account during the
// linking phase, just remove it from the URL. This way, the user
// won't be tempted to play with it.
$location.search( "scroll", null );
// If none, then scroll to the top of the viewport.
if ( scroll === "none" ) {
return( parentNode.scrollTop = 0 );
}
// If same, then keep the viewport scrolled to the same position.
// Here, we can just return because this is the natural behavior of
// the viewport (assuming some other directive didn't force a repaint
// while the content was will loading).
if ( scroll === "same" ) {
return;
}
// If we've made it this far, assume the provided scroll value is an
// integer - scroll the viewport appropriately.
parentNode.scrollTop = parseInt( scroll, 10 );
}
}
);
</script>
</body>
</html>