Giter Site home page Giter Site logo

isotrope's Introduction

Isotrope

Isotrope is a very basic experiment of a safe bi-directional router in ReasonReact thanks to @anuragsoni/routes awesome routing lib.

Define your routes once and use them both ways.

Install

yarn add @tsnobip/isotrope @anuragsoni/routes

And add @tsnobip/isotrope and @anuragsoni/routes to the bs-dependencies of bsconfig.json.

Usage

You can refer to the example folder for a working example.

Start with defining your route patterns (more info in @anuragsoni/routes docs), for example in Targets.re:

open! Routes;
let root = () => empty;
let users = () => s("users") /? nil;
let greeting = () => s("greeting") / str / str /? nil;

Then create the router by connecting a function to each route pattern:

module MyRoutes = {
  open Routes;
  let rootRoute = () => Targets.root() @--> <Users />;
  let usersRoute = () => Targets.users() @--> <Users />;
  let greetingRoute = () =>
    Targets.greeting() @--> ((name, greeting) => <Greeting name greeting />);

  let routes = one_of([rootRoute(), usersRoute(), greetingRoute()]);
};

You can then use your router this way:

let target = Isotrope.Hooks.useUrl();
switch (Routes.match'(MyRoutes.routes, ~target)) {
| Some(element) => element
| None => <NotFound />
};

You can also safely generate a url like this:

open Isotrope;
<Link route={Routes.sprintf(Targets.greeting(), "World", "Hello")}>
  {React.string("World")}
</Link>

Remaining tasks

  • add support for hashes and query parameters
  • better integration of @anurasgoni/Routes

isotrope's People

Contributors

tsnobip avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.