Likelion-YeungNam-Univ / 12th-BeginnerFit-FE

헬스/관리/운동 등에 무지한 사람들 위해 나에게 맞는 홈트 영상 추천/운동 종목 추천 해주는 서비스
http://43.201.203.128:5173/
3 stars 2 forks source link

feat:회원정보 수정 페이지 완성(API통신만 하면 됨) #20

Closed tkv00 closed 3 months ago

tkv00 commented 3 months ago

구현내용


유효성 검사

 //폼 유효성검사
  const [isFormValid, setIsFormValid] = useState(false);

  useEffect(() => {
    const {
      height,
      weight,
      targetWeight,
      date,
      targetDate,
      exerciseTime,
      categories,
    } = form;
    //카테고리 유효성(각 카테고리별 1개이상은 선택)
    const isCategoriesValid = Object.values(categories).some(
      (arr) => arr.length > 0
    );
    //전체 유효성
    const isValid =
      height > 0 &&
      weight > 0 &&
      targetWeight > 0 &&
      date &&
      targetDate &&
      exerciseTime &&
      isCategoriesValid;
    setIsFormValid(isValid);
  }, [form]);

구현사진

유효성 검사 이후 제출버튼 활성화

스크린샷 2024-07-25 17 54 13

스크린샷 2024-07-25 17 54 19

스크린샷 2024-07-25 17 54 46


반응형 구현

스크린샷 2024-07-25 17 59 04


형식 콘솔 출력

스크린샷 2024-07-25 17 55 37