일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- app router
- CI/CD
- recoil
- dfs
- 인터섹션
- 리터럴 타입
- 이분 검색
- SSR
- tailwind
- 결정 알고리즘
- async/await
- 호이스팅
- 공변성
- 무한 스크롤
- React
- TS
- map
- useAppDispatch
- 타입 좁히기
- 태그된 유니온
- Jest
- 반공변성
- ESlint
- 투포인터
- RTK Query
- Cypress
- webpack
- CORS
- Promise
- autosize
Archives
- Today
- Total
짧은코딩
useFormState와 useFormStatus 본문
반응형
useFormState와 useFormStatus
로그인이나 회원가입 같은 부분에서 Form을 통해 처리를 하곤 한다. 이때 아이디나 비밀번호가 비어있으면 에러 메시지를 알려줘야 한다.
그럴 때 useFormState, useFormStatus를 사용하면 편하다. 하지만 이 기능은 아직 실험적인 기능이긴 하다.
useFormState
https://react.dev/reference/react-dom/hooks/useFormState
useFormState – React
The library for web and native user interfaces
react.dev
-예시 코드
import { useFormState } from "react-dom";
async function increment(previousState, formData) {
return previousState + 1;
}
function StatefulForm({}) {
const [state, formAction] = useFormState(increment, 0);
return (
<form>
{state}
<button formAction={formAction}>Increment</button>
</form>
)
}
- useState와 유사하게 사용 가능
- state는 값, formAction은 실행할 함수(increment)이고 useFormState(실행 시킬 함수, 기본값)을 두면 됨
- 즉, Form에서 사용하는 데이터를 조작할 수 있다.
useFormStatus
https://react.dev/reference/react-dom/hooks/useFormStatus
useFormStatus – React
The library for web and native user interfaces
react.dev
-예시 코드
import { useFormStatus } from "react-dom";
import action from './actions';
function Submit() {
const status = useFormStatus();
return <button disabled={status.pending}>Submit</button>
}
export default function App() {
return (
<form action={action}>
<Submit />
</form>
);
}
- useFormStatus는 ReactQuery와 유사하게 사용이 가능
- status 안에 pending, data, method, action이 들어있음
- 즉, 진행 상태에 대해서 파악할 수 있다.
반응형
'인프런, 유데미 > z 클론 코딩' 카테고리의 다른 글
Next의 loading.tsx와 error.tsx with Suspense (0) | 2024.03.29 |
---|---|
useSelectedLayoutSegment, classnames 라이브러리 (0) | 2024.03.16 |
패러렐 라우트와 인터셉터 라우트 (1) | 2024.03.14 |
app router의 폴더 구조 및 세팅 (0) | 2024.03.13 |
Comments