ave v0.0.1-0
ave
Flexible JavaScript URL router.
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.
routesAn 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/:projectAltIdaliasesAn Array of String that contains the possible aliases for this route.redirectA Function which will redirect this route to another route during route resolution.formatA 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.
pathA String representing the path to resolve.- Returns a Route Object with these keys:
nameA String representing the route’s name.optionsAn Object containing the options from placeholders or query.
- Returns
nullif 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.
routeObjectA 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
optionsdid 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
10 years ago
10 years ago