
먼저 500 Error가 발생한 원인은 간단합니다.
const { data } = useSWR<PostsResponse>(
latitude && longitude
? `/api/posts?latitude=${latitude}&longitude=${longitude}`
: null
);
Next.Js의 SSR 방식은 클라이언트 단에서 useSWR을 통해서 API Call을 호출하기 전에
즉 브라우저에 화면을 그려주기 전에 미리 초기 값({latitude: null, logintude: null})으로 백엔드에 호출을 해서 화면을 그리는 방식이기 때문에 param의 latitude, logintude의 값이 null로 전달되어서 발생한 문제입니다.
위도와 경도를 구하는 useCoords 함수는 초기값으로 각각 {latitude: null, logintude: null}으로 선언되어 있기 때문입니다.
import { useEffect, useState } from "react";
interface UseCoordsState {
latitude: number | null;
longitude: number | null;
}
export default function useCoords() {
const [coords, setCoords] = useState<UseCoordsState>({
latitude: null,
longitude: null,
});
const onSuccess = ({
coords: { latitude, longitude },
}: GeolocationPosition) => {
setCoords({ latitude, longitude });
};
useEffect(() => {
navigator.geolocation.getCurrentPosition(onSuccess);
}, []);
return coords;
}
해결 방안은 클라이언트 즉 브라우저에서 화면을 그릴 때 latitude && logitude 값이 둘 다 존재할 때 API를 호출하면 됩니다.
'지식 정리 📝' 카테고리의 다른 글
정규식을 활용한 특정 문자뒤의 숫자들의 합 출력 (0) | 2024.05.04 |
---|---|
[Git] Commit Convention을 통한 개인프로젝트 관리 (0) | 2024.03.13 |
SPA(Single Page Application)페이지 SEO 최적화 With React Helmet (0) | 2024.03.08 |
Optimistic UI Update With useSWR (0) | 2024.02.28 |
Safari에서 깨지는 CSS 해결 (0) | 2024.02.22 |