mithril-json-viewer
v2.0.2
Published
Collapsable JSON viewer for mithril.js
Downloads
7
Readme
mithril-json-viewer
Collapsable JSON viewer for mithril.js
Description
This package renders a JSON object in an interactive way, allowing user to expand/collapse each nested tree node.
You can view an example here.
Installation
mithril
is a required peer dependency, so install both mithril
and mithril-json-viewer
:
npm install mithril mithril-json-viewer
Sample usage:
import * as m from 'mithril';
import { JsonViewer } from 'mithril-json-viewer/es';
const tree = {
name: 'I am a tree',
children: [
{ name: 'I am child 1' },
{ name: 'I am child 2' },
{
name: 'I am child 3',
children: ['grand child 1']
},
],
nested: {
opt1: true,
opt2: [1, 'a'],
opt5: { a: 1, b: 2 },
},
};
function view() {
return m('div', { class: 'json-tree', style: 'font-family: Courier;' },
m(JsonViewer, { tree: tree, options: { collapseAfter: 1 } }),
);
}
m.mount(document.body, { view: view });
You need some CSS to make the indentation work:
.json-tree div {
margin-left: 20px;
}
.json-tree button {
font-size: 50%;
}