tkp12345 / dash-borad

dash-borad 만들면서 몸풀기 (feat aws 배포 맛배기)
0 stars 0 forks source link

app-router tracking #4

Open tkp12345 opened 1 month ago

tkp12345 commented 1 month ago

Description

app-router 에서 페이지 변환시 특정 이벤트를 핸들링 하고 싶었지만 nextJS v13 이후로는 next/navigation을 통해 useRouter 제공하고 있었고 events 를 리턴하지 않았다 이에따라 페이지 변환에 따른 이벤트 ( 경로 변경 이벤트를 중지하거나...) 를 핸들링 하는 방식을 찾지 못하였습니다

해당이슈는 논의중.. : https://github.com/vercel/next.js/discussions/41934

Progress

tkp12345 commented 1 month ago

nextJS v13 router 시 보여줄 loading 라이브러리를 발견하였습니다 : https://www.npmjs.com/package/nextjs-progressloader

tkp12345 commented 1 month ago

https://medium.com/@joaojbs199/page-exit-prevention-in-nextjs-14-7f42add43297 글을 참고하여 기능을 추가중 ..

tkp12345 commented 1 month ago

useTransition 을 사용해 페이지 전환이 일어나는 동안 해당 상태를 감지 적용중...