Я совершенно новый, чтобы реагировать. Мне нужно передать, является ли проверка успешной или нет, чтобы дочерний компонент реагировал. Ниже указан мой родительский компонент.
Логин. js - Родительский
update = name => {
this.setState({inputValidation:false})// or with es6 this.setState({name})
}
nextClick = () => {
const {type, nicPassportNumber, accountNumner } = this.state;
if(type === ''){ //TODO add validations here
alert('please enter a value to proceed');
this.inputValidation = true;
this.update();
console.log("afetr : ", this.inputValidation);
return;
}
const code = type === 'nic-pass' ? nicPassportNumber : accountNumner;
this.props.verifyNumber(code, type);
};
render() {
const {nicPassportNumber, accountNumner} = this.state;
return (
<div className="container-fluid">
<div className="row form-group">
<div className = "col-lg-10 col-xl-6 offset-xl-3 offset-lg-1">
<Input_Box label = "Enter NIC / Passport" value={nicPassportNumber} onChangeFunc={this.handleChange} valid = {this.state.inputValidation} type='nic-pass' {...this.props}/>
<h2 className="sc-txt-hor-center my-3">OR</h2>
<Input_Box label = "Enter mobile / DTV / Broadband number" value={accountNumner} onChangeFunc={this.handleChange} valid = {this.state.inputValidation} type='account' {...this.props}/>
</div>
</div>
<Footer onBackClick={this.backClick} onNextClick={this.nextClick}/>
</div>
);
Input_Box. js - Дочерний компонент
constructor(props) {
super(props);
}
render() {
const {label, value, onChangeFunc, type} = this.props;
console.log("Val input box : ", this.props.inputValidation);
return (
<div className="sc-input">
<label className="sc-input__label mb-3" htmlFor="nic_passport_no">{label}</label>
<input type="text"
className="form-control sc-input__box"
id="nic_passport_no"
placeholder=""
value={value}
onChange={(e) => onChangeFunc(e, type) }/>
<label className="sc-input__error-msg">123214</label>
</div>
);
}
}
Я испробовал большинство предложений, приведенных в SO. Но каждый раз, когда я получаю undefined
для inputValidation
в дочернем компоненте.
Что я здесь не так делаю?