Socket
Socket
Sign inDemoInstall

atomic-router

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atomic-router

Simple routing implementation that provides abstraction layer instead of inline URL's and does not break your architecture


Version published
Weekly downloads
831
increased by0.61%
Maintainers
1
Weekly downloads
 
Created
Source

Atomic Router

Simple routing implementation that provides abstraction layer instead of inline URL's and does not break your architecture

  • Type-safe
  • No inline URL's
  • Atomic routes
  • Framework-agnostic
  • Isomorphic (pass your own history instance)

Installation

$ npm install effector atomic-router

Initialization

Create your routes wherever you want:

// pages/home
export const homeRoute = createRoute()

// pages/posts
export const postsRoute = createRoute<{ postId: string }>()

And then create a router

// app/routing
import { homeRoute } from '@/pages/home'
import { postsRoute } from '@/pages/home'

const routes = [
  { path: '/', route: homeRoute },
  { path: '/posts', route: postsRoute },
]

createRouter({
  routes: routes,
  // Optional
  history: createBrowserHistory()
})

Why atomic routes?

There are 3 purposes for using atomic routes:

  • To abstract the application from hard-coded paths
  • To provide you a declarative API for a comfortable work
  • To avoid extra responsibility in app features

Examples

Fetch post on page open
// model.ts
export const getPostFx = createEffect<{ postId:string }, Post>(({ postId }) => {
  return api.get(`/posts/${postId}`)
})

export const $post = restore(getPostFx.doneData, null)
//route.ts
import { getPostFx } from './model'

const postPage = createRoute<{ postId: string }>()

guard({
  source: postPage.$params,
  filter: postPage.$isOpened,
  target: getPostFx
})

API Reference

// Stores
route.$isOpened  // Store<boolean>
route.$params    // Store<{ [key]: string }>
route.$query     // Store<{ [key]: string }>

// Events (only watch 'em)
route.opened     // Event<{ params: RouteParams, query: RouteQuery }>
route.left       // Event<{ params: RouteParams, query: RouteQuery }>

// Effects
route.open       // Effect<RouteParams>
route.navigate   // Effect<{ params: RouteParams, query: RouteQuery }>

FAQs

Package last updated on 26 Oct 2021

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