
react-json-view-with-toggle
This package is built on top of react-json-view (RJV) and react-json-view-enhanced. The main add-on of this package on top of the two is to display boolean values as toggles, this make viewing boolean values intuitive and editing more convenient (just by flipping the toggle). In addition, the original two packages lack documentation on how to use properly with Server-Side Rendering, which is included in this package.
Below is the original README:
RJV is a React component for displaying and editing 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. Check out the Interactive Demo
Implementation Example
Client-Side Rendering ```js // import the react-json-view-with-toggle component import ReactJson from 'react-json-view-with-toggle' // use the component in your app! jsonobject} /> ``` Server-Side Rendering ```js // import the react-json-view-with-toggle component after the document object is ready const DynamicLazyReactJsonView = dynamic(() => import ('react-json-view-with-toggle'), {suspense: true}) // wrap the component in Suspense and use in your app! loading}> jsonobject}/> ```Output Examples
The original package:
Default Theme

Hopscotch Theme, with Triangle Icons:

This package:

Installation Instructions
Install this component with NPM. ```shell npm install --save react-json-view-with-toggle ```Props
Name|Type|Default|Description |:---|:---|:---|:---src
|JSON Object
|None|This property contains your input JSON
name
|string
or false
|"root"|Contains the name of your root node. Use null
or false
for no name.
theme
|string
|"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.
style
|object
|{}
|Style attributes for react-json-view-enhanced container. Explicit style attributes will override attributes provided by a theme.
iconStyle
|string
|"circle"| Style of expand/collapse icons. Accepted values are "circle", triangle" or "square".
indentWidth
|integer
|4|Set the indent-width for nested objects
collapsed
|boolean
or integer
|false
|When set to true
, all nodes will be collapsed by default. Use an integer value to collapse at a particular depth.
collapseStringsAfterLength
|integer
|false
|When 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)=>{}
|false
|Callback 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
.
groupArraysAfterLength
|integer
|100
|When 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.
enableClipboard
|boolean
or (copy)=>{}
|true
|When prop is not false
, the user can copy objects and arrays to clipboard by clicking on the clipboard icon. Copy callbacks are supported.
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, 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)=>{}
|false
|When 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
defaultValue
|string \|number \|boolean \|array \|object
|null
|Sets the default value to be used when adding an item to json
onDelete
|(delete)=>{}
|false
|When 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)=>{}
|false
|When a function is passed in, clicking a value triggers the onSelect
method to be called.
sortKeys
|boolean
|false
|set to true to sort object keys
quotesOnKeys
|boolean
|true
|set to false to remove quotes from keys (eg. "name":
vs. name:
)
validationMessage
|string
|"Validation Error"|Custom message for validation failures to onEdit
, onAdd
, or onDelete
callbacks
displayArrayKey
|boolean
|true
|When set to true
, the index of the elements prefix values
fixedType
|boolean
|false
|When set to true
, the value type will be fixed
typeInvalidMessage
|string
|Invalid value type
|Custom message when the value type is fixed and input value type is invalid
Features
onEdit
,onAdd
andonDelete
props allow users to edit thesrc
variable
- Object, array, string and function values can be collapsed and expanded
- Object and array nodes display length
- Object and array nodes support a "Copy to Clipboard" feature
- String values can be truncated after a specified length
- Arrays can be subgrouped after a specified length
- Base-16 Theme Support
- When
onEdit
is enabled:
* `Ctrl/Cmd+Click` Edit Mode
* `Ctrl/Cmd+Enter` Submit
- Fixed value type
Customizing Style
Stock Themes
RJV now supports base-16 themes! You can specify atheme
name or object when you instantiate your rjv component.
```jsx
importantjson} theme="monokai" />
```
Check out the list of supported themes in the component demo.
Monokai theme example

Solarized theme example

Use Your Own 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.onEdit, onAdd and onDelete Interaction
Pass callback methods toonEdit
, 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:
```js
{
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.
Contributing to the source code
Run the Dev Server
```bashclone this repository
git clone git@github.com:mac-s-g/react-json-view-enhanced.git && cd react-json-view-enhanced
install dependencies
npm install --save-dev
run the dev server with hot reloading
npm run dev
```
Webpack Dev Server should automatically open up http://localhost:2000 in your web browser. If it does not, open a browser and navigate to port 2000. The hot reloader will automatically reload when files are modified in the /src/
directory.
Run the Production Build
```bashrun the build (note: you may need to use
npm run build
```
Please add tests for your code before posting a pull request.
You can run the test suite with sudo
priveledges to run the build successfully)npm run test
or npm run test:watch
to automatically reload when files are modified.