All files / src/chap04 StateNest.js

0% Statements 0/8
100% Branches 0/0
0% Functions 0/4
0% Lines 0/8

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 55 56 57 58 59 60                                                                                                                       
import { useState } from 'react';
 
export default function StateNest() {
  // 인자 배열을 State로 선언
  const [form, setForm] = useState({
    name: '홍길동',
    address: {
      city: '태안',
      do: '충청남도'
    }
  });
 
  // 1단계 요소를 업데이트하는 핸들러
  const handleForm = e => {
    setForm({
      ...form,
      [e.target.name]: e.target.value
    });
  };
 
  // 2단계 요소를 업데이트하는 핸들러
  const handleFormNest = e => {
    setForm({
      ...form,
      address: {
        ...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>
  );
}