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

react-from-json

v0.8.0

Published

Declare your React component tree in JSON

Downloads

1,828

Readme

react-from-json

Declare your React component tree in JSON

NPM JavaScript Style Guide

Intro

react-from-json lets you render React

<Foo>
  <Bar baz="Hello, world" />
</Foo>

from JSON

{
  "type": "Foo",
  "props": {
    "children": {
      "type": "Bar",
      "props": {
        "baz": "Hello, world"
      }
    }
  }
}

It also supports non-recursive structures.

Install

npm install --save react-from-json

Usage

import React from "react";
import ReactFromJSON from "react-from-json";

const entry = {
  type: "Foo",
  props: {
    children: {
      type: "Bar",
      props: {
        baz: "Hello, world",
      },
    },
  },
};

const mapping = {
  Foo: ({ children }) => (
    <div>
      <div>{children}</div>
    </div>
  ),
  Bar: ({ baz }) => <span>{baz}</span>,
};

const Example = () => {
  return <ReactFromJSON entry={entry} mapping={mapping} />;
};

Props passed to your components

Props passed to your mapped components include

  • propKey - name of the prop that rendered your component
  • propIndex - index of your component if using flat trees
  • _type - the type value for your component
  • ...props - the resolved value of your props object, with relevant child nodes rendered as components

Other JSON shapes

If your data doesn't follow the type | props shape, react-from-json makes it easy to map your data on the fly using the mapProp prop.

import React from "react";
import ReactFromJSON from "react-from-json";
import mapping from "./mapping";

const entryWithDifferentShape = {
  _type: "Foo",
  children: {
    _type: "Bar",
    baz: "Hello, world",
  },
};

const mapProp = (prop) => {
  if (prop._type) {
    const { _type, ...props } = prop;

    return {
      type: _type,
      props,
    };
  }

  return prop;
};

const Example = () => {
  return (
    <ReactFromJSON
      entry={entryWithDifferentShape}
      mapping={mapping}
      mapProp={mapProp}
    />
  );
};

Flat trees

react-from-json also supports flat, non-recursive structures via the special <ComponentLookup /> component. This is useful when working with typed systems like GraphQL, and you need to avoid unions.

The <ComponentLookup /> component

<ComponentLookup /> simply maps to another component defined in a components object. If you were using it in React, you would use it like:

<ComponentLookup componentType="Button" componentIndex={0} />

which would look up the Button component at index 0 in the components object, resolving to:

<Button id={0}>Hello, World!</Button>

For react-from-json we use JSON, so we would write this:

{
  "type": "ComponentLookup",
  "props": {
    "componentType": "Button",
    "componentIndex": 0
  }
}

The id here is set by the componentIndex, since we didn't specify one in the JSON. See this comment on IDs for more information.

Example

Here's the same example as above, instead using a <ComponentLookup /> for entry.props.baz, and providing a separate components object.

import React from "react";
import ReactFromJSON from "react-from-json";

const entry = {
  type: "Foo",
  props: {
    baz: {
      type: "ComponentLookup",
      props: {
        componentIndex: 0,
        componentType: "Bar",
      },
    },
  },
};

const mapping = {
  Foo: ({ baz }) => (
    <div>
      <div>{baz}</div>
    </div>
  ),
  Bar: ({ baz }) => <span>{baz}</span>,
};

const components = {
  Bar: [
    {
      type: "Bar",
      props: {
        baz: "Hello, world",
      },
    },
  ],
};

const Example = () => {
  return (
    <ReactFromJSON entry={entry} mapping={mapping} components={components} />
  );
};

A note on ids

react-from-json will map id from the root of your component JSON to the React component's id prop. Likewise, if you specify id under props, it will use this. If you use the <ComponentLookup /> component, react-from-json will use the array index as id unless another id is specified. Your id will always take priority.

With TypeScript

react-from-json supports generic types for use with TypeScript.

import { entry, mapping, components } from "./aboveExample";
import ReactFromJSON from "react-from-json";

interface Components {
  Bar: object[];
}

interface Mapping {
  Foo: React.ReactNode;
  Bar: React.ReactNode;
}

class FooReactFromJSON extends ReactFromJSON<Mapping, Components> {
  render(): JSX.Element {
    return super.render();
  }
}

const Example = () => {
  return (
    <FooReactFromJSON entry={entry} mapping={mapping} components={components} />
  );
};

License

MIT © Measured Corporation Ltd