Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@catchfashion/url-catalog-generator

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@catchfashion/url-catalog-generator

generates Typescript URL schemas that parse / serialize / support react-router.

  • 2.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

@catchfashion/url-catalog-generator

generates Typescript URL schemas that parse / serialize / support react-router.

What's this for?

Modern App / Web requires singular url schema
such as https://www.catchfashion.com/category/abcdef and catch://category/abcdef
for this purpose, url-catalog-generator suggest centralized way of managing url schema.
which could be used for

  • frontend routing, (react-router / path-to-regexp)
  • backend routing

(schema.json)

{
  "name": "CATCH",
  "urls": [
    {
      "name": "Home",
      "description": "Home page",
      "pathTemplate": "/:gender",
      "params": {
        "path": { "gender": { "type": "string", "enum": ["men", "women"] } }
      }
    },
    {
      "name": "Category",
      "description": "Category page",
      "pathTemplate": "/category/:categoryId",
      "params": {
        "path": { "categoryId": { "type": "string" } }
      }
    },
  ]
}

run

npm install @catchfashion/url-catalog-generator
url-catalog schema.json ./src

This would automatically generates below files

(urls/Category.ts)

import { URLSchema } from "url-catalog-generator";

type QueryParams = {};
type PathParams = {
  gender: "men" | "women", categoryId: string
};
type AllParams = QueryParams & PathParams;

export class Category {
  public static schema = new URLSchema<QueryParams, PathParams>({
    name: "Category",
    description: "category main show page",
    pathTemplate: "/:gender/category/:categoryId",
    params: {"path":{"gender":{"type":"string","enum":["men","women"]},"categoryId":{"type":"string"}}},
  });

  public static parse(path: string) {
    const params = this.schema.parse(path);
    return params && new this(params);
  }

  public static serialize(params: AllParams) {
    return new this(params).toString();
  }

  constructor(public readonly params: AllParams) {}

  public toString() {
    return Category.schema.serialize(this.params);
  }
}

(urls/Home.ts)

import { URLSchema } from "url-catalog-generator";

type QueryParams = {};
type PathParams = {
  gender: "men" | "women"
};

type AllParams = QueryParams & PathParams;

export class Home {
  public static schema = new URLSchema<QueryParams, PathParams>({
    name: "Home",
    description: "Home page",
    pathTemplate: "/:gender",
    params: {"path":{"gender":{"type":"string","enum":["men","women"]}}},
  });

  public static parse(path: string) {
    const params = this.schema.parse(path);
    return params && new this(params);
  }

  public static serialize(params: AllParams) {
    return new this(params).toString();
  }

  constructor(public readonly params: AllParams) {}

  public toString() {
    return Home.schema.serialize(this.params);
  }
}

Parse

import { URLs } from "./urls";

const url = "some string';

function parseURL(url: string) {
  for (const schema of URLs) {
    let model = schema.parse(url);
    if (model) {
      return model;
    }
  }
}

const parsed = parseURL("/women");
if (parsed instanceof URLs.Home) {
  const gender = parsed.gender; // "men" / "women";
  console.log("its home!");
} else if (parse instanceof URLs.CategoryShow) {
  const categoryId = parsed.categoryId; // 
  console.log("it's category with id : ", categoryId);
}

Serialize

import { URLs } from "./urls";

new URLs.Home({ gender: "women" }).toString(); // "/women";
URLs.Home.serialize({ gender: "women" }); // "/women";

Path-To-Regexp Format

import { URLs } from "./urls";

URLs.Home.schema.toPathToRegexp() === "/:gender(women|men)";

FAQs

Package last updated on 11 Nov 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