Firebaseとnuxtを組み合わせたカラーコードを管理するアプリを作成しているのですが、storeにてログイン情報を管理中リロードをすると認証したユーザー情報が消えてしまいます。公式ドキュメントを見ながらfirebase.jsとstoreを以下のように設定したのですが解決が見えません。何卒よろしくお願いいたします。
firebase
1import firebase from 'firebase' 2 3if (!firebase.apps.length) { 4 firebase.initializeApp(option) 5 firebase.auth().setPersistence(firebase.auth.Auth.Persistence.SESSION).then(() => { 6 console.log('Initialized!') 7 }) 8} 9 10export default firebase
index
1import firebase from '~/plugins/firebase' 2const db = firebase.firestore(); 3const colorsRef = db.collection('colors') 4 5export const state = () => ({ 6 userUid: '', 7 userName: '', 8 loggedIn: false, 9 colors: [] 10}) 11 12export const mutations = { 13 loginUser(state) { 14 state.loggedIn = true 15 }, 16 setUserUid(state,userUid) { 17 state.userUid = userUid 18 }, 19 setUserName(state,userName) { 20 state.userName = userName 21 }, 22 addColor(state, color) { 23 state.colors.push(color) 24 }, 25 logoutUser(state) { 26 state.loggedIn = false 27 state.userUid = "" 28 state.userName = "" 29 }, 30} 31 32export const actions = { 33 login({ commit }) { 34 const provider = new firebase.auth.GoogleAuthProvider(); 35 firebase.auth().signInWithPopup(provider).then((result) => { 36 const user = result.user 37 firebase.auth().onAuthStateChanged((user) => { 38 if (user) { 39 commit('loginUser') 40 console.log('Login was successful') 41 commit('setUserUid', user.uid) 42 commit('setUserName', user.displayName) 43 } 44 }) 45 }).catch((error) => { 46 var errorCode = error.code 47 console.log('error : ' + errorCode) 48 }); 49 }, 50 logout({ commit }) { 51 firebase.auth().signOut().then(() => { 52 commit('logoutUser') 53 console.log('Logout was successful') 54 }).catch((error) => { 55 const errorCode = error.code 56 console.log('error :' + errorCode) 57 }) 58 }, 59 fetchColors({ commit }) { 60 colorsRef.get().then(res => { 61 res.forEach((doc) => { 62 commit('addColor', doc.data()) 63 }) 64 }).catch(error => { 65 console.log('error : ' + error) 66 }) 67 }, 68 addColor({commit}, color) { 69 console.log(color) 70 colorsRef.add({ 71 name: color.name, 72 code: color.code, 73 user: color.user 74 }).then((docRef) => { 75 commit('addColor', color) 76 }).catch((error) => { 77 console.error("Error adding color: ", error); 78 }) 79 } 80} 81 82export const getters = { 83 getUserUid(state) { 84 return state.userUid 85 }, 86 getUserName(state) { 87 return state.userName 88 }, 89 getColors(state) { 90 return state.colors 91 } 92} 93
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。