0.33.8 • Published 27 days ago

headless-json-editor v0.33.8

Weekly downloads
-
License
MIT
Repository
-
Last release
27 days ago

install

yarn add headless-json-editor

Npm package version Types

quick overview

// stateful api - removes management of json-schema-draft and current state
import { HeadlessEditor } from 'headless-json-editor';

const jsonSchema = { type: 'array', items: { type: 'string' } };
const he = new HeadlessEditor({ schema: jsonSchema, data: ['first item'] });
let rootNode = he.getState();
rootNode = he.setValue('#/1', 124);

// doRender(rootNode);
{
  "id": "686f3a2e-6d99-4f32-bd16-1e965431fc52",
  "type": "array",
  "pointer": "#",
  "property": "#",
  "schema": {
    "type": "array",
    "items": {
      "type": "string"
    }
  },
  "options": {
    "disabled": false,
    "hidden": false
  },
  "children": [
    {
      "id": "29de15eb-cb22-44c3-bc73-74fde9ccec7f",
      "type": "string",
      "pointer": "#/0",
      "property": "0",
      "options": {
        "disabled": false,
        "hidden": false
      },
      "schema": {
        "type": "string"
      },
      "value": "first item",
      "errors": []
    },
    {
      "id": "20a3e4e5-2995-4065-8e2b-db380b6463ac",
      "type": "number",
      "pointer": "#/1",
      "property": "1",
      "options": {
        "disabled": false,
        "hidden": false
      },
      "schema": {
        "type": "string"
      },
      "value": 124,
      "errors": [
        {
          "type": "error",
          "name": "TypeError",
          "code": "type-error",
          "message": "Expected `124` (number) in `#/1` to be of type `string`",
          "data": {
            "received": "number",
            "expected": "string",
            "value": 124,
            "pointer": "#/1"
          }
        }
      ]
    }
  ],
  "errors": []
}

introduction

From your input data and json-schema, headless-json-editor creates a tree data-structure that reflects your input-data. Each node within this tree is a data-point containing its json-schema and either children (object or array «» parent node) or the property value (leaf node «» value node). Thus, each tree also contains your state of data. You can retrieve the data of a tree or node anytime using getData(node).

You may work on a node-tree using the functional api. Functions that modify a tree will always return a new tree to support immutable data. Just be aware that new trees are generated shallow so you should not edit nodes directly unless this is on purpose.

node

get current value of valueNode

const value = node.value;

get type of node

const nodeType: string = node.type;

get current json-pointer of node

const nodeLocation: string = node.pointer;

get current validation errors of node

const errors: JsonError[] = node.errors;

get options for current node

const options: Record<string, any> = node.options;

get children of parentNode

const value: Node[] = node.children;

get json-schema of value

const schema: JsonSchema = node.schema;

api

plugins | how to write plugins

stateful api removes management of json-schema-draft, current state and offers a simple interface for plugins

import { HeadlessEditor } from 'headless-json-editor';

const jsonSchema = { type: 'array', items: { type: 'string' } };
const he = new HeadlessEditor({ schema: jsonSchema, data: ['first item'] });
let rootNode = he.getState();
rootNode = he.setValue('#/1', 124);

render(rootNode);

functional helpers exposed with instance that change state

create a new node tree from the passed data

const newRootNode = he.create(data);

change value at a specific location in data

const newRootNode = he.setValue("#/pages/0/title", data);

remove value at specific location in data

const newRootNode = he.removeValue("#/pages/3");

move an array item to another index

const newRootNode = he.moveItem("#/pages/2", 0);

create and append an new item to an array using the passed json schema

const newRootNode = he.appendItem(arrayNode, schema);

get possible child schemas to add for given node

const jsonSchemas = he.getArrayAddOptions(node);

create data that validates against the current json-schema

const data = he.getTemplateData();

plugins

plugin-api is supported by stateful-api. Internally, each plugin may use the functional api to modify the current state, passing back a new state and the changes made to stateful-api.

OnChangePlugin

import { HeadlessEditor, OnChangePlugin } from 'headless-json-editor';

const jsonSchema = { type: 'array', items: { type: 'string' } };
const he = new HeadlessEditor({ schema: jsonSchema, data: ['first item'] });
he.addPlugin(OnChangePlugin, {
  onChange(data, rootNode, he) {
    console.log("data changed to", data);
  }
})

he.setValue('#/0', 124);
// log: [124]

HistoryPlugin

import { HeadlessEditor, HistoryPlugin } from 'headless-json-editor';

const jsonSchema = { type: 'array', items: { type: 'string' } };
const he = new HeadlessEditor({ schema: jsonSchema, data: ['first item'] });
const history = he.addPlugin(HistoryPlugin);
he.setValue('#/0', 124);

history.undo();
// log: ['first item']

// history.redo();
// history.getUndoCount();
// history.getRedoCount();

how to write plugins

plugins are function that return an object with a unique id and a method onEvent(Node, PluginEvent).

import { Plugin } from 'headless-json-editor';

export const MyPlugin: Plugin<{ myOption: string }> = (he, options) => {
    return {
        id: "my-plugin-id",
        onEvent(root, event) {
            console.log(options.myOption, event);
        }
    };
};

Witin onEvent you have access to all events omitted. You can hook into changes and modify the state. When chaning the state you have to pass back a list of changes to the editor for further processing:

import { Plugin, isChangeEvent } from 'headless-json-editor';

export const MyPlugin: Plugin<{ myOption: string }> = ({ draft}, options) => ({
    id: "set-option-title-to",
    onEvent(root, event) {
        if (!isChangeEvent(event) || event.node.schema["MyKey"] == null) {
            return undefined;
        }
        const node = event.node;
        const target = node.schema["MyKey"];
        const index = node.schema!.enum!.indexOf(node.value as string);
        if (index < 0) {
            return undefined;
        }
        const value = node.schema.options?.enum?.[index];
        const [newAST, changes] = setValue(draft, root, target, value);
        if (isJsonError(newAST)) {
            return undefined;
        }
        // return new root and list of changes
        return [newAST, changes ?? []];
    }
});

The last event, the done-event, does not accept node-changes. It lists all changes made with the final root node. Use this event to hook into completed update-cycles.

onEvent(root, event) {
    if (event.type === "done") {
        // do something
    }
}

Note, plugins are run sequentially to avoid circular updates. This also means plugin order matters. To break out of the update loop and trigger a fresh update-cycle use the editor's data-update methods, like setValue (asynchronously):

onEvent(root, event) {
    if (isChangeEvent(event)) {
        setTimeout(() => {
          he.setValue("#/1", 124);
        });
    }
}

functional api

create and change state | working with nodes

The functional api requires an instance of a json-schema draft to work with. This instance needs to be passed for all actions that change nodes. In the following example a modified draft JsonEditor is used. This draft offers some additions helpful to build user-forms. @see json-schema-library for more details

quick overview

import { JsonEditor } from 'json-schema-library';
import { createNode, setValue } from "headless-json-editor";

const jsonSchema = { type: 'array', items: { type: 'string' } };
const draft = new JsonEditor({ schema: jsonSchema, data: ['first item'] });
let rootNode = createNode(draft, ["9fa"])
rootNode = setValue(draft, rootNode, '#/1', 124);

// doRender(rootNode);

create and change state

transformation functions that modify state

import { Draft07 } from "json-schema-library";
const draft = new Draft07(jsonSchema);

create node tree from schema and data

const currentRootNode = createNode(draft, data);

move an array item by index

const [newRootNode, changes] = moveNode(draft, currentRootNode, "#/items", 2, 1);

delete data at location

const [newRootNode, changes] = removeNode(draft, currentRootNode, "#/page/header");

set value at location

const [newRootNode, changes] = setValue(draft, currentRootNode, "#/page/header", { text: "hey" });

working with nodes

get all errors

const validationErrors = errors(root);

find a node

const node = findNode(root, node => node.property === "this one");

get all nodes in a flat list

const allNodes = getNodeList(root);

get a specific node by its path

const target = getNode(root, "#/page/header");

get a childnode by property or index

const page = getChildNode(root, "page");

get json data starting from node

const jsonData = getData(root);

get all nodes along the path

const [rootNode, page, header, title] = getNodeTrace(root, "#/page/header/title");

exposed utilities

type guards

import { isJsonError, isParentNode, isValueNode, isChangeEvent } from "headless-json-editor";

change default error messages globally, @see settings;

import { setErrorMessages } from "headless-json-editor";

bundled library fast-equals to compare data

import { deepEqual } from "headless-json-editor";

Happy Building!

0.33.8

27 days ago

0.33.7

1 month ago

0.33.6

2 months ago

0.33.5

2 months ago

0.33.4

2 months ago

0.33.3

2 months ago

0.33.2

2 months ago

0.33.1

2 months ago

0.33.0

2 months ago

0.32.5

2 months ago

0.32.4

2 months ago

0.32.3

2 months ago

0.32.2

2 months ago

0.32.1

2 months ago

0.32.0

2 months ago

0.31.2

2 months ago

0.31.1

2 months ago

0.31.0

2 months ago

0.30.5

2 months ago

0.30.4

2 months ago

0.30.3

2 months ago

0.30.2

2 months ago

0.30.1

7 months ago

0.30.0

8 months ago

0.29.0

9 months ago

0.28.0

9 months ago

0.29.2

9 months ago

0.27.2

10 months ago

0.27.1

10 months ago

0.27.0

10 months ago

0.26.2

1 year ago

0.26.1

1 year ago

0.26.0

1 year ago

0.25.0

1 year ago

0.21.0

1 year ago

0.24.0

1 year ago

0.23.0

1 year ago

0.21.2

1 year ago

0.21.1

1 year ago

0.10.0

2 years ago

0.20.0

1 year ago

0.19.0

1 year ago

0.19.1

1 year ago

0.19.2

1 year ago

0.11.0

2 years ago

0.9.0

2 years ago

0.8.1

2 years ago

0.8.0

2 years ago

0.7.1

2 years ago

0.13.0

2 years ago

0.14.0

2 years ago

0.15.0

2 years ago

0.16.0

2 years ago

0.17.0

2 years ago

0.7.0

2 years ago

0.18.0

1 year ago

0.6.0

2 years ago

0.5.0

2 years ago