Skip to content

interactive json viewer wrapped up in a react component

Notifications You must be signed in to change notification settings

mindriven/react-json-view

 
 

Repository files navigation

alt text

npm npm Build Status Coverage Status

react-json-view

Interactive react component for displaying javascript arrays and JSON objects.

This component provides a responsive interface for displaying arrays or JSON in a web browser. NPM offers a distribution of the source that's transpiled to ES5; so you can include this component with any web-based javascript application.

Implementation Example:

// import the react-json-view component
import ReactJson from 'react-json-view'

// use the component in your app!
<ReactJson src={my_json_object} />

Example Component Display:

alt text

See More Examples

Installation Instructions

Install this package with npm:

npm install --save react-json-view

Or add to your package.json config file:

"dependencies": {
    "react-json-view": "latest"
}

Props

Name Type Default Description
src JSON Object None This property contains your input JSON
name string "root" Contains the name of your root node
theme string "rjv-default" RJV supports base-16 themes. Check out the list of supported themes here. A custom "rjv-default" theme applies by default.
indentWidth integer 4 Set the indent-width for nested objects
collapsed boolean false When set to true, all nodes will be collapsed by default
enableClipboard boolean true When set to true, the user can copy objects and arrays to clipboard
displayObjectSize boolean true When set to true, objects and arrays are labeled with size
displayDataTypes boolean true When set to true, data type labels prefix values
onEdit (edit) => {} false When a callback function is passed in, value edits are enabled. The callback is invoked when edits are made. see: onEdit docs

Features

  • Object and array nodes can be collapsed and expanded
  • Object and array nodes display meta-data
  • Object and array nodes support a "Copy to Clipboard" feature
  • onEdit prop allows users to edit the src variable
  • Base-16 Theme Support

Customizing Style

RJV now supports base-16 themes!

You can specify a theme prop when you instantiate your rjv component.

<ReactJson src={my_important_json} theme="monokai" />

Check out the list of supported themes here.

Monokai theme example

alt text

Solarized theme example

alt text

onEdit Interaction

Click the pencil icon to initialize an edit

alt text

Input a new value. RJV will attempt to recognize integer and float inputs.

alt text

Submitting a new value calls your onEdit callback method

alt text

The onEdit function is passed an edit variable. The edit variable will have the following contents:

const edit = {
    updated_src: src, //new src value
    name: name, //new var name
    namespace: namespace, //list, namespace indicating var location
    new_value: new_value, //new variable value
    existing_value: existing_value, //existing variable value
}

Contributing to the source code:

Standard Workflow

  1. Clone this repo
  2. Install npm dependencies
cd react-json-view
npm install
  1. Run webpack to start webpack-dev-server with hot-reloading enabled
    • npm run dev:hot
  2. Open port 2000 in your browser
    • navigate to localhost:2000

Development within a Docker Container

You can use Docker to run the source code in a local development environment:

  1. Clone this repo
  2. Make sure docker is installed
  3. Build the docker image
    • docker build -t react-json-view .
    • note: you may need to use sudo to run docker commands
  4. Run the docker container on port 2000. This will run the webpack-dev-server with hot-reloading enabled.
    • cd react-json-view
    • ./docker/dev-server.sh
    • note: you may need to use sudo to run the server file
  5. Open port 2000 in your browser
    • navigate to localhost:2000

Your source code will be mounted inside the docker container. The container is built on the standard Node image.

Webpack-dev-server is running in the container and hot-reloading when changes are made locally.

All node modules are installed within the container, so make sure to rebuild your container if you make changes to package.json (see step 3, above).

To-Do's

  1. Support "delete" capability when onEdit is enabled
  2. Support "add" capability when onEdit is enabled

About

interactive json viewer wrapped up in a react component

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.9%
  • HTML 7.1%
  • Shell 7.0%