Lecture # 16 - React Native Library To Validate Form Fields
Lecture # 16 - React Native Library To Validate Form Fields
date Check if a state variable respects the date pattern. Ex: date:
'YYYY-MM-DD'
minlength Check if a state variable is greater than minlength.
this.isFieldInError(fieldName) Boolean This method indicates if a specific field is in error. The field name will matches with
your React state
this.getErrorMessages(separator) String This method returns the different error messages bound to your React state. The
argument is optional, by default the separator is a \n. Under the hood a join method is
used.
this.getErrorsInField(fieldName) Array This method returns the error messages bound to the specified field. The field name
will match with your React state. it returns an empty array if no error was bound to the
filed.
Labels
The library also contains a defaultMessages.js file which
includes the errors label for a language locale.
You can override this file via the component React props:
const messages = { en: {numbers: "error on numbers !"},
fr: {numbers: "erreur sur numbers !"} };
<FormTest messages={messages} />
You can also specify the default custom language locale in
the props :
<FormTest deviceLocale="fr" />
Complete example
'use strict';
import React, {Component} from 'react';
import {View, Text, TextInput, TouchableHighlight} from 'react-native';
import ValidationComponent from '../index';
export default class FormTest extends ValidationComponent {
constructor(props) {
super(props);
this.state = {
name : "My name",
email: "tibtib@gmail.com",
number:"56",
date: "2017-03-01“
};
}
ValidationComponent
_onPressButton() {
// Call ValidationComponent validate method this.validate({
name: {minlength:3, maxlength:7, required: true},
email: {email: true},
number: {numbers: true},
date: {date: 'YYYY-MM-DD'}
});
}
Render()
render() {
return (
<View>
<TextInput ref="name" onChangeText={(name) => this.setState({name})}
value={this.state.name} />
<TextInput ref="email" onChangeText={(email) => this.setState({email})}
value={this.state.email} />
<TextInput ref="number" onChangeText={(number) => this.setState({number})}
value={this.state.number} />
<TextInput ref="date" onChangeText={(date) => this.setState({date})} value={this.state.date} />
{this.isFieldInError('date') && this.getErrorsInField('date').map(errorMessage =>
<Text>{errorMessage}</Text>) }
<TouchableHighlight onPress={this._onPressButton}> <Text>Submit</Text>
</TouchableHighlight>
<Text> {this.getErrorMessages()} </Text>
</View>
); }
}
Any Question?
Thanks