Vue、Vuetify、firebaseでアプリを作成しております。
ユーザー認証をfirebase Authenticationでやっており、ユーザーのプロフィールや性別などはドキュメントIDをUIDと同じにしてusersコレクションの中に保存しております。
ユーザーアカウント削除を行う際この二つを同時に消したいのですが、usersコレクション内のドキュメントがうまく消えてくれません。
どこに原因があるのか分からないのでご指導いただけると助かります。
Vue
1<template> 2 <v-dialog max-width="600px" v-model="dialog"> 3 <v-btn flat slot="activator" class="primary white--text">アカウントを削除</v-btn> 4 <v-card> 5 <v-card-title> 6 <h2>アカウントを削除</h2> 7 </v-card-title> 8 <v-card-text> 9 <v-form> 10 <v-text-field label="パスワードを入力" v-model="current_password"></v-text-field> 11 12 <v-btn flat @click="deleteAccount" :disabled="!formIsValid">削除</v-btn> 13 <v-btn flat @click="cancel">キャンセル</v-btn> 14 </v-form> 15 </v-card-text> 16 </v-card> 17 </v-dialog> 18</template> 19 20<script> 21import db from '@/fb' 22import firebase from 'firebase' 23 24export default { 25 26 data(){ 27 return{ 28 current_password: '', 29 dialog: false, 30 } 31 }, 32 33 methods: { 34 35 deleteAccount: async function(){ 36 37 var user = firebase.auth().currentUser; 38 var credential = await firebase.auth.EmailAuthProvider.credential( 39 this.currentUser.email, 40 this.current_password, 41 ) 42 43 let self = this; 44 45 //ユーザー情報の削除 46 await user.reauthenticateAndRetrieveDataWithCredential(credential) 47 .then(function() { 48 49 //Authenticationのユーザー情報削除 50 user.delete().then(function() { 51 52 //Databaseのユーザー情報削除 53 db.collection('users').doc(self.currentUserUid).delete(); 54 55 }).catch(function(error) { 56 console.log(error); 57 }); 58 59 }).catch(function(error) { 60 console.log(error); 61 }); 62 63 //トップに戻る 64 await self.$router.go({path: self.$router.path}); 65 66 } 67 }, 68 69 cancel(){ 70 this.dialog = false; 71 this.current_password = ''; 72 }, 73 74 }, 75 76 computed: { 77 78 //パスワードを入力していたらボタンを有効化 79 formIsValid(){ 80 return this.current_password !== ''; 81 }, 82 83 currentUser: { 84 get: function(){ 85 return this.$store.getters.currentUser; 86 }, 87 }, 88 89 currentUserUid(){ 90 return firebase.auth().currentUser.uid; 91 } 92 }, 93 94} 95</script>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。