やりたいこと
アクセス時にFirebase AuthからユーザーのUIDを取得、その後、ユーザーのFirestoreのデータのフィールドlastDateを参照してコンポーネントの表示切り替えを行いたい。
困っていること
同じcreated()で呼んでいるgetDateの実行の際に、getUserで変数uidがまだ更新されておらず、userRef.doc(uid)のuidが''のままなので、エラーが発生します。しかし、その後に実行しているconsole.log(uid)では正常にユーザーのUIDが表示されます。
仕様
pages/index.vueでFirebase Authの匿名ログインをcreated()で呼び、コンポーネントのcreated()でstore/date.jsのgetUserとgetDateを呼んで、getUserで取得したFirebaseAuthのユーザーUIDを変数uidに入れています。Firestoreのデータはユーザーごとにusers/ユーザーUIDの階層に保存されていて、lastDateというフィールドに保存されています。
Firestoreの処理はvuexfireの型を使っています。
【npmパッケージのバージョン】
"nuxt": "^2.11.0", "firebase": "7.6.0", "vuexfire": "3.2.0"
どうすれば、ユーザーのアクセス時にFirestoreにユーザーごとに保存されたlastDateの値を読み取ることができるのでしょうか。ご助言頂けると幸いです。
component/button.vue
Vue
1<template> 2省略 3</template> 4 5<script> 6export default { 7 created() { 8 this.$store.dispatch('date/getUser') 9 this.$store.dispatch('date/getDate') 10 }, 11 methods: { 12 countUp() { 13 this.$store.dispatch('counter/increment') 14 this.$store.dispatch('date/setDate') 15 } 16 } 17} 18</script> 19 20<style> 21</style> 22
store/date.js
javascript
1import { firestoreAction } from 'vuexfire' 2import moment from 'moment' 3import firebase from '~/plugins/firebase' 4 5let uid = '' 6const db = firebase.firestore() 7const userRef = db.collection('users') 8 9export const state = () => ({ 10 lastDate: '' 11}) 12 13export const actions = { 14 getUser: firebase.auth().onAuthStateChanged(user => { 15 uid = user.uid 16 }), 17 getDate: firestoreAction(({ bindFirestoreRef }) => { 18 bindFirestoreRef('lastDate', userRef.doc(uid)) 19 // eslint-disable-next-line no-console 20 console.log(uid) 21 }), 22 setDate: firestoreAction(() => { 23 userRef.doc(uid).set({ 24 lastDate: moment().format('YYYYMMDD') 25 }) 26 }) 27}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/19 09:19