การปรับคำตอบของSalarให้กับ JSX และ React ฉันสังเกตเห็นว่า React Select ไม่ได้ทำงานเหมือนกับการ<input/>
ตรวจสอบความถูกต้อง เห็นได้ชัดว่าการแก้ไขปัญหาหลายอย่างจำเป็นต้องแสดงเฉพาะข้อความที่กำหนดเองและเพื่อป้องกันไม่ให้แสดงในเวลาที่ไม่สะดวก
ฉันหยิบยกปัญหาขึ้นมาที่นี่ถ้ามันช่วยอะไรได้ นี่คือ CodeSandbox พร้อมตัวอย่างการทำงานและรหัสที่สำคัญที่สุดที่มีการทำซ้ำที่นี่:
Hello.js
import React, { Component } from "react";
import SelectValid from "./SelectValid";
export default class Hello extends Component {
render() {
return (
<form>
<SelectValid placeholder="this one is optional" />
<SelectValid placeholder="this one is required" required />
<input
required
defaultValue="foo"
onChange={e => e.target.setCustomValidity("")}
onInvalid={e => e.target.setCustomValidity("foo")}
/>
<button>button</button>
</form>
);
}
}
SelectValid.js
import React, { Component } from "react";
import Select from "react-select";
import "react-select/dist/react-select.css";
export default class SelectValid extends Component {
render() {
this.required = !this.props.required
? false
: this.state && this.state.value ? false : true;
let inputProps = undefined;
let onInputChange = undefined;
if (this.props.required) {
inputProps = {
onInvalid: e => e.target.setCustomValidity(this.required ? "foo" : "")
};
onInputChange = value => {
this.selectComponent.input.input.setCustomValidity(
value
? ""
: this.required
? "foo"
: this.selectComponent.props.value ? "" : "foo"
);
return value;
};
}
return (
<Select
onChange={value => {
this.required = !this.props.required ? false : value ? false : true;
let state = this && this.state ? this.state : { value: null };
state.value = value;
this.setState(state);
if (this.props.onChange) {
this.props.onChange();
}
}}
value={this && this.state ? this.state.value : null}
options={[{ label: "yes", value: 1 }, { label: "no", value: 0 }]}
placeholder={this.props.placeholder}
required={this.required}
clearable
searchable
inputProps={inputProps}
ref={input => (this.selectComponent = input)}
onInputChange={onInputChange}
/>
);
}
}