This repository was moved to kie-tools monorepo. The kie-tools monorepo uses this library in some of their packages. Therefore, the maintainability of the library will be improved, and things such as bug fixing and updating dependencies will be easier as well. This package will still exist in npm
, and the new package maintained by kie-tools will be @kie-tools/uniforms-patternfly
.
uniforms
is a plugin for React to be able to create dynamic forms with built-in state management and form validation.
uniforms
provides you with simple re-usable form components which allows for rapid prototyping and cleaner React components.
This package extends uniforms to provide Patternfly React components inside your forms.
For more information about uniforms
please go to https://uniforms.tools/
Looking for building mobile enabled forms? Check Uniforms-ionic package that provides Ionic extensions
To start using uniforms, we have to install three independent packages:
- Core
- Bridge
- Theme
In this example, we will use the JSON Schema to describe our desired data format and style our form using the Pattenfly UI theme.
npm install [email protected]
npm install [email protected]
npm install uniforms-patternfly
npm install @patternfly/react-core @patternfly/react-icons
Don't forget that it's necessary to correctly load the styles from Patternfly. To do it, we recommend taking a look into the
Patternfly React Seed, or you can simply load the styles directly into
your index.html
like in the example app of this repo.
Obs: If you use a previous version of the tslib
indirectly (version 1), it should be necessary to add this dependency as well.
npm install tslib@^2.3.1
After we've installed required packages, it's time to define our schema. We can do it in a plain JSON, which is a valid JSON Schema instance:
const schema = {
type: 'object',
properties: {
foo: {
type: 'string'
},
}
};
Now that we have the schema, we can create the uniforms bridge of it, by using the corresponding uniforms bridge package.
Creating the bridge instance is necessary - without it, uniforms would not be able to process form generation and validation.
As we are using the JSON Schema, we have to import the uniforms-bridge-json-schema
package. Also, because we're doing an
example of a JSON Schema, it's necessary to use a JSON Schema validation library, and in this example we'll be using the AJV.
import { JSONSchemaBridge } from 'uniforms-bridge-json-schema';
import AJV from 'ajv';
const ajv = new Ajv({ allErrors: true, useDefaults: true });
function createValidator(schema) {
const validator = ajv.compile(schema);
return (model) => {
validator(model);
return validator.errors?.length ? { details: validator.errors } : null;
};
}
const bridge = new JSONSchemaBridge(schema, createValidator(schema));
Uniforms theme packages provide the AutoForm
component, which is able to generate the form based on the given schema.
All we have to do now is to pass the previously created Bridge to the AutoForm
:
import React from 'react';
import { AutoForm } from 'uniforms-patternfly';
import schema from './schema';
export default function MyForm() {
return <AutoForm schema={bridge} onSubmit={console.log} />;
}
And that's it! AutoForm
will generate a complete form with labeled fields, errors list (if any) and a submit button.
Also, it will take care of validation and handle model changes. In case you need more advanced feature, take a deeper look into the Uniforms docs.