Socket
Socket
Sign inDemoInstall

@sanity/state-router

Package Overview
Dependencies
2
Maintainers
1
Versions
702
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @sanity/state-router

A


Version published
Weekly downloads
15K
increased by16.62%
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 21 Sep 2016

Did you know?

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc