Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@data-driven-forms/react-form-renderer
Advanced tools
React Form Renderer. Data Driven Forms converts JSON form definitions into fully functional React forms.
Data Driven Forms is a React library used for rendering and managing forms with a lot of provided features based on React Final Form.
:question: Why to use Data Driven Forms? :question:
:tada: Features :tada:
:book: For more information please visit the documentation. :book:
Table of Contents
Add React Form Renderer
$ npm install @data-driven-forms/react-form-renderer -S
$ yarn add @data-driven-forms/react-form-renderer
Optionally you can install one of provided mappers:
$ npm install @data-driven-forms/mui-component-mapper -S
$ yarn add @data-driven-forms/mui-component-mapper
$ npm install @data-driven-forms/pf4-component-mapper -S
$ yarn add @data-driven-forms/pf4-component-mapper
$ npm install @data-driven-forms/blueprint-component-mapper -S
$ yarn add @data-driven-forms/blueprint-component-mapper
$ npm install @data-driven-forms/suir-component-mapper -S
$ yarn add @data-driven-forms/suir-component-mapper
$ npm install @data-driven-forms/ant-component-mapper -S
$ yarn add @data-driven-forms/ant-component-mapper
$ npm install @data-driven-forms/carbon-component-mapper -S
$ yarn add @data-driven-forms/carbon-component-mapper
Component libraries in mappers are external dependencies. Make sure to install them in your bundles.
In order to Data Driven Forms in your component you need the renderer and a component mapper, which provides component mapper and form template.
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}
/>
)
You can also use custom mapper.
import React from 'react';
import { FormRenderer, componentTypes, useFieldApi } from '@data-driven-forms/react-form-renderer';
const TextField = props => {
const {label, input, meta, ...rest} = useFieldApi(props)
return (
<div>
<label htmlForm={input.name}>{label}</label>
<input {...input} {...rest} id={input.name}/>
{meta.error && <p>{meta.error}</p>}
</div>
)
}
const componentMapper = {
[componentTypes.TEXT_FIELD]: TextField,
'custom-type': TextField
}
const schema = {
fields: [{
component: componentTypes.TEXT_FIELD,
name: 'name',
label: 'Your name'
type: 'search',
}]
}
For more information, please check this page.
Mappers can be also generated by using yarn generate-template
command.
Data Driven Forms supports all kinds of component, basic set is consisted of:
Any other components can be added to mapper and renderer with the form renderer. Existing components can be also overriden.
Please use our documentation site. In case of any problem, you can access documentation files directly in GitHub.
Data Driven Forms is a monorepo that uses Lerna and yarn workspaces, so you can use all its commands as well.
yarn install
yarn build
Each package has a small playground package/demo
, where you can test your changes.
cd packages/pf3-component-mapper
yarn start
yarn lerna clean # will delete all node_modules
All 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 can be ran from the core folder or from specific packages.
yarn test
yarn test packages/pf3-component-mapper
Data Driven Forms uses Semantic Release
Format:
[type]([package]): message
fix(pf3): title accepts node
Types:
feat
: a new feature, will trigger new _.X._
releasefix
: a fix, will trigger new _._.X
releasePackages:
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.
If your changes influence API or add new features, you should describe these new options in the react-renderer-demo
repository. Thanks!
We welcome any community contribution. Don't be afraid to report bug or to create issues and pull-requests! :trophy:
Apache License 2.0
FAQs
React Form Renderer. Data Driven Forms converts JSON form definitions into fully functional React forms.
The npm package @data-driven-forms/react-form-renderer receives a total of 8,702 weekly downloads. As such, @data-driven-forms/react-form-renderer popularity was classified as popular.
We found that @data-driven-forms/react-form-renderer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.