diff --git a/packages/paginate/.analysis-options b/packages/paginate/.analysis-options
new file mode 100644
index 00000000..518eb901
--- /dev/null
+++ b/packages/paginate/.analysis-options
@@ -0,0 +1,2 @@
+analyzer:
+ strong-mode: true
\ No newline at end of file
diff --git a/packages/paginate/.gitignore b/packages/paginate/.gitignore
new file mode 100644
index 00000000..fe4c4cfa
--- /dev/null
+++ b/packages/paginate/.gitignore
@@ -0,0 +1,58 @@
+# See https://www.dartlang.org/tools/private-files.html
+
+# Files and directories created by pub
+.packages
+.pub/
+build/
+# If you're building an application, you may want to check-in your pubspec.lock
+pubspec.lock
+
+# Directory created by dartdoc
+# If you don't generate documentation locally you can remove this line.
+doc/api/
+### JetBrains template
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
+
+# User-specific stuff:
+.idea/**/workspace.xml
+.idea/**/tasks.xml
+.idea/dictionaries
+
+# Sensitive or high-churn files:
+.idea/**/dataSources/
+.idea/**/dataSources.ids
+.idea/**/dataSources.xml
+.idea/**/dataSources.local.xml
+.idea/**/sqlDataSources.xml
+.idea/**/dynamic.xml
+.idea/**/uiDesigner.xml
+
+# Gradle:
+.idea/**/gradle.xml
+.idea/**/libraries
+
+# Mongo Explorer plugin:
+.idea/**/mongoSettings.xml
+
+## File-based project format:
+*.iws
+
+## Plugin-specific files:
+
+# IntelliJ
+/out/
+
+# mpeltonen/sbt-idea plugin
+.idea_modules/
+
+# JIRA plugin
+atlassian-ide-plugin.xml
+
+# Crashlytics plugin (for Android Studio and IntelliJ)
+com_crashlytics_export_strings.xml
+crashlytics.properties
+crashlytics-build.properties
+fabric.properties
+
+.dart_tool
\ No newline at end of file
diff --git a/packages/paginate/.idea/modules.xml b/packages/paginate/.idea/modules.xml
new file mode 100644
index 00000000..95e1559d
--- /dev/null
+++ b/packages/paginate/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/paginate/.idea/paginate.iml b/packages/paginate/.idea/paginate.iml
new file mode 100644
index 00000000..02bd9dfb
--- /dev/null
+++ b/packages/paginate/.idea/paginate.iml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/paginate/.idea/runConfigurations/All_Tests.xml b/packages/paginate/.idea/runConfigurations/All_Tests.xml
new file mode 100644
index 00000000..bdb678e2
--- /dev/null
+++ b/packages/paginate/.idea/runConfigurations/All_Tests.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/paginate/.idea/vcs.xml b/packages/paginate/.idea/vcs.xml
new file mode 100644
index 00000000..94a25f7f
--- /dev/null
+++ b/packages/paginate/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/paginate/.travis.yml b/packages/paginate/.travis.yml
new file mode 100644
index 00000000..de2210c9
--- /dev/null
+++ b/packages/paginate/.travis.yml
@@ -0,0 +1 @@
+language: dart
\ No newline at end of file
diff --git a/packages/paginate/CHANGELOG.md b/packages/paginate/CHANGELOG.md
new file mode 100644
index 00000000..6d5318af
--- /dev/null
+++ b/packages/paginate/CHANGELOG.md
@@ -0,0 +1,2 @@
+# 2.0.0
+* Dart2 + Angel2 update.
\ No newline at end of file
diff --git a/packages/paginate/LICENSE b/packages/paginate/LICENSE
new file mode 100644
index 00000000..89074fd3
--- /dev/null
+++ b/packages/paginate/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2017 The Angel Framework
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/packages/paginate/README.md b/packages/paginate/README.md
new file mode 100644
index 00000000..d7e67c23
--- /dev/null
+++ b/packages/paginate/README.md
@@ -0,0 +1,60 @@
+# paginate
+[![Pub](https://img.shields.io/pub/v/angel_paginate.svg)](https://pub.dartlang.org/packages/angel_paginate)
+[![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:
+ angel_paginate: ^2.0.0
+```
+
+# Usage
+This library exports a `Paginator`, which can be used to efficiently produce
+instances of `PaginationResult`. 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" : [""]
+}
+```
+
+Results can be parsed from Maps using the `PaginationResult.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
+ p.back(); // Back one page
+ 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
+response time, i.e. a search page.
\ No newline at end of file
diff --git a/packages/paginate/example/main.dart b/packages/paginate/example/main.dart
new file mode 100644
index 00000000..eb83cd03
--- /dev/null
+++ b/packages/paginate/example/main.dart
@@ -0,0 +1,15 @@
+import 'package:angel_paginate/angel_paginate.dart';
+
+main() {
+ var iterable = [1, 2, 3, 4];
+ 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
+ p.back(); // Back one page
+ p.goToPage(10); // Go to page number (1-based, not a 0-based index)
+}
diff --git a/packages/paginate/lib/angel_paginate.dart b/packages/paginate/lib/angel_paginate.dart
new file mode 100644
index 00000000..34c34a25
--- /dev/null
+++ b/packages/paginate/lib/angel_paginate.dart
@@ -0,0 +1,191 @@
+/// Efficiently paginates collections of items in an object-oriented manner.
+class Paginator {
+ final Map> _cache = {};
+ PaginationResult _current;
+ int _page = 0;
+
+ /// The collection of items to be paginated.
+ final Iterable _items;
+
+ /// The maximum number of items to be shown per page.
+ final int itemsPerPage;
+
+ /// If `true` (default), then the results of paginations will be saved by page number.
+ ///
+ /// For example, you would only have to paginate page 1 once. Future calls would return a cached version.
+ final bool useCache;
+
+ Paginator(this._items, {this.itemsPerPage: 5, this.useCache: true});
+
+ /// Returns `true` if there are more items at lesser page indices than the current one.
+ bool get canGoBack => _page > 0;
+
+ /// Returns `true` if there are more items at greater page indices than the current one.
+ bool get canGoForward => _page < _lastPage();
+
+ /// The current page index.
+ int get index => _page;
+
+ /// Returns the greatest possible page number for this collection, given the number of [itemsPerPage].
+ int get lastPageNumber => _lastPage();
+
+ /// The current page number. This is not the same as [index].
+ ///
+ /// This getter will return user-friendly numbers. The lowest value it will ever return is `1`.
+ int get pageNumber => _page < 1 ? 1 : (_page + 1);
+
+ /// Fetches the current page. This will be cached until [back] or [next] is called.
+ ///
+ /// If [useCache] is `true` (default), then computations will be cached even after the page changes.
+ PaginationResult get current {
+ if (_current != null)
+ return _current;
+ else
+ return _current = _getPage();
+ }
+
+ PaginationResult _computePage() {
+ var len = _items.length;
+ var it = _items.skip(_page * (itemsPerPage ?? 5));
+ var offset = len - it.length;
+ it = it.take(itemsPerPage);
+ var last = _lastPage();
+ // print('cur: $_page, last: $last');
+ return new _PaginationResultImpl(it,
+ currentPage: _page + 1,
+ previousPage: _page <= 0 ? -1 : _page,
+ nextPage: _page >= last - 1 ? -1 : _page + 2,
+ startIndex: it.isEmpty ? -1 : offset,
+ endIndex: offset + it.length - 1,
+ itemsPerPage:
+ itemsPerPage < _items.length ? itemsPerPage : _items.length,
+ total: len);
+ }
+
+ PaginationResult _getPage() {
+ if (useCache != false)
+ return _cache.putIfAbsent(_page, () => _computePage());
+ else
+ return _computePage();
+ }
+
+ int _lastPage() {
+ var n = (_items.length / itemsPerPage).round();
+ // print('items: ${_items.length}');
+ // print('per page: $itemsPerPage');
+ // print('quotient: $n');
+ var remainder = _items.length - (n * itemsPerPage);
+ // print('remainder: $remainder');
+ return (remainder <= 0) ? n : n + 1;
+ }
+
+ /// Attempts to go the specified page. If it fails, then it will remain on the current page.
+ ///
+ /// Keep in mind - this just not be a zero-based index, but a one-based page number. The lowest
+ /// allowed value is `1`.
+ void goToPage(int page) {
+ if (page > 0 && page <= _lastPage()) {
+ _page = page - 1;
+ _current = null;
+ }
+ }
+
+ /// Moves the paginator back one page, if possible.
+ void back() {
+ if (_page > 0) {
+ _page--;
+ _current = null;
+ }
+ }
+
+ /// Advances the paginator one page, if possible.
+ void next() {
+ if (_page < _lastPage()) {
+ _page++;
+ _current = null;
+ }
+ }
+}
+
+/// Stores the result of a pagination.
+abstract class PaginationResult {
+ factory PaginationResult.fromMap(Map map) =>
+ new _PaginationResultImpl((map['data'] as Iterable).cast(),
+ currentPage: map['current_page'],
+ endIndex: map['end_index'],
+ itemsPerPage: map['items_per_page'],
+ nextPage: map['next_page'],
+ previousPage: map['previous_page'],
+ startIndex: map['start_index'],
+ total: map['total']);
+
+ List get data;
+
+ int get currentPage;
+
+ int get previousPage;
+
+ int get nextPage;
+
+ int get itemsPerPage;
+
+ int get total;
+
+ int get startIndex;
+
+ int get endIndex;
+
+ Map toJson();
+}
+
+class _PaginationResultImpl implements PaginationResult {
+ final Iterable _data;
+ Iterable _cachedData;
+
+ @override
+ final int currentPage;
+
+ _PaginationResultImpl(this._data,
+ {this.currentPage,
+ this.endIndex,
+ this.itemsPerPage,
+ this.nextPage,
+ this.previousPage,
+ this.startIndex,
+ this.total});
+
+ @override
+ List get data => _cachedData ?? (_cachedData = new List.from(_data));
+
+ @override
+ final int endIndex;
+
+ @override
+ final int itemsPerPage;
+
+ @override
+ final int nextPage;
+
+ @override
+ final int previousPage;
+
+ @override
+ final int startIndex;
+
+ @override
+ final int total;
+
+ @override
+ Map toJson() {
+ return {
+ 'total': total,
+ 'items_per_page': itemsPerPage,
+ 'previous_page': previousPage,
+ 'current_page': currentPage,
+ 'next_page': nextPage,
+ 'start_index': startIndex,
+ 'end_index': endIndex,
+ 'data': data
+ };
+ }
+}
diff --git a/packages/paginate/pubspec.yaml b/packages/paginate/pubspec.yaml
new file mode 100644
index 00000000..e57dcd15
--- /dev/null
+++ b/packages/paginate/pubspec.yaml
@@ -0,0 +1,13 @@
+name: angel_paginate
+version: 2.0.0
+description: Platform-agnostic pagination library, with custom support for the Angel framework.
+author: Tobe O
+homepage: https://github.com/angel-dart/paginate
+environment:
+ sdk: ">=2.0.0-dev <3.0.0"
+dependencies:
+ angel_framework: ^2.0.0-alpha
+dev_dependencies:
+ angel_test: ^2.0.0
+ logging: ^0.11.0
+ test: ^1.0.0
\ No newline at end of file
diff --git a/packages/paginate/test/all_test.dart b/packages/paginate/test/all_test.dart
new file mode 100644
index 00000000..c9ba44be
--- /dev/null
+++ b/packages/paginate/test/all_test.dart
@@ -0,0 +1,8 @@
+import 'package:test/test.dart';
+import 'bounds_test.dart' as bounds;
+import 'paginate_test.dart' as paginate;
+
+main() {
+ group('bounds', bounds.main);
+ group('paginate', paginate.main);
+}
diff --git a/packages/paginate/test/bounds_test.dart b/packages/paginate/test/bounds_test.dart
new file mode 100644
index 00000000..b799f9bb
--- /dev/null
+++ b/packages/paginate/test/bounds_test.dart
@@ -0,0 +1,57 @@
+import 'dart:convert';
+import 'package:angel_framework/angel_framework.dart';
+import 'package:angel_paginate/angel_paginate.dart';
+import 'package:angel_test/angel_test.dart';
+import 'package:logging/logging.dart';
+import 'package:test/test.dart';
+
+final List