Skip to content

Commit e7d9227

Browse files
committed
adapter bufferFirst, bufferLast, bufferLength demo
1 parent 85fc60d commit e7d9227

File tree

3 files changed

+77
-0
lines changed

3 files changed

+77
-0
lines changed

demo/bufferItems/bufferItems.html

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!doctype html>
2+
<html>
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Buffer first, last, length</title>
7+
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.1/angular.js"></script>
8+
<script src="../../dist/ui-scroll.js"></script>
9+
<script src="bufferItems.js"></script>
10+
<link rel="stylesheet" href="../css/style.css" type="text/css" />
11+
</head>
12+
13+
<body ng-app="application" ng-controller="mainController">
14+
15+
<div class="cont cont-global">
16+
17+
<a class="back" href="../index.html">browse other examples</a>
18+
19+
<h1 class="page-header page-header-exapmle">Buffer first, last, length</h1>
20+
21+
<div class="description">
22+
The ui-scroll Adapter has 3 read-only properties which provide information of current ui-scroll Buffer state.
23+
The buffer contains some visible items and some items that are out of visible part of the viewport.
24+
So with these properties we can get the topmost and the bottommost items that the ui-scroll is dealing with at the moment.
25+
At the template's layer it may look like
26+
27+
<div class="code">
28+
<pre>{{adapter.bufferFirst}<!---->}
29+
{{adapter.bufferLast}<!---->}
30+
{{adapter.bufferLength}<!---->}
31+
32+
&lt;li ui-scroll="item in datasource" adapter="adapter"&gt;{{item}<!---->}&lt;/li&gt;</pre>
33+
</div>
34+
</div>
35+
36+
<div class="info">
37+
<div class="info-item"><span class="info-item-label">First buffer</span> {{adapter.bufferFirst}}</div>
38+
<div class="info-item"><span class="info-item-label">Last buffer</span> {{adapter.bufferLast}}</div>
39+
<div class="info-item"><span class="info-item-label">Buffer length:</span> {{adapter.bufferLength}}</div>
40+
</div>
41+
42+
<div class="viewport" id="viewport-listScroller" ui-scroll-viewport>
43+
<ul>
44+
<li ui-scroll="item in datasource" adapter="adapter">{{item}}</li>
45+
</ul>
46+
</div>
47+
48+
</div>
49+
50+
</body>
51+
52+
</html>

demo/bufferItems/bufferItems.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
angular.module('application', ['ui.scroll'])
2+
.controller('mainController', [
3+
'$scope', '$log', '$timeout', function ($scope, console, $timeout) {
4+
5+
$scope.adapter = {};
6+
7+
$scope.datasource = {};
8+
9+
$scope.datasource.get = function (index, count, success) {
10+
$timeout(function () {
11+
var result = [];
12+
for (var i = index; i <= index + count - 1; i++) {
13+
result.push("item #" + i);
14+
}
15+
success(result);
16+
}, 0);
17+
};
18+
19+
}
20+
]);

demo/index.html

+5
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ <h1 class="page-header">Scroller Examples</h1>
6464
Bottom visible (Adapter)
6565
</a>
6666
</li>
67+
<li>
68+
<a href="bufferItems/bufferItems.html">
69+
Buffer first, last, length
70+
</a>
71+
</li>
6772
<li>
6873
<a href="reload100/reload100.html">
6974
Reload datasource to specified index

0 commit comments

Comments
 (0)