All Projects → TehShrike → Abstract State Router

TehShrike / Abstract State Router

Like ui-router, but without all the Angular. The best way to structure a single-page webapp.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Abstract State Router

Universal Router
A simple middleware-style router for isomorphic JavaScript web apps
Stars: ✭ 1,598 (+454.86%)
Mutual labels:  router, routing, spa, single-page-app
Svelte Navigator
Simple, accessible routing for Svelte
Stars: ✭ 125 (-56.6%)
Mutual labels:  routing, spa, svelte
Vanilla Ui Router
Simple vanilla JavaScript router
Stars: ✭ 42 (-85.42%)
Mutual labels:  router, spa, single-page-app
Curi
A JavaScript router for single-page applications
Stars: ✭ 262 (-9.03%)
Mutual labels:  router, svelte, single-page-app
Redux Tower
Saga powered routing engine for Redux app.
Stars: ✭ 155 (-46.18%)
Mutual labels:  router, routing, spa
launchlet
Make the web yours.
Stars: ✭ 34 (-88.19%)
Mutual labels:  spa, single-page-app, svelte
url
Build and parse URLs. Useful for HTTP and "routing" in single-page apps (SPAs)
Stars: ✭ 69 (-76.04%)
Mutual labels:  spa, single-page-app, routing
wordpress-svelte
Frontend writen on svelt
Stars: ✭ 17 (-94.1%)
Mutual labels:  spa, single-page-app, svelte
react-mobx-router5
React components for routing solution using router5 and mobx
Stars: ✭ 58 (-79.86%)
Mutual labels:  router, routing
yew-router
Router extension to yew
Stars: ✭ 27 (-90.62%)
Mutual labels:  router, routing
gatsby-plugin-dynamic-routes
Creating dynamic routes based on your environment and/or renaming existing routes
Stars: ✭ 14 (-95.14%)
Mutual labels:  router, routing
wordpress
Free PWA & SPA for Wordpress & Woocommerce
Stars: ✭ 103 (-64.24%)
Mutual labels:  spa, single-page-app
r5r
ipeagit.github.io/r5r/
Stars: ✭ 90 (-68.75%)
Mutual labels:  router, routing
microzord
Simple and powerful Micro Frontends framework
Stars: ✭ 81 (-71.87%)
Mutual labels:  routing, svelte
go router
The purpose of the go_router for Flutter is to use declarative routes to reduce complexity, regardless of the platform you're targeting (mobile, web, desktop), handling deep linking from Android, iOS and the web while still allowing an easy-to-use developer experience.
Stars: ✭ 380 (+31.94%)
Mutual labels:  router, routing
Navigation
Routing for SPAs, the Elm way
Stars: ✭ 255 (-11.46%)
Mutual labels:  routing, spa
xRoute
一个小型的前端路由库✈️
Stars: ✭ 36 (-87.5%)
Mutual labels:  spa, router
cakephpvue-spa
A CakePHP + VueJS single page application skeleton/boilerplate.
Stars: ✭ 40 (-86.11%)
Mutual labels:  spa, single-page-app
Frontexpress
An Express.js-Style router for the front-end
Stars: ✭ 263 (-8.68%)
Mutual labels:  router, spa
Vanillajs Spa
a simple SPA in vanilla js
Stars: ✭ 265 (-7.99%)
Mutual labels:  spa, single-page-app

ChangelogJoin the chat on DiscordAPI documentation

Brief explanation

abstract-state-router lets you build single-page webapps using nested routes/states. Your code doesn't reference routes directly, like /app/users/josh, but by name and properties, like app.user + { name: 'josh' }.

To find out why you should be using this kind of router, read Why Your Webapp Needs a State-Based Router.

abstract-state-router is heavily inspired by the original ui-router. The biggest difference is: you can use abstract-state-router with whatever templating/component library you like.

It is similar in that way to the new ui-router, except that abstract-state-router is smaller, its documentation is more readable, and it is easier to create new renderers for arbitrary view libraries.

To see an example app implemented with a couple of different browser rendering libraries, click here to visit the state-router-example on Github Pages.

Project status

This project is stable and has been used in production for years.

The last breaking change was in October of 2017, and only involved removing some built-in polyfills.

abstract-state-router is extensible without much work, so very few feature additions have been necessary.

I occasionally have dreams of a rewrite, but it's hard to justify when the current version works so well for my main target use case (business software).

Browser compatibility

This project is currently published as CommonJS ES5-compatible code.

If you're supporting old browsers, you'll need to use polyfills for Promise and Object.assign. Check out polyfill.io, it makes life super-easy.

Current renderer implementations

If you want to use the state router with any other templating/dom manipulation library, read these docs! It's not too bad to get started.

Install

Using npm + your favorite CommonJS bundler is easiest.

npm install abstract-state-router -S

You can also download the stand-alone build from bundle.run. If you include it in a <script> tag, a abstractStateRouter function will be included on the global scope.

Want to use the abstract-state-router without messing with bundlers or package managers? Check out the minimum-viable-project code (in a single HTML file!) over at the simplest-abstract-state-router-usage.

API

Instantiate

var createStateRouter = require('abstract-state-router')

var stateRouter = createStateRouter(makeRenderer, rootElement, options)

The makeRenderer should be a function that returns an object with four properties: render, destroy, getChildElement, and reset. Documentation is here - see test/support/renderer-mock.js for an example implementation.

The rootElement is the element where the first-generation states will be created.

options

Possible properties of the options object are:

  • pathPrefix defaults to '#'. If you're using HTML5 routing/pushState, you'll most likely want to set this to an empty string.
  • router defaults to an instance of a hash brown [email protected]. The abstract-state-router unit tests use the hash brown router stub. To use pushState, pass in a hash brown router created with sausage-router.
  • throwOnError defaults to true, because you get way better stack traces in Chrome when you throw than if you console.log(err) or emit 'error' events. The unit tests disable this.

stateRouter.addState({name, route, defaultChild, data, template, resolve, activate, querystringParameters, defaultParameters})

The addState function takes a single object of options. All of them are optional, unless stated otherwise.

name is parsed in the same way as ui-router's dot notation, so 'contacts.list' is a child state of 'contacts'. Required.

route is an express-style url string that is parsed with a fork of path-to-regexp. If the state is a child state, this route string will be concatenated to the route string of its parent (e.g. if 'contacts' state has route ':user/contacts' and 'contacts.list' has a route of '/list', you could visit the child state by browsing to '/tehshrike/contacts/list').

defaultChild is a string (or a function that returns a string) of the default child's name. Use the short name (list), not the fully qualified name with all its parents (contacts.list).

If the viewer navigates to a state that has a default child, the router will redirect to the default child. (For example, if 'list' is the default child of 'contacts', state.go('contacts') will actually be equivalent to state.go('contacts.list'). Likewise, browsing to '/tehshrike/contacts' would take the viewer to '/tehshrike/contacts/list'.)

data is an object that can hold whatever you want - it will be passed in to the resolve and activate functions.

template is a template string/object/whatever to be interpreted by the render function. Required.

resolve is a function called when the selected state begins to be transitioned to, allowing you to accomplish the same objective as you would with ui-router's resolve.

activate is a function called when the state is made active - the equivalent of the AngularJS controller to the ui-router.

querystringParameters is an array of query string parameters that will be watched by this state.

defaultParameters is an object whose properties should correspond to parameters defined in the querystringParameters option or the route parameters. Whatever values you supply here will be used as the defaults in case the url does not contain any value for that parameter.

For backwards compatibility reasons, defaultQuerystringParameters will work as well (though it does not function any differently).

resolve(data, parameters, callback(err, content).redirect(stateName, [stateParameters]))

data is the data object you passed to the addState call. parameters is an object containing the parameters that were parsed out of the route and the query string.

Returning values

Your resolve function can either return a promise, or call the callback.

Properties on the returned object will be set as attributes on the state's component.

async function resolve(data, parameters) {
	const [ user, invoice ] = await Promise.all([
		fetchUser(parameters.userId),
		fetchInvoice(parameters.invoiceId),
	])
	
	return {
		user,
		invoice,
	}
}

Errors/redirecting

If you return a rejected promise or call callback(err, content) with a truthy err value, the state change will be cancelled and the previous state will remain active.

If you call callback.redirect(stateName, [stateParameters]), the state router will begin transitioning to that state instead. The current destination will never become active, and will not show up in the browser history.

To cause a redirect with promises, return a rejected promise with an object containing a redirectTo property with name and params values for the state to redirect to:

function resolve(data, parameters) {
	return Promise.reject({
		redirectTo: {
			name: 'otherCoolState',
			params: {
				extraCool: true
			}
		}
	})
}

activate(context)

The activate function is called when the state becomes active. It is passed an event emitter named context with four properties:

  • domApi: the DOM API returned by the renderer
  • data: the data object given to the addState call
  • parameters: the route/querystring parameters
  • content: the object passed into the resolveFunction's callback

The context object is also an event emitter that emits a 'destroy' event when the state is being transitioned away from. You should listen to this event to clean up any workers that may be ongoing.

addState examples

stateRouter.addState({
	name: 'app',
	data: {},
	route: '/app',
	template: '',
	defaultChild: 'tab1',
	resolve: function(data, parameters, cb) {
		// Sync or async stuff; just call the callback when you're done
		isLoggedIn(function(err, isLoggedIn) {
			cb(err, isLoggedIn)
		})
	},
	activate: function(context) {
		// Normally, you would set data in your favorite view library
		var isLoggedIn = context.content
		var ele = document.getElementById('status')
		ele.innerText = isLoggedIn ? 'Logged In!' : 'Logged Out!'
	}
})

stateRouter.addState({
	name: 'app.tab1',
	data: {},
	route: '/tab_1',
	template: '',
	resolve: function(data, parameters, cb) {
		getTab1Data(cb)
	},
	activate: function(context) {
		document.getElementById('tab').innerText = context.content

		var intervalId = setInterval(function() {
			document.getElementById('tab').innerText = 'MORE CONTENT!'
		}, 1000)

		context.on('destroy', function() {
			clearInterval(intervalId)
		})
	}
})

stateRouter.addState({
	name: 'app.tab2',
	data: {},
	route: '/tab_2',
	template: '',
	resolve: function(data, parameters, cb) {
		getTab2Data(cb)
	},
	activate: function(context) {
		document.getElementById('tab').innerText = context.content
	}
})

stateRouter.go(stateName, [stateParameters, [options]])

Browses to the given state, with the current parameters. Changes the url to match.

The options object currently supports two options:

  • replace - if it is truthy, the current state is replaced in the url history.
  • inherit - if true, querystring parameters are inherited from the current state. Defaults to false.

If a state change is triggered during a state transition, and the DOM hasn't been manipulated yet, then the current state change is discarded, and the new one replaces it. Otherwise, it is queued and applied once the current state change is done.

If stateName is null, the current state is used as the destination.

stateRouter.go('app')
// This actually redirects to app.tab1, because the app state has the default child: 'tab1'

stateRouter.evaluateCurrentRoute(fallbackStateName, [fallbackStateParameters])

You'll want to call this once you've added all your initial states. It causes the current path to be evaluated, and will activate the current state. If no route is set, abstract-state-router will change the url to to the fallback state.

stateRouter.evaluateCurrentRoute('app.home')

stateRouter.stateIsActive(stateName, [stateParameters])

Returns true if stateName is the current active state, or an ancestor of the current active state...

...And all of the properties of stateParameters match the current state parameter values.

// Current state name: app.tab1
// Current parameters: { fancy: 'yes', thing: 'hello' }
stateRouter.stateIsActive('app.tab1', { fancy: 'yes' }) // => true
stateRouter.stateIsActive('app.tab1', { fancy: 'no' }) // => false
stateRouter.stateIsActive('app') // => true

stateRouter.makePath(stateName, [stateParameters], options)

Returns a path to the state, starting with an optional octothorpe #, suitable for inserting straight into the href attribute of a link.

The options object supports one property: inherit - if true, querystring parameters are inherited from the current state. Defaults to false.

If stateName is null, the current state is used.

stateRouter.makePath('app.tab2', { pants: 'no' })

stateRouter.getActiveState()

Returns the last completely loaded state

// Current state name: app.tab1
// Current state params: pants: 'no'
stateRouter.getActiveState() // => { name: 'app.tab1', parameters: { pants: 'no' }}

Events

These are all emitted on the state router object.

State change

  • stateChangeAttempt(functionThatBeginsTheStateChange) - used by the state transition manager, probably not useful to anyone else at the moment
  • stateChangeStart(state, parameters, states) - emitted after the state name and parameters have been validated
  • stateChangeCancelled(err) - emitted if a redirect is issued in a resolve function
  • stateChangeEnd(state, parameters, states) - after all activate functions are called
  • stateChangeError(err) - emitted if an error occurs while trying to navigate to a new state - including if you try to navigate to a state that doesn't exist
  • stateError(err) - emitted if an error occurs in an activation function, or somewhere else that doesn't directly interfere with changing states. Should probably be combined with stateChangeError at some point since they're not that different?
  • routeNotFound(route, parameters) - emitted if the user or some errant code changes the location hash to a route that does not have any states associated with it. If you have a generic "not found" page you want to redirect people to, you can do so like this:
stateRouter.on('routeNotFound', function(route, parameters) {
	stateRouter.go('not-found', {
		route: route,
		parameters: parameters
	})
})

DOM API interactions

  • beforeCreateState({state, content, parameters})
  • afterCreateState({state, domApi, content, parameters})
  • beforeResetState({state, domApi, content, parameters})
  • afterResetState({state, domApi, content, parameters})
  • beforeDestroyState({state, domApi})
  • afterDestroyState({state})

Testing/development

To run the unit tests:

  • clone this repository
  • run npm install
  • run npm test

State change flow

  • emit stateChangeStart
  • call all resolve functions
  • resolve functions return
  • NO LONGER AT PREVIOUS STATE
  • destroy the contexts of all "destroy" and "change" states
  • destroy appropriate dom elements
  • reset "change"ing dom elements
  • call render functions for "create"ed states
  • call all activate functions
  • emit stateChangeEnd

Every state change does this to states

  • destroy: states that are no longer active at all. The contexts are destroyed, and the DOM elements are destroyed.
  • change: states that remain around, but with different parameter values - the DOM sticks around, but the contexts are destroyed and resolve/activate are called again.
  • create: states that weren't active at all before. The DOM elements are rendered, and resolve/activate are called.

HTML5/pushState routing

pushState routing is technically supported. To use it, pass in an options object with a router hash-brown-router constructed with a sausage-router, and then set the pathPrefix option to an empty string.

var makeStateRouter = require('abstract-state-router')
var sausage = require('sausage-router')
var makeRouter = require('hash-brown-router')

var stateRouter = makeStateRouter(makeRenderer, rootElement, {
	pathPrefix: '',
	router: makeRouter(sausage())
})

However to use it in the real world, there are two things you probably want to do:

Intercept link clicks

To get all the benefits of navigating around nested states, you'll need to intercept every click on a link and block the link navigation, calling go(path) on the sausage-router instead.

You would need to add these click handlers whenever a state change happened.

Server-side rendering

You would also need to be able to render the correct HTML on the server-side.

For this to even be possible, your chosen rendering library needs to be able to work on the server-side to generate static HTML. I know at least Ractive.js and Riot support this.

The abstract-state-router would need to be changed to supply the list of nested DOM API objects for your chosen renderer.

Then to generate the static HTML for the current route, you would create an abstract-state-router, tell it to navigate to that route, collect all the nested DOM API objects, render them as HTML strings, embedding the children inside of the parents.

You would probably also want to send the client the data that was returned by the resolve functions, so that when the JavaScript app code started running the abstract-state-router on the client-side, it wouldn't hit the server to fetch all the data that had already been fetched on the server to generate the original HTML.

Who's adding this?

Track development progress in #48.

It could be added by me, but probably not in the near future, since I will mostly be using this for form-heavy business apps where generating static HTML isn't any benefit.

If I use the abstract-state-router on an app where I want to support clients without JS, then I'll start working through those tasks in the issue above.

If anyone else has need of this functionality and wants to get keep making progress on it, I'd be happy to help. Stop by the chat room to ask any questions.

Maintainers

License

WTFPL

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].