使用firebase的auth和firestore实现用户注册以及登录登出

set up(https://firebase.google.com/docs/web/setup

0. 需要一个google账号

  1. 在firebase网站新建一个firebase项目(https://console.firebase.google.com/

  1. 创建成功后添加一个web应用

  1. 注册应用并添加firebase SDK(在terminal实现)

code

  1. firebase.js

import firebase from 'firebase/app'
import 'firebase/auth'
import 'firebase/firestore'
// TODO: Replace the following with your app's Firebase project configuration
const firebaseConfig = {
    //......
  
}
firebase.initializeApp(firebaseConfig)
const auth = firebase.auth()
const db = firebase.firestore()
const usersCollection = db.collection('users')
export { auth, db, usersCollection }
  1. user.js

import { defineStore } from 'pinia'
import { auth, usersCollection } from '@/includes/firebase'

export default defineStore('user', {
  state: () => ({
    userLoggedIn: false
  }),
  actions: {
    async register(values) {
      console.log('registering')
      const userCred = await auth.createUserWithEmailAndPassword(values.email, values.password)
      await usersCollection.doc(userCred.user.uid).set({
        name: values.name,
        email: values.email,
        age: values.age,
        country: values.country
      })
      await userCred.user.updateProfile({
        displayName: values.name
      })
      this.userLoggedIn = true
    },
    async authenticate(values) {
      console.log('logining')
      await auth.signInWithEmailAndPassword(values.email, values.password)
      this.userLoggedIn = true
    },
    async signOut() {
      console.log('logouting')
      await auth.signOut()
      this.userLoggedIn = false
    }
  }
})

3.App.vue

created() {
    if (auth.currentUser) {
      this.userLoggedIn = true
      console.log('create is been called and the userLoggedIn is true')
    }
  }

4.main.js

let app
auth.onAuthStateChanged(() => {
  console.log(`AuthStateChanged,the value of app is ${app ? 'true' : 'false'}`)
  if (!app) {
    console.log('rendering')
    app = createApp(App)
    app.use(createPinia())
    app.use(router)
    app.use(VeeValidatePlugin)
    app.mount('#app')
  } else {
    console.log('no rendering')
  }
})

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值