route 0.0.1 copy "route: ^0.0.1" to clipboard
route: ^0.0.1 copied to clipboard

discontinued
outdatedDart 1 only

A client + server routing library for Dart

Route #

Route is a client + server routing library for Dart that helps make building single-page web apps easier.

UrlPattern #

Route is built around UrlPattern a class that matches, parses and produces URLs. A UrlPattern is similar to a regex, but constrained so that it is reversible, given a UrlPattern and a set or arguments you can produce the URL that when parsed returns those same arguments. This is important for keeping the URL space for your app flexible so that you can change a URL for a resource in one place and keep your app working.

Route lets you use the same URL patterns for client-side and server-side routing. Just define a library containing all your URLs.

As an example, consider a blog with a home page and an article page. The article URL has the form /article/1234. We want to show articles without reloading the page.

Example (urls.dart):

library urls;

import 'package:route/url_pattern.dart';

final homeUrl = new UrlPattern(r'/');
final articleUrl = new UrlPattern(r'/article/(\d+)');

Client Routing #

On the client, there is a Router class that assciates UrlPatterns to handlers. Given a URL, the router finds a pattern that matches, and invokes it's handler. This is similar to HttpServer.addRequestHandler(matcher, handler) on the server. The handlers are then responsible for rendering the appropriate changes to the page.

The Router can listen to Window.onPopState events and invoke the correct handler so that the back button seamlessly works.

Example (client.dart):

library client;

import 'package:route/client.dart';

main() {
  var router = new Router();
  router.addHandler(homeUrl, showHome);
  router.addHandler(articleUrl, showArticle);
}

void showHome(String path) {
  // nothing to parse from path, since there are no groups
}

void showArticle(String path) {
  var articleId = articleUrl.parse(req.path)[0];
  // show article page with loading indicator
  // load article from server, then render article
}

Server Routing #

On the server, route gives you a utility function to match HttpRequests against UrlPatterns.

import 'urls.dart';
import 'package:route/server.dart';

main() {
  var server = new HttpServer();
  server.addRequestHandler(matchesUrl(ARTICLE_URL), serveArticle);
}

serveArcticle(req, res) {
  var articleId = articleUrl.parse(req.path)[0];
  // retreive article data
}

Compatibility #

Route uses Window.pushState to perform navigation on the client. pushState is not supported in IE 9, so we need to develop a fallback that uses URL fragments.

Further Goals #

  • IE 9 support
  • Integration with Web UI so that the changing of UI views can happen automatically.
  • Handling different HTTP methods to help imeplemtn REST APIs.
  • Automatic generation of REST URLs from a single URL pattern, similar to Ruby on Rails
  • Helpers for nested views and key-value URL schemes common with complex apps.
0
likes
0
pub points
42%
popularity

Publisher

unverified uploader

A client + server routing library for Dart

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

unittest

More

Packages that depend on route