THIS PROJECT IS WORK IN PROGRESS. ALL THE API IS CONSIDERED UNSTABLE. EVERYTHING CAN BE CHANGED. NEW FEATURES/BUG FIXES CAN TAKE A LONG TIME TO IMPLEMENT.
This component allows to build Data Driven Forms forms via DnD feature.
Table of contents
- FormBuilder
- Installation
- Development
- Usage
- Props
- Mappers
npm install --save @data-driven-forms/form-builder
or
yarn add @data-driven-forms/form-builder
- UNIX like system (Linux, MacOS)
- Node 12+
yarn
yarn start
Running on http://localhost:8080/
yarn lint
For automatic fix: yarn lint --fix
yarn test
For watching changes: yarn test --watchAll
yarn build
To clean built files: yarn clean-build
. This is also done automatically before build
.
Import form builder:
import FormBuilder from '@data-driven-forms/form-builder/form-builder';
and render the component with following props:
({ ComponentPicker, PropertiesEditor, DropTarget, isValid, getSchema, children }) => React.Element
Use children or a render function to render the whole editor.
object
Data Driven Forms component mapper. See here.
object
A set of components that creates the form builder.
import { builderComponentTypes } from '../src/constants';
const builderMapper = {
FieldLayout,
PropertiesEditor,
FormContainer,
[builderComponentTypes.BUILDER_FIELD]: builderField,
BuilderColumn,
PropertyGroup,
DragHandle,
EmptyTarget
}
({ children, disableDrag, dragging, selected }) => React.Element
A wrapper around a single field = BUILDER_FORM + DragHandle.
({ propertiesChildren, validationChildren, addValidator, avaiableValidators, handleClose, handleDelete, hasPropertyError }) => React.Element
An editor.
({ children, isDraggingOver }) => React.Element
A wrapper around the form in the form column.
({ innerProps: { hideField, snapshot }, Component, propertyName, fieldId, propertyValidation, hasPropertyError, ...props }) => React.Element
A wrapper around the field.
({ children, isDraggingOver }) => React.Element
A column.
({ className, children, title, handleDelete }) => React.Element
A wrapper around a single property group in the properties editor > validation.
({ dragHandleProps, hasPropertyError, disableDrag }) => React.Element
A drag handle. Is passed as a child to FieldLayout.
() => React.Element
EmptyTarget is shown when there are no fields created.
object
A mapper of editable properties for each component. A property is a object with following attributes:
Editable attributes of the component.
string
Corresponds to an attribute in the schema.
string
A label shown for the property in the editor.
string
A component corresponding to a key in properties mapper.
Disables validator selection in PropertiesEditor
.
Automatically disabled in fields that are not registered in the form state.
Disables initial value field in PropertiesEditor
.
Automatically disabled in fields that are not registered in the form state.
const LABEL = {
propertyName: 'label',
label: 'Label',
component: 'input'
}
const componentProperties = {
[componentTypes.TEXT_FIELD]: {
attributes: [LABEL, IS_REQUIRED]
},
[componentTypes.PLAIN_TEXT]: {
attributes: [LABEL],
disableValidators: true,
disableInitialValue: true
}
}
object
A mapper of components available in the editor.
const pickerMapper = {
[componentTypes.TEXT_FIELD]: ({ component }) => <div>{component}</div>
}
object
A mapper of components available in component properties.
const propertiesMapper = {
input: ({ label, value, fieldId, innerProps: { propertyValidation }, ...rest }) => <input {...rest} />
}
one of 'subset' | 'default' optional
If 'subset', options will be only editable to certain degree. See schemaTemplate.
object optional
A Data Driven Forms schema. See here.
object optional
An original schema from which a subset is created. If not specified, editable boundaries will be created from the schema.
boolean optional
Components from the components list are being cloned when dragged.
boolean optional
Turns on debug mode. Will show current field as a JSON object.
boolean optional
Opens the first field on mount.
boolean optional
Disables adding new fields.
boolean optional
Disables dragging.
Form builder contains two mappers of components: PatternFly 4 and Material UI versions.
import {
pickerMapper,
propertiesMapper,
builderMapper,
BuilderTemplate,
fieldProperties
} from '@data-driven-forms/form-builder/mui-builder-mappers';
MUI-BUILDER is using MUI of version 5. To use version 4 (@material-ui/core
), please use the builder of version 0.0.12-rc1
.
import {
pickerMapper,
propertiesMapper,
builderMapper,
BuilderTemplate,
fieldProperties
} from '@data-driven-forms/form-builder/pf4-builder-mappers';
render={({ isValid, getSchema, ...props }) => (
<BuilderTemplate {...props} className={classes.builderWrapper}>
<CodeEditor value={JSON.stringify(getSchema(), null, 2)} />
</BuilderTemplate>
)}