All files / src/chap04 StateNestImmer2.js

0% Statements 0/10
0% Branches 0/2
0% Functions 0/4
0% Lines 0/10

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                                                                                                       
import { useImmer } from 'use-immer';
 
export default function StateNestImmer2() {
  const [form, setForm] = useImmer({
    name: '홍길동',
    address: {
      city: '태안',
      do: '충청남도'
    }
  });
 
  const handleNest = e => {
    // 요소명을 ".으로 분해(요소 이름이 'xxxxxx.xxxxxx'라는 가정 하에)
    const ns = e.target.name.split('.');
    setForm(form => {
      // 계층에 따라 대위임처를 변경한다.
      if (ns.length === 1) {
        form[ns[0]] = e.target.value;
      } else {
        form[ns[0]][ns[1]] = e.target.value;
      }
    });
  };
 
  const show = () => {
    console.log(`${form.name}(${form.address.prefecture}・${form.address.city})`);
  };
 
  return (
    <form>
      <div>
        <label htmlFor="name">이름:</label>
        <input id="name" name="name" type="text"
          onChange={handleNest} value={form.name} />
      </div>
      <div>
        <label htmlFor="do">주소(도):</label>
        <input id="do" name="address.do" type="text"
          onChange={handleNest} value={form.address.do} />
      </div>
      <div>
        <label htmlFor="city">주소(시/군/구):</label>
        <input id="city" name="address.city" type="text"
          onChange={handleNest} value={form.address.city} />
      </div>
      <div>
        <button type="button" onClick={show}>
          보내기</button>
      </div>
    </form>
  );
}