Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@sanity/state-router
Advanced tools
Based on a routing schema:
Define the routes for your application and how they should map to application state
import {route} from '@sanity/state-router'
const router = route('/', [
route('/products/:productId'),
route('/users/:userId'),
route('/:page'),
])
router.encode({})
// => '/'
router.decode('/')
// => {}
router.encode({productId: 54})
// => '/products/54'
router.decode('/products/54')
// => {productId: 54}
router.encode({userId: 22})
// => '/users/22'
router.decode('/users/54')
// => {userId: 54}
router.encode({page: 'about'})
// => '/about'
router.decode('/about')
// => {page: about}
import {route} from '@sanity/state-router'
import {RouterProvider, withRouter} from '@sanity/state-router/components'
const router = route('/', [
route('/bikes/:bikeId')
])
const history = createHistory()
function handleNavigate(nextUrl, {replace} = {}) {
if (replace) {
history.replace(nextUrl)
} else {
history.push(nextUrl)
}
}
const App = withRouter(function App({router}) {
if (router.state.bikeId) {
return <BikePage id={router.state.bikeId} />
}
return (
<div>
<h1>Welcome</h1>
<StateLink state={{bikeId: 22}}>Go to bike 22</StateLink>
</div>
)
})
function render(location) {
ReactDOM.render((
<RouterProvider
router={router}
onNavigate={handleNavigate}
state={router.decode(location.pathname)}>
<App />
</RouterProvider>
), document.getElementById('container'))
}
history.listen(() => render(document.location))
route(path : string, ?options : Options, ?children : ) : Router
route.scope(name : string, path : string, ?options : Options, ?children : ) : Router
Router
:
encode(state : object) : string
decode(path : string) : object
isRoot(path : string) : boolean
getBasePath() : string
,isNotFound(pathname: string): boolean
getRedirectBase(pathname : string) : ?string
RouteChildren
:
Router | [Router] | ((state) => Router | [Router])
Options
:
{
path?: string,
children?: RouteChildren,
transform?: {[key: string] : Transform<*>},
scope?: string
}
children
can be either another router returned from another route()-call
, an array of routers or a function that gets passed the matched parameters, and conditionally returns child routesConsider the following routes:
const router = route('/', [
route('/about'),
route('/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 encode an empty state unambiguously back to either of them. The solution to this would be to introduce the page name as a parameter instead:
const router = route('/', route('/: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)
Query parameters doesn't work too well with router scopes as they operate in a global namespace. A possible workaround is to "fake" query params in a path segment using transforms:
function decodeParams(pathsegment) {
return pathsegment.split(';')
.reduce((params, pair) => {
const [key, value] = pair.split('=')
params[key] = value
return params
}, {})
}
function encodeParams(params) {
return Object.keys(params)
.map(key => `${key}=${params[key]}`)
.join(';')
}
const router = route('/some/:section/:settings', {
transform: {
settings: {
toState: decodeParams,
toPath: encodeParams
}
}
}, route('/other/:page'))
This call...
router.decode('/some/bar/width=full;view=details')
...will return the following state
{
section: 'bar',
settings: {
width: 'full',
view: 'details',
}
}
Conversely calling
router.encode({
section: 'bar',
settings: {
width: 'full',
view: 'details',
}
})
will return
/some/bar/width=full;view=details
A scope is a separate router state space, allowing different parts of an application to be completely agnostic about the overall routing schema is like. Let's illustrate:
import {route} from './src'
function findAppByName(name) {
return name === 'pokemon' && {
name: 'pokemon',
router: route('/:section', route('/:pokemonName'))
}
}
const router = route('/', [
route('/users/:username'),
route('/apps/:appName', params => {
const app = findAppByName(params.appName)
return app && route.scope(app.name, '/', app.router)
})
])
Decoding the following path...
router.decode('/apps/pokemon/stats/bulbasaur')
...will give us the state:
{
appName: 'pokemon',
pokemon: {
section: 'stats',
pokemonName: 'bulbasaur'
}
}
An intent is a kind of global route that can be used for dispatching user actions. The intent route can be mounted with
route.intents(<basePath>)
Intent links bypasses scoping, and will always be mapped to the configured basePath
.
An intent consists of a name, e.g. open
and a set of parameters, e.g. {id: 'abc33'}
and the easiest way to make a link to an intent is using the IntentLink
React component:
<IntentLink intent="open" params={{id: abc33}}>Open document</IntentLink>
This will generate an <a
tag with a href like /<base path>/open/id=abc33
depending on where the intent handler is mounted
State router comes with a built in intent-route parser that decodes an intent route to route state.
Full example:
const router = route('/', [
route('/users/:username'),
route.intents('/intents') // <-- sets up intent routes at the /intents base path
])
Decoding the url /intents/open/id=abc33
will produce the following state:
{
intent: 'open',
params: {id: 'abc33'}
}
It is now up to your application logic to translate this intent into an action, and redirect accordingly.
To check whether a path name matches, you can use the isNotFound method on the returned router instance:
const router = route('/pages/:page')
router.isNotFound('/some/invalid/path')
// => true
Using a base path is as simple as adding a toplevel route with no params:
const router = route('/some/basepath', [
route('/:foo'),
route('/:bar')
])
Any empty router state will resolve to /some/basepath
. To check if you should redirect to the base path on app init, you can use the router.isRoot(path)
and router.getBasePath()
method:
if (router.isRoot(location.pathname)) {
const basePath = router.getBasePath()
if (basePath !== location.pathname) {
history.replaceState(null, null, basePath)
}
}
For convenience, this check is combined in the method router.getRedirectBase()
, that if a redirect is needed, will return the base path, otherwise null
const redirectTo = router.getRedirectBase(location.pathname)
if (redirectTo) {
history.replaceState(null, null, redirectTo)
}
MIT-licensed
FAQs
A path pattern => state object bidirectional mapper
The npm package @sanity/state-router receives a total of 7,111 weekly downloads. As such, @sanity/state-router popularity was classified as popular.
We found that @sanity/state-router demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 35 open source maintainers collaborating on the project.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.