Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | import { useImmer } from 'use-immer';
export default function StateNestImmer() {
// 폼으로 취급하는 값을 State로 선언
const [form, setForm] = useImmer({
name: '홍길동',
address: {
city: '태안',
do: '충청남도'
}
});
// 1단계 요소를 업데이트하는 핸들러
const handleForm = e => {
setForm(form => {
form[e.target.name] = e.target.value;
});
};
// 2단계 요소를 업데이트하는 핸들러
const handleFormNest = e => {
setForm(form => {
form.address[e.target.name] = e.target.value;
});
};
const show = () => {
console.log(`${form.name}(${form.address.do}・${form.address.city})`);
};
return (
<form>
<div>
<label htmlFor="name">이름:</label>
<input id="name" name="name" type="text"
onChange={handleForm} value={form.name} />
</div>
<div>
<label htmlFor="do">주소(도):</label>
<input id="do" name="do" type="text"
onChange={handleFormNest} value={form.address.do} />
</div>
<div>
<label htmlFor="city">주소(시/군/구):</label>
<input id="city" name="city" type="text"
onChange={handleFormNest} value={form.address.city} />
</div>
<div>
<button type="button" onClick={show}>
보내기</button>
</div>
</form>
);
} |