react-native-validator
v0.0.12
Published
A react-native form verification tool
Downloads
54
Maintainers
Readme
react-native-validator
desc
- This is a form validation tool,like jQuery.validator.I mean that it is very easy to use.
- demo
- Provides two common verification methods (1. Click to verify all form elements and submit them; 2. Automatically verify during form input. If all form verification passes the button, you can click Submit)
- You can cover all styles
- It is support for dynamic forms including objects and arrays
- At present, the verification rules are written in elFormItem, and it is not considered to be added to elForm for the time being. Because it already meets the general requirements
- If you get an error after downloading npm, it is recommended to copy the src file under the package to your local and use it as your local file (I cannot explain why this is the case for now).
doc
Installation
npm i react-native-validator
Usage
export default class Demo extends Component {
constructor(props) {
super(props);
this.state = {
dynamicValidateForm:{
name:'',
name2:"",
phone:"",
picker:"",
nickname:""
},
};
}
render() {
let {dynamicValidateForm} =this.state;
return (
<View style={{marginHorizontal:10}}>
<Form.elForm
model={dynamicValidateForm}
ref="dynamicValidateForm">
<Form.elFormItem
label="name:"
prop="name"
rules={[
{ required: true, message: 'name' }
]}
>
<TextInput
style={{ height: 40, borderColor: 'gray', borderWidth: 1 }}
value={dynamicValidateForm.name}
placeholder="name"
onChangeText={text => this.changeText('name',text)}
/>
</Form.elFormItem>
<Form.elFormItem
label="phonne:"
prop="phone"
rules={[
{ required: true, message: 'Please enter numerals' },
{ pattern: /^\d{6}$/, message: 'Please enter 6 Arabic numerals' }
]}
>
<TextInput
style={{ height: 40, borderColor: 'gray', borderWidth: 1 }}
value={dynamicValidateForm.phone}
placeholder="phone"
onChangeText={text => this.changeText('phone',text)}
/>
</Form.elFormItem>
<Form.elFormItem
label="nickname:"
prop="nickname"
checkOnBlur={true}
rules={[
{ required: true, message: 'nicknname' },
]}
>
<Form.elInput
value={dynamicValidateForm.nickname}
placeholder="check after blur"
onChangeText={text => this.changeText('nickname',text)}
/>
</Form.elFormItem>
<Form.elFormItem
label="picker:"
prop="picker"
rules={[
{ required: true, message: 'picker' }
]}
>
<Picker
selectedValue={this.state.dynamicValidateForm.picker}
style={{height: 200, width: 100,borderColor: 'gray', borderWidth: 1 }}
onValueChange={(itemValue, itemIndex) =>
this.changeText('picker',itemValue)
}>
<Picker.Item label="picker" value="" />
<Picker.Item label="Java" value="java" />
<Picker.Item label="JavaScript" value="js" />
<Picker.Item label="css" value="css" />
</Picker>
</Form.elFormItem>
<View>
<TouchableOpacity onPress={((()=>this.submit()))}>
<View style={styles.normalBtn}>
<Text style={styles.normalBtnTxt}>submit</Text>
</View>
</TouchableOpacity>
</View>
</Form.elForm>
</View>
)
}
changeText(type,text){
let obj={...this.state.dynamicValidateForm};
obj[type]=text;
this.setState({dynamicValidateForm:obj})
}
submit(){
this.refs['dynamicValidateForm'].validate(res=>{
if(!res){
alert("submit succs")
}
})
}
}
CheckRules
elForm Attributes
| parameter | Description | Type | Optional | default | required| | -------- | ----- | ----- | ----- | ----- | ----- | | model | Form data object |object | -- | -- |Y | | canPushChange | |Function | -- | -- | N | | labelWidth | elFormItem label width |Number | --- | -- | N | |styles | Style, covering all styles content |Object | --- | -- | N |
elFormItem Attributes
| parameter | Description | Type | Optional | default | required| | -------- | ----- | ----- | ----- | ----- | ----- | | prop | Form field model field, this attribute is required when using validate, resetFields methods |Fields passed into the model of the Form component |Fields passed to the model of the Form component |--| -- |Y| | label | Label text |string | -- | -- | N | | labelWidth | elFormItem label width |Number | --- | -- | N | | checkOnBlur | Whether to check when losing focus (customInput is true && The input form is a custom input "elFormItem provided by this component") |Boolean | -- | -- | N | | rules | Form validation rules | Array | -- | -- | Y |
elInput
| parameter | Description | Type | Optional | default | required| | -------- | ----- | ----- | ----- | ----- | ----- | | errStyle | Successful textInput style |Object| style of successful TextInput |-- |N| | succStyle | failure textInput style |Object | style of failure TextInput | -- | N | | others | Same properties as TextInput |-- | -- | -- | -- |
elForm Methods
| Methods | Description | parameter |
| -------- | ----- | ----- |
| validate | Validate all forms | Function(Array或null) |
| validateField | Validate the specified form | Function(Array或null) |
| resetField | Reset the form item, reset its value to the initial value, and remove the verification result (because the design of react unidirectional data flow is not easy to implement, it is not provided, you can refer to demo8 to implement, it is not difficult) |--|
| clearValidate | Remove the verification result of this form item | | -- |
Warning
- warn
model not contain key:${xxx}
constructor(props) {
super(props);
this.state={
name:"",//required
phone:""//required
}
}
//...
setName(){
//Because the required item phone was removed from the state, but Y did not remove the Form.formItem corresponding to phone, which caused the phone to not be removed from the set of validation rules for Form.
//If you need to remove a check field, you must remove the corresponding FormItem! !!
this.setState({name:"name"})
}