npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mobx-state-tree-router

v1.3.0

Published

State-based router for mobx-state-tree and react apps

Downloads

21

Readme

MobX State Tree Router

State-based router for React and MobX State Tree

npm

Inspiration

Installation

Peer dependencies: react react-dom mobx mobx-react mobx-state-tree

NPM: npm install --save mobx-state-tree-router

Yarn: yarn add mobx-state-tree-router

Quick Start

index.js

import React from 'react';
import ReactDOM from 'react-dom';
import { RouterStore, View, startRouter, StateRouter, Link } from 'mobx-state-tree-router';

const views = {
  home: View.create({
    name: 'home',
    path: '/',
    component: <div>Home page</div>
  }),
  about: View.create({
    name: 'about',
    path: '/about',
    component: <div>About page</div>
  })
};

const router = RouterStore.create({
  views: views
});

startRouter(router);

ReactDOM.render((
  <div>
    <Link router={router} view={views.home}>Home</Link>
    <Link router={router} view={views.about}>About</Link>
    <StateRouter router={router} />
  </div>
), document.getElementById('root'));

Features

React components

  • <StateRouter router loading />
    • renders the appropriate component for the router's currentView
    • currentView can be set by calling router.setView(view, params) directly, or using a Link component
    • props can be set for the rendered component by calling router.setProps(props)
    • a component can be passed into the loading prop to display a loading indicator (e.g. ajax spinner)
  • <Link router view></Link>
    • renders an <a href></a> element with href set to the result of view.formatUrl(params)

MobX State Tree models

  • RouterStore
    • exposes the available routes based on the views
    • manages the currentUrl based on the currentView and params
    • setView(view, params) can be called to change the route
    • setProps(props) can be called to pass props to the currentView's rendered component
  • View
    • defines a name, route, component to render
    • defines optional change route hooks:
      • beforeExit(self, params)
      • beforeEnter(self, params)
      • onExit(self, params)
      • onEnter(self, params)
    • formatUrl(params) can be called to get the url for this view given the params passed

Browser url matching and history binding

startRouter(router) binds the router to the browser's history object to update the url or parse a url change and set the appropriate view.

Centralized view definitions

Views and their route cycle hooks (data fetching and business logic) can be defined in one centralized location:

views.js

import { View } from 'mobx-state-tree-router';
import Home from 'components/Home';
import ItemList from 'components/ItemList';
import Item from 'components/Item';
export const views = {
  home: View.create({
    name: 'home',
    path: '/',
    component: <Home />
  }),
  items: View.create({
    name: 'items',
    path: '/items',
    component: <ItemList />
    hooks: {
      async beforeEnter(self) {
        await self.root.itemStore.loadItems();
      }
    }
  }),
  item: View.create({
    name: 'item',
    path: '/item/:itemId',
    component: <Item />
    hooks: {
      async beforeEnter(self, params) {
        self.router.setProps({ itemId: params.itemId });
        await self.root.itemStore.loadItem(params.itemId);
      }
    }
  })
};

Route cycle hooks

These hooks provide a way to run some code during a route change. They can be synchronous or asynchronous. The route change process is as follows:

  • router.setView called
    • router.isLoading set to true
  • old view beforeExit(self, params)
    • returning false will cancel the route change
  • new view beforeEnter(self, params)
    • returning false will cancel the route change
  • route is updated and rendered
    • router.isLoading set to false
  • old view onExit(self, params)
  • new view onEnter(self, params)

Known Issues

  • formatUrl doesn't properly handle paths with catch-all *
    • current workaround is to use setView in the beforeEnter hook of the catch-all to redirect to another view
  • query parameters are not handled