2017-05-25 18:34:48 +00:00
|
|
|
# paginate
|
2019-02-01 14:39:10 +00:00
|
|
|
[![Pub](https://img.shields.io/pub/v/angel_paginate.svg)](https://pub.dartlang.org/packages/angel_paginate)
|
2017-05-26 13:21:47 +00:00
|
|
|
[![build status](https://travis-ci.org/angel-dart/paginate.svg)](https://travis-ci.org/angel-dart/paginate)
|
|
|
|
|
|
|
|
Platform-agnostic pagination library, with custom support for the
|
|
|
|
[Angel framework](https://github.com/angel-dart/angel).
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
In your `pubspec.yaml` file:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
dependencies:
|
2019-02-01 14:39:10 +00:00
|
|
|
angel_paginate: ^2.0.0
|
2017-05-26 13:21:47 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
This library exports a `Paginator<T>`, which can be used to efficiently produce
|
|
|
|
instances of `PaginationResult<T>`. Pagination results, when serialized to JSON, look like
|
|
|
|
this:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"total" : 75,
|
|
|
|
"items_per_page" : 10,
|
|
|
|
"previous_page" : 3,
|
|
|
|
"current_page" : 4,
|
|
|
|
"next_page" : 5,
|
|
|
|
"start_index" : 30,
|
|
|
|
"end_index" : 39,
|
|
|
|
"data" : ["<items...>"]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Results can be parsed from Maps using the `PaginationResult<T>.fromMap` constructor, and
|
|
|
|
serialized via their `toJson()` method.
|
|
|
|
|
|
|
|
To create a paginator:
|
|
|
|
|
|
|
|
```dart
|
|
|
|
import 'package:angel_paginate/angel_paginate.dart';
|
|
|
|
|
|
|
|
main() {
|
|
|
|
var p = new Paginator(iterable);
|
|
|
|
|
|
|
|
// Get the current page (default: page 1)
|
|
|
|
var page = p.current;
|
|
|
|
print(page.total);
|
|
|
|
print(page.startIndex);
|
|
|
|
print(page.data); // The actual items on this page.
|
|
|
|
p.next(); // Advance a page
|
2017-05-26 13:36:17 +00:00
|
|
|
p.back(); // Back one page
|
2017-05-26 13:21:47 +00:00
|
|
|
p.goToPage(10); // Go to page number (1-based, not a 0-based index)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The entire Paginator API is documented, so check out the DartDocs.
|
|
|
|
|
|
|
|
Paginators by default cache paginations, to improve performance as you shift through pages.
|
|
|
|
This can be especially helpful in a client-side application where your UX involves a fast
|
2019-02-01 14:39:10 +00:00
|
|
|
response time, i.e. a search page.
|