ave

0.0.1-0 • Public • Published

ave

Flexible JavaScript URL router.

Travis npm package Coveralls

A Taskworld, our frontend is very complex. Many parts can be affected by the URL independently. The URLs in the app has gone through several iterations and efforts need to be made to ensure backwards compatibility. ave is created to handle all our routing needs. This library is based on url-mapper and uniloc project.

Usage

import { createRouteMapper } from 'ave'

createRouteMapper(routeDefinitions)

Give it an dictionary of Route Definition Objects, and it will create a Route Mapper.

  • routes An Object whose keys are route name and values are Route Definition Objects, each contains these keys:
    • route (required) A String representing the route. They can have placeholders. e.g.: /project/:projectAltId
    • aliases An Array of String that contains the possible aliases for this route.
    • redirect A Function which will redirect this route to another route during route resolution.
    • format A Function which will redirect this route to another route during URL generation. To protect against bugs, the resulting route must redirect back to this route.

Redirect and format is an advanced feature, which will be discussed later. Here’s an example router.

const simpleRouter = createRouteMapper([
  home: { route: '/' },
  about: { route: '/about' },
  post: { route: '/posts/:postId', aliases: [ '/forum/post/:postId' ] },
])

RouteMapper#resolve(path)

Resolves the path String into a Route Object.

  • path A String representing the path to resolve.
  • Returns a Route Object with these keys:
    • name A String representing the route’s name.
    • options An Object containing the options from placeholders or query.
  • Returns null if desired route is not found.
simpleRouter.resolve('/')
// =>
simpleRouter.resolve('/posts/123')
// =>
simpleRouter.resolve('/forum/post/123?page=2')
// =>
simpleRouter.resolve('/oops')
// =>

RouteMapper#generate(routeObject)

Generates a path String based on the given Route Object. This is the reverse of resolve.

  • routeObject A Route Object as described above.
  • Returns a String representing the path that will resolve to this route.
  • Throws an Error if the Route Object is not valid, or if the route options did not contain all the required placeholders defined in the route definition.
simpleRouter.generate({ name: 'home', options: { } })
// =>
simpleRouter.generate({ name: 'home', options: { page: '2' } })
// =>
simpleRouter.generate({ name: 'post', options: { postId: '123' } })
// =>

RouteMapper#getRouteDefinitionByName(name)

Returns the Route Definition Object for a route named by the String name.

simpleRouter.getRouteDefinitionByName('post')
// =>

As mentioned above, you can store extra keys in Route Definition Objects. At Taskworld we add render(options) function to each Route Definition Object, and have the React component call it. e.g.

const appRouter = createRouteMapper([
  projects: {
    route: '/',
    aliases: [ '/projects' ],
    render: ({ }) => <ProjectListPage />
  },
  project: {
    route: '/project/:projectId',
    render ({ projectId }) => <ProjectPage projectId={projectId} />
  }
])
 
const Application = ({ path }) => {
  const route = appRouter.resolve(path)
  const content = (route
    ? simpleRouter.getRouteDefinitionByName(route.name).render(route.options)
    : <NotFound />
  )
  return <AppLayout route={route}>{content}</AppLayout>
}

Redirects

To be written

Formats

To be written

Readme

Keywords

none

Package Sidebar

Install

npm i ave

Weekly Downloads

24

Version

0.0.1-0

License

MIT

Last publish

Collaborators

  • dtinth