Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
The rc-form package is a form management library for React. It provides a set of utilities to manage form state, validation, and submission, making it easier to handle complex forms in React applications.
Form Creation
This feature allows you to create forms with validation rules. The `createForm` function is used to wrap the form component, and `getFieldDecorator` is used to register form fields with validation rules.
```jsx
import React from 'react';
import { createForm } from 'rc-form';
class MyForm extends React.Component {
handleSubmit = () => {
this.props.form.validateFields((err, values) => {
if (!err) {
console.log('Received values of form: ', values);
}
});
};
render() {
const { getFieldDecorator } = this.props.form;
return (
<form onSubmit={this.handleSubmit}>
<div>
{getFieldDecorator('username', {
rules: [{ required: true, message: 'Please input your username!' }],
})(<input type="text" placeholder="Username" />)}
</div>
<button type="submit">Submit</button>
</form>
);
}
}
export default createForm()(MyForm);
```
Field Validation
This feature allows you to add validation rules to form fields. In this example, the email field is validated to ensure it is a valid email address and is required.
```jsx
import React from 'react';
import { createForm } from 'rc-form';
class MyForm extends React.Component {
handleSubmit = () => {
this.props.form.validateFields((err, values) => {
if (!err) {
console.log('Received values of form: ', values);
}
});
};
render() {
const { getFieldDecorator } = this.props.form;
return (
<form onSubmit={this.handleSubmit}>
<div>
{getFieldDecorator('email', {
rules: [
{ type: 'email', message: 'The input is not valid E-mail!' },
{ required: true, message: 'Please input your E-mail!' }
],
})(<input type="email" placeholder="Email" />)}
</div>
<button type="submit">Submit</button>
</form>
);
}
}
export default createForm()(MyForm);
```
Dynamic Form Fields
This feature allows you to dynamically add form fields. The `addField` method updates the state to add new fields, and `getFieldDecorator` is used to register these fields with validation rules.
```jsx
import React from 'react';
import { createForm } from 'rc-form';
class DynamicForm extends React.Component {
state = { keys: [] };
addField = () => {
const { keys } = this.state;
this.setState({ keys: keys.concat(keys.length) });
};
handleSubmit = () => {
this.props.form.validateFields((err, values) => {
if (!err) {
console.log('Received values of form: ', values);
}
});
};
render() {
const { getFieldDecorator } = this.props.form;
const { keys } = this.state;
return (
<form onSubmit={this.handleSubmit}>
{keys.map(k => (
<div key={k}>
{getFieldDecorator(`field-${k}`, {
rules: [{ required: true, message: 'Please input a value!' }],
})(<input type="text" placeholder="Dynamic Field" />)}
</div>
))}
<button type="button" onClick={this.addField}>Add Field</button>
<button type="submit">Submit</button>
</form>
);
}
}
export default createForm()(DynamicForm);
```
Formik is a popular form management library for React. It provides a set of tools to handle form state, validation, and submission. Compared to rc-form, Formik offers a more modern API and better integration with React hooks.
React Hook Form is a performant, flexible, and extensible form library for React. It leverages React hooks to manage form state and validation. It is known for its minimal re-renders and easy integration with existing components, making it a strong alternative to rc-form.
Redux Form is a library that integrates form state management with Redux. It allows you to manage form state in a centralized Redux store. While it offers powerful features, it can be more complex to set up compared to rc-form.
React High Order Form Component.
npm install
npm start
http://localhost:8000/examples/
online example: http://react-component.github.io/form/examples/
import { createForm } from 'rc-form';
@createForm()
class Form extends React.Component {
submit = () => {
this.props.form.validateFields((error, value) => {
console.log(error, value);
});
}
render() {
let errors;
const {getFieldProps, getFieldError} = this.props.form;
return (<div>
<input {...getFieldProps('normal')}/>
<input {...getFieldProps('required', {
rules: [{required: true}],
})}/>
{(errors = getFieldError('required')) ? errors.join(',') : null}
<button onClick={this.submit}>submit</button>
</div>)
}
}
preset messages of async-validator
Get new props transfered to WrappedComponent. Defaults to props=>props.
Called when field changed, you can dispatch fields to redux store.
convert value from props to fields. used for read fields from redux store.
createForm() will return another function:
Will pass a object as prop form with the following members to WrappedComponent:
Will create props which can be set on a input/InputComponent which support value and onChange interface.
After set, this will create a binding with this input.
This input's unique name.
Prop name of component's value field, eg: checkbox should be set ti checked
...
Initial value of current component.
Return normalized value
Defaults to onChange
. Event which is listened to collect form data.
Event which is listened to validate.
Defaults to onChange
, set to falsy to only validate when call props.validateFields.
Validator rules. see: async-validator
{
validateTrigger: 'onBlur',
rules: [{required: true}],
}
// is the shorthand of
{
validate: [{
trigger: 'onBlur',
rules: [required: true],
}],
}
Defaults to false. whether stop validate on first rule of error for this field.
Get fields value by fieldNames.
Get field value by fieldName.
Get field react public instance by fieldName.
Set fields value by kv object.
Set fields initialValue by kv object. use for reset and initial display/value.
Set fields by kv object. each field can contain errors and value member.
Validate and get fields value by fieldNames.
options is the same as validate method of async-validator. add a new force member.
Defaults to false. Whether to validate fields which have been validated(caused by validateTrigger).
Get input's validate errors.
Whether this input is validating.
Whether one of the inputs is validating.
Whether the form is submitting.
Cause isSubmitting to return true, after callback called, isSubmitting return false.
Reset specified inputs. Defaults to all.
createForm enhancement, support props.form.validateFieldsAndScroll
props.form.validateFields enhancement, support scroll to the first invalid form field
Defaults to first scrollable container of form field(until document).
<input {...getFieldProps('change',{
onChange: this.iWantToKnow // you must set onChange here
})}>
<input {...getFieldProps('ref')} />
this.props.form.getFieldInstance('ref') // use this to get ref
or
<input {...getFieldProps('ref',{
ref: this.saveRef // or use function here
})} />
npm test
npm run chrome-test
npm run coverage
open coverage/ dir
rc-form is released under the MIT license.
FAQs
React High Order Form Component
The npm package rc-form receives a total of 62,136 weekly downloads. As such, rc-form popularity was classified as popular.
We found that rc-form demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.