1.5.3 • Published 5 years ago

next-routify v1.5.3

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

Next Routify

Build Status

Routing alternative for safe urls with typed parameters.

  • Define routes with or without parameters
  • Generate urls for links
  • Integrated request handler
  • Retrieve parameters from path separately from query

Setup with typescript

Check out the example app

Install it:

npm install --save next-routify ts-node

yarn add next-routify ts-node

Create routes.ts with your routes in root directory:

import { route, simple, bundle, router, routeLinkBuilder } from "next-routify";
const { routes, flattenRoutes } = router(
  // Define root route
  bundle(simple(""), {
    // Route with parameter id
    article: route<{ id: number }>("article/:id"),
    // Route without parameters
    user: simple("user"),
    // Nested routes
    admin: bundle(simple("admin"), {
      article: route<{ id: number }>("article/:id"),
      user: simple("user")
    })
  })
);

export const {
  // Alternative for Next Link
  RouteLink,
  // Redirect components that redirects on render
  Redirect,
  // Component that adds class to children component if is user on page
  IsUrlActive,
  // function to check whether is user on page
  isUrlActive
} = routifyBuilder(flattenRoutes);

Create server.ts in root directory:

import { createServer } from "http";
import * as next from "next";
import { requestHandler } from "next-routify";
import { flattenRoutes } from "./routes";

const app = next({
  dev: process.env.NODE_ENV !== "production"
});

app.prepare().then(() => {
  createServer(requestHandler(app, flattenRoutes))
    .addListener("error", err => {
      console.log(err);
      throw err;
    })
    .listen(3000, () => {
      console.log("> Ready on http://localhost:3000");
    });
});

Create tsconfig.server.json

{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "module": "commonjs",
    "target": "es2017",
    "lib": ["dom", "es2017"]
  }
}

Add script to your package.json:

{
  "scripts": {
    "next": "ts-node --project tsconfig.server.json server.ts"
  }
}

Now you can run server simply with:

yarn next

Get url

Get url as string:

// /
routes().url;

// /article/5
routes().article({ id: 5 }).url;

// /user
routes().user().url;

// /admin
routes().admin().url;

// /admin/article/5
routes()
  .admin()
  .article({ id: 5 }).url;

// /admin/user
routes()
  .admin()
  .user().url;

Create link to a route:

<RouteLink to={routes().article({ id: 5 })}>
  <a>Click here</a>
</RouteLink>

Retrieve parameters from path

interface WithRoutify<P = {}, Q = {}> extends WithRouterProps<Q> {
  parameters: P;
  query: Q;
}
withRouter(flattenRoutes)(Component);
import { withRoutify, WithRoutify } from "next-routify";
import { flattenRoutes, RouteLink, routes } from "routes";

// Every parameter is retrieved as string
const Component: React.FC<WithRoutify<{ id: string }>> = ({ parameters, query, router }) => {
  console.log(parameters.id);

  return (
    ...
  );
};

export default withRoutify(flattenRoutes)(Article);

Check whether an url is active

Inject class to its child:

<IsActive url={routes.url({}).article({ id: 5 })}>
  <li class="nav-item">
    <RouteLink to={routes.url({}).article({ id: 5 })}>
      <a>Article 5</a>
    </RouteLink>
  </li>
</IsActive>

API:

interface IsActiveProps {
  url: RouteUrl; // Url to check
  active?: string; // Class to inject (default: active)
  children: React.ReactElement; // Single react element
}

Use with Routelink

<RouteLink to={routes().article({ id: 5 })} active="active">
  <a>Click here</a>
</RouteLink>
1.5.3

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago