Package Exports
- @data-driven-forms/pf4-component-mapper
- @data-driven-forms/pf4-component-mapper/dist/cjs/component-mapper
- @data-driven-forms/pf4-component-mapper/dist/cjs/form-template
- @data-driven-forms/pf4-component-mapper/dist/cjs/select
- @data-driven-forms/pf4-component-mapper/dist/esm/component-mapper
- @data-driven-forms/pf4-component-mapper/dist/esm/select
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@data-driven-forms/pf4-component-mapper) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Patternfly 4 component mapper for Data Driven Forms.
📖 For more information please visit the documentation. 📖
Table of Contents
Installation
You neet to add React Form Renderer
React Form Renderer
$ npm install @data-driven-forms/react-form-renderer -S$ yarn add @data-driven-forms/react-form-rendererPatternFly 4 Mapper
$ npm install @data-driven-forms/pf4-component-mapper -S$ yarn add @data-driven-forms/pf4-component-mapperUsage
For using Data Driven Forms in your component you need the renderer and a component mapper, which provides formFields components and layoutFields components.
import React from 'react';
import FormRenderer, { componentTypes } from '@data-driven-forms/react-form-renderer';
import { componentMapper, FormTemplate } from '@data-driven-forms/pf4-component-mapper';
const schema = {
fields: [{
component: componentTypes.TEXT_FIELD,
name: 'name',
label: 'Your name'
}]
}
const Form = () => (
<FormRenderer
schema={schema}
componentMapper={componentMapper}
FormTemplate={FormTemplate}
onSubmit={console.log}
/>
)Basic provided components
Data Driven Forms supports all kinds of component, basic set is consisted of:
- Text input
- Text area
- Checkbox (Multiple checkboxes)
- Select (dropdown)
- Dual list select
- Field array
- Switch
- Radio buttons
- Date picker
- Time picker
- Tabs
- Slider
- Sub-form
- Wizard
Useful links
Development setup
Data Driven Forms is a monorepo which uses Lerna, so you can use all its commands as well.
- Install
yarn install- Build
yarn build- Run a package
Each package has a small playground package/demo, where you can test your changes.
cd packages/pf4-component-mapper
yarn start- How to clean?
yarn lerna clean # will delete all node_modulesAll packages are linked together by default, so if you run a yarn build in a package, all other packages are updated to the latest version of that package.
Tests
Tests needed to be run from the core folder.
yarn test
yarn test packages/pf3-component-mapperCommits
Data Driven Forms uses Semantic Release
Format:
[type]([package]): message
fix(pf4): title accepts nodeTypes:
feat: a new feature, will trigger new_.X._releasefix: a fix, will trigger new_._.Xrelease
Packages:
- Please describe which package is being changed
pf3,renderer, ...
Please, do not use Semantic Release, if you update only the demo.
All packages are releasing together and they share the version number.
Changes to documentation
If your changes influence API or add new features, you should describe these new options in the react-renderer-demo repository. Thanks!
Contribution
We welcome any community contribution. Don't be afraid to report bug or to create issues and pull-requests! 🏆
LICENSE
Apache License 2.0
