Flexible Form (fform) - form builder with minimum redundancy, maximum flexibility, and extendability. It uses JSONSchema to describe forms, React (v16) for rendering and has native Redux support for state storage but can be used with any other external storage or can use only internal storage (storage agnostic).
See fform-constructor for live demo.
- 98kb minified, 28kb gziped
- form-constuctor for quick start
- form extension, combination and reuse with JSONSchema's
allOf,oneOf,$refproperties - sync/async/JSON/submit validation
- storage agnostic, native redux support, can be used with any external storage or can use own internal storage
- built-in arrays (add/del/move operations)
- built-in viewer
- fully customizable
- SSR support
To install the stable version:
npm install --save fform
This assumes that you are using npm with a module bundler like webpack
import {FForm, elements} from 'fform';
import {render} from 'react-dom';
render(<FForm core={{name:"name", schema: {type:"string"}, elements}}/>, document.querySelector('#root'));import {FForm, elements} from 'fform';
import {render} from 'react-dom';
import imjvWrapper from 'fform/addons/imjvWrapper';
import * as imjvValidator from 'fform/addons/is-my-json-valid-lite';
const JSONValidator = imjvWrapper(imjvValidator);
render(<FForm core={{name:"name", schema: {type:"string"}, elements, JSONValidator}}/>,
document.querySelector('#root'));How to use with different storages see in documentation
- simple form
- layouts and viewer
- arrays and oneOf
- stateMaps
- validation
- format and parse
- schema exten
- custom input
- tabs and steps
- FForm
- fformCores
- API
get(...paths: string | string[])set(path: string | string[], value: any, opts?: setOpts )getValue(opts?: getValueOpts)setValue(value: any, opts?: setValueOpts)getDefaultValue()reset(opts?: resetOpts)clear(opts?: clearOpts)validate(path: boolean | string | string[], opts?: APIOptsType)arrayAdd(path: string | string[], value: number | any[], opts?: APIOptsType)arrayItemOps(path: string | string[], op: string, opts: arrayItemOpts)setHidden(path: string | string[], value?: boolean, opts?: APIOptsType)showOnly(path: string | string[], opts?: APIOptsType)getActive()execute()
- Basic schema properties
- Extended schema properties
_placeholder?: string_params?: FFParamsType_data?: any_presets?: string_simple?: boolean_enumExten?: { [key: string]: undefined | string | object }_stateMaps?: Array_validators?: Array_oneOfSelector: string | dataHandler_custom?: FFCustomizeType_layout?: FFLayoutCustomizeType_strictLayout?: boolean
- Validation
- Field structure and customization
- Form layout
- Elements
- Styling
- SSR