npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@data-driven-forms/form-builder

v0.0.13-rc1

Published

Interactive drag and drop editor for creating data driven forms schema

Downloads

1,198

Readme

codecov CircleCI npm version Tweet Twitter Follow

Data Driven Form logo

FormBuilder

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

Installation

npm install --save @data-driven-forms/form-builder

or

yarn add @data-driven-forms/form-builder

Development

Requirements

  • UNIX like system (Linux, MacOS)
  • Node 12+

Install with yarn

yarn

Start the playground

yarn start

Running on http://localhost:8080/

Lint

yarn lint

For automatic fix: yarn lint --fix

Tests

yarn test

For watching changes: yarn test --watchAll

Build

yarn build

To clean built files: yarn clean-build. This is also done automatically before build.

Usage

Import form builder:

import FormBuilder from '@data-driven-forms/form-builder/form-builder';

and render the component with following props:

Props

render or children

({ ComponentPicker, PropertiesEditor, DropTarget, isValid, getSchema, children }) => React.Element

Use children or a render function to render the whole editor.

componentMapper

object

Data Driven Forms component mapper. See here.

builderMapper

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
}

image

FieldLayout

({ children, disableDrag, dragging, selected }) => React.Element

A wrapper around a single field = BUILDER_FORM + DragHandle.

PropertiesEditor

({ propertiesChildren, validationChildren, addValidator, avaiableValidators, handleClose, handleDelete, hasPropertyError }) => React.Element

An editor.

FormContainer

({ children, isDraggingOver }) => React.Element

A wrapper around the form in the form column.

BUILDER_FIELD

({ innerProps: { hideField, snapshot }, Component, propertyName, fieldId, propertyValidation, hasPropertyError, ...props }) => React.Element

A wrapper around the field.

BuilderColumn

({ children, isDraggingOver }) => React.Element

A column.

PropertyGroup

({ className, children, title, handleDelete }) => React.Element

A wrapper around a single property group in the properties editor > validation.

DragHandle

({ dragHandleProps, hasPropertyError, disableDrag }) => React.Element

A drag handle. Is passed as a child to FieldLayout.

EmptyTarget

() => React.Element

EmptyTarget is shown when there are no fields created.

componentProperties

object

A mapper of editable properties for each component. A property is a object with following attributes:

attributes

Editable attributes of the component.

propertyName

string

Corresponds to an attribute in the schema.

label

string

A label shown for the property in the editor.

component

string

A component corresponding to a key in properties mapper.

disableValidators

Disables validator selection in PropertiesEditor.

Automatically disabled in fields that are not registered in the form state.

disableInitialValue

Disables initial value field in PropertiesEditor.

Automatically disabled in fields that are not registered in the form state.

Example

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
    }
}

pickerMapper

object

A mapper of components available in the editor.

const pickerMapper = {
    [componentTypes.TEXT_FIELD]: ({ component }) => <div>{component}</div>
}

propertiesMapper

object

A mapper of components available in component properties.

const propertiesMapper = {
    input: ({ label, value, fieldId, innerProps: { propertyValidation }, ...rest }) => <input {...rest} />
}

mode

one of 'subset' | 'default' optional

If 'subset', options will be only editable to certain degree. See schemaTemplate.

schema

object optional

A Data Driven Forms schema. See here.

schemaTemplate

object optional

An original schema from which a subset is created. If not specified, editable boundaries will be created from the schema.

cloneWhileDragging

boolean optional

Components from the components list are being cloned when dragged.

debug

boolean optional

Turns on debug mode. Will show current field as a JSON object.

openEditor

boolean optional

Opens the first field on mount.

disabledAdd

boolean optional

Disables adding new fields.

disableDrag

boolean optional

Disables dragging.

Mappers

Form builder contains two mappers of components: PatternFly 4 and Material UI versions.

Material UI

import {
  pickerMapper,
  propertiesMapper,
  builderMapper,
  BuilderTemplate,
  fieldProperties
} from '@data-driven-forms/form-builder/mui-builder-mappers';

Version 5

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.

PatternFly 4

import {
  pickerMapper,
  propertiesMapper,
  builderMapper,
  BuilderTemplate,
  fieldProperties
} from '@data-driven-forms/form-builder/pf4-builder-mappers';

Example

render={({ isValid, getSchema, ...props }) => (
  <BuilderTemplate {...props} className={classes.builderWrapper}>
    <CodeEditor value={JSON.stringify(getSchema(), null, 2)} />
  </BuilderTemplate>
)}