Socket
Socket
Sign inDemoInstall

@sanity/state-router

Package Overview
Dependencies
Maintainers
6
Versions
702
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sanity/state-router

A path pattern => state object bidirectional mapper


Version published
Weekly downloads
13K
decreased by-15.78%
Maintainers
6
Weekly downloads
 
Created
Source

@sanity/state-router

Features

Based on a routing schema:

  • A state object can be derived from the current pathname
  • A state object can be used to generate a path name

Usage

Define the routes for your application and how they should map to application state

import {createRoute, resolvePathFromState, resolveStateFromPath} from 'xroute'

const route = createRoute('/*', [
  createRoute('/products/:productId'),
  createRoute('/users/:userId'),
  createRoute('/:page'),
])

resolvePathFromState(route, {})
// => '/'
resolveStateFromPath(route, '/')
// => {}

resolvePathFromState(route, {productId: 54})
// => '/products/54'

resolveStateFromPath(route, '/products/54')
// => {productId: 54}

resolvePathFromState(route, {userId: 22})
// => '/users/22'

resolveStateFromPath(route, '/users/54')
// => {userId: 54}

resolvePathFromState(route, {page: 'about'})
// => '/about'

resolveStateFromPath(route, '/about')
// => {page: about}

Restrictions

  • Parameterized paths only. Each route must have at least one unique parameter. If not, there's no way of unambiguously resolve a path from an empty state.

Consider the following routes:

const rootRoute = createRoute('/', [
  createRoute('/about'),
  createRoute('/contact')
])

What route should be resolved from an empty state? Since both /about and /contact above resolves to an empty state object, there's no way to resolve an empty state object back to either of them. The solution to this would be to introduce the page name as a parameter instead:

const rootRoute = createRoute('/:page')

Now, /about would resolve to the state {page: 'about'} which unambiguously can map back to /page, and an empty state can map to /. To figure out if you are on the index page, you can check for state.page == null, (and set the state.page to null to navigate back to the index)

FAQs

Package last updated on 24 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc