Home

Awesome

<h1 align="center"> <a href="https://react-json-view.microlink.io/"> <img src="https://raw.githubusercontent.com/microlinkhq/react-json-view/master/docs/assets/rjv-icon-alt.png" alt="react-json-view" width="200"></a> <br> react-json-view <br> <a href="https://www.npmjs.com/package/@microlink/react-json-view"><img src="https://img.shields.io/npm/v/%40microlink%2Freact-json-view.svg" alt="npm version"></a> <a href="https://github.com/microlinkhq/react-json-view/blob/master/LICENSE"><img src="https://img.shields.io/npm/l/%40microlink%2Freact-json-view.svg" alt="npm license"></a> <a href="https://github.com/microlinkhq/react-json-view/actions/workflows/main.yml?query=branch%3Amaster"><img src="https://github.com/microlinkhq/react-json-view/workflows/test/badge.svg" alt="Build Status"></a> <br> </h1>

react-json-view (rjv) is a React component for displaying and editing javascript arrays and JSON objects.

Highlights

Installation

npm install @microlink/react-json-view --save

Usage

import ReactJsonView from '@microlink/react-json-view'

<ReactJsonView src={{
  string: 'this is a test string',
  integer: 42,
  array: [1, 2, 3, 'test', NaN],
  float: 3.14159,
  undefined: undefined,
  object: {
    'first-child': true,
    'second-child': false,
    'last-child': null
    },
  string_number: '1234',
  date: new Date()
}} />

API

NameTypeDefaultDescription
srcJSON ObjectNoneThis property contains your input JSON.
namestring or JSX.Elementfalse"root" - Contains the name of your root node. Use null or false for no name.
themestring'rjv-default'RJV supports base-16 themes. Check out the list of supported themes in the demo. A custom "rjv-default" theme applies by default.
styleobject{}Style attributes for react-json-view container. Explicit style attributes will override attributes provided by a theme.
iconStylestring'circle'Style of expand/collapse icons. Accepted values are "circle", "triangle" or "square".
indentWidthinteger4Set the indent-width for nested objects.
collapsedboolean or integerfalseWhen set to true, all nodes will be collapsed by default. Use an integer value to collapse at a particular depth.
collapseStringsAfterLengthintegerfalseWhen an integer value is assigned, strings will be cut off at that length. Collapsed strings are followed by an ellipsis. String content can be expanded and collapsed by clicking on the string value.
shouldCollapse(field)=>{}falseCallback function to provide control over what objects and arrays should be collapsed by default. An object is passed to the callback containing name, src, type ("array" or "object") and namespace.
groupArraysAfterLengthinteger100When an integer value is assigned, arrays will be displayed in groups by count of the value. Groups are displayed with bracket notation and can be expanded and collapsed by clicking on the brackets.
enableClipboardboolean or (copy)=>{}trueWhen prop is not false, the user can copy objects and arrays to clipboard by clicking on the clipboard icon. Copy callbacks are supported.
displayObjectSizebooleantrueWhen set to true, objects and arrays are labeled with size.
displayDataTypesbooleantrueWhen set to true, data type labels prefix values.
onEdit(edit)=>{}falseWhen a callback function is passed in, edit functionality is enabled. The callback is invoked before edits are completed. Returning false from onEdit will prevent the change from being made. see: onEdit docs
onAdd(add)=>{}falseWhen a callback function is passed in, add functionality is enabled. The callback is invoked before additions are completed. Returning false from onAdd will prevent the change from being made. see: onAdd docs
defaultValuestring | number | boolean | array | objectnullSets the default value to be used when adding an item to JSON.
onDelete(delete)=>{}falseWhen a callback function is passed in, delete functionality is enabled. The callback is invoked before deletions are completed. Returning false from onDelete will prevent the change from being made. see: onDelete docs
onSelect(select)=>{}falseWhen a function is passed in, clicking a value triggers the onSelect method to be called.
sortKeysbooleanfalseSet to true to sort object keys.
quotesOnKeysbooleantrueSet to false to remove quotes from keys (e.g., "name": vs. name:).
validationMessagestring"Validation Error"Custom message for validation failures to onEdit, onAdd, or onDelete callbacks.
displayArrayKeybooleantrueWhen set to true, the index of the elements prefix values.

Callbacks

You can pass callback methods to onEdit, onAdd and onDelete props.

Your method will be invoked when a user attempts to update your src object.

The following object will be passed to your method:

{
    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
}

Returning false from a callback method will prevent the src from being affected.

Theming

Builtin theme

You can specify a theme name or object when you instantiate your rjv component.

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

The following themes are builtin with the library:

Check react-json-view.microlink.io to see how they look like.

Custom theme

rjv supports any base-16 theme. You can supply your own base-16 theme object.

To better understand custom themes, take a look at my example implementation and the base-16 theme styling guidelines.

License

react-json-view © microlink.io, released under the MIT License.<br> Authored by Mac Gainor and maintained by Kiko Beats with help from contributors.

microlink.io · GitHub microlink.io · X @microlinkhq