728x90
로그인 확인 isLogedin api
https://firebase.google.com/docs/reference/js/v8/firebase.auth.Auth#onauthstatechanged
getAuth().onAuthStateChanged()
유저의 로그인 상태 변화 실시간 체크 API
import {getAuth} from "firebase/auth"
function App () {
const auth = getAuth();
const [isLoggedIn, setIsLoggedIn] = useState(false);
useEffect(() => {
auth.onAuthStateChanged(user => {
if (user && user.accessToken) {
setIsLoggedIn(true);
} else {
setIsLoggedIn(false);
}
})
}, [])
}
728x90
'라이브러리 도구' 카테고리의 다른 글
[npm 만들기] (0) | 2022.06.28 |
---|---|
[firebase-firestore] 실시간 컬렉션 데이터 불러오기 (0) | 2022.06.28 |
[VSCODE] Github에 코드 올리는 방법 (0) | 2021.12.26 |
[chart.js in vue.js] data label 없애는 설정 방법 (0) | 2021.11.11 |
[chartjs] tooltip 설정 방법 (2) | 2021.11.08 |
댓글