Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

마이페이지 첫 로딩 시 좌표 0, 0 뜨는 버그 수정 #53

Closed
dusunax opened this issue Aug 25, 2022 · 1 comment
Closed

마이페이지 첫 로딩 시 좌표 0, 0 뜨는 버그 수정 #53

dusunax opened this issue Aug 25, 2022 · 1 comment

Comments

@dusunax
Copy link
Contributor

dusunax commented Aug 25, 2022

마이페이지 첫 로딩 시 좌표 0, 0 뜨는 버그 수정


  • 마이페이지 첫 접속 시 지도 정보가 0, 0이므로 지도 뜨지 않음
  • 로그인 시 받아온 userId로 login 스토어의 user정보 바로 업데이트하도록 수정
if (loginState.type === "log/LOGIN_LOG/fulfilled") {
  dispatch(__myInfo(loginState.payload.userId))
  alert(`${loginState.payload.nickname} 님 환영합니다 :) `);
  navigate("/swipe");
}

  • 문제점: 최초 가입 후 마이페이지 접속 했을 때 저장된 좌표 정보 없음
  • 마이페이지 접속 시 리랜더링 버튼 => "위치정보 불러오기" 등
  • 이후에는 서버에서 불러온 좌표로 처음부터 지도 출력 가능함
@dusunax
Copy link
Contributor Author

dusunax commented Aug 25, 2022

강제 업데이트 버튼(좋지않음)

//리랜더
const [update, setUpdate] = useState(false);
<button className="render_button" onClick={()=>{
  setUpdate(!update)
}}>
  내 위치 불러오기
</button>
/** 사용자의 위치를 구하고, 서버에 업데이트 */
useEffect(()=>{
  getUserCoord();
  
  mapCoord = userCoord;  

  if(currentPlaceCoord !== undefined){
    console.log('사용자의 위치 수정됨');
    dispatch(__updateCoord({
      userId: logginUser.userId,
      ...currentPlaceCoord
    }))
    mapCoord = currentPlaceCoord;
  }

  KakaoMapScript(
    Number(mapCoord.x), 
    Number(mapCoord.y) 
  );

}, [update])

@dusunax dusunax closed this as completed Aug 25, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant