@wibetter/json-schema-editor
v5.0.1
Published
JSON数据可视化/JSONSchema,以表单的形式编辑 json schema,可用于在线设计组件的配置面板
Downloads
23
Readme
json-schema-editor
JSON数据可视化/JSONSchema,以表单的形式编辑 json schema,可用于在线设计组件的配置面板。
技术栈
React/Mobx/Ant Design
特点
- 支持12种基础类型组件(input、boolean、 date、date-time、 time、 url、 textarea、number、color、radio、 select、single-select)
- 支持11个特殊类型组件(object、array、json、datasource、dynamic-data、event、 codearea、htmlarea、text-editor(使用说明)、quantity、box-style)
- 拖拽排序
- 复制功能
- 复杂嵌套
- 高级配置功能
- 支持字段联动
特别说明
JSONSchema仅用于生成结构化的json数据,需要配合JSONEditor(git地址)渲染其内容。
安装
npm install --save @wibetter/json-schema-editor
使用示例
import * as React from 'react';
import JSONSchemaEditor from '@wibetter/json-schema-editor';
import '@wibetter/json-schema-editor/lib/index.css';
class IndexDemo extends React.PureComponent {
constructor(props) {
super(props);
this.state = {
jsonSchema: {},
};
}
render() {
const { jsonSchema } = this.state;
return (
<>
<div className="json-action-container">
<div className="json-schema-box">
<JSONSchemaEditor
data={jsonSchema}
onChange={(newJsonSchema) => {
this.setState({
jsonSchema: newJsonSchema,
});
}}
/>
</div>
</div>
</>
);
}
}
JSONSchema 可配置参数说明
| name | type | default | desc |
| ------------ | -------- | ------- | ------------------------------- |
| data
| object | {} | 必填项,json schema(带结构的json数据) |
| typeList
| object | {} | 非必填,用于设置func、style、data的子项可选类型 |
| onChange
| function | () => {} | schemaData内容变动时会触发onChange |