store.js 4.1 KB
Newer Older
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
1
import pagesJson from '@/pages.json'
2 3
import config from '@/uni_modules/uni-id-pages/config.js'

DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
4
const uniIdCo = uniCloud.importObject("uni-id-co")
C
1.0.25  
chenruilong 已提交
5
const db = uniCloud.database();
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
6
const usersTable = db.collection('uni-id-users')
7

C
1.0.25  
chenruilong 已提交
8
let hostUserInfo = uni.getStorageSync('uni-id-pages-userInfo')||{}
study夏羽's avatar
1.0.37  
study夏羽 已提交
9
// console.log( hostUserInfo);
C
1.0.25  
chenruilong 已提交
10 11
const data = {
	userInfo: hostUserInfo,
12
	hasLogin: Object.keys(hostUserInfo).length != 0
C
1.0.25  
chenruilong 已提交
13 14
}

study夏羽's avatar
1.0.37  
study夏羽 已提交
15
// console.log('data', data);
C
1.0.25  
chenruilong 已提交
16 17 18 19
// 定义 mutations, 修改属性
export const mutations = {
	// data不为空,表示传递要更新的值(注意不是覆盖是合并),什么也不传时,直接查库获取更新
	async updateUserInfo(data = false) {
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
20 21
		if (data) {
			usersTable.where('_id==$env.uid').update(data).then(e => {
study夏羽's avatar
1.0.37  
study夏羽 已提交
22
				// console.log(e);
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
23 24 25
				if (e.result.updated) {
					uni.showToast({
						title: "更新成功",
26 27
						icon: 'none',
						duration: 3000
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
28 29 30 31 32
					});
					this.setUserInfo(data)
				} else {
					uni.showToast({
						title: "没有改变",
33 34
						icon: 'none',
						duration: 3000
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
35 36
					});
				}
C
1.0.25  
chenruilong 已提交
37 38 39
			})

		} else {
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
40 41
			try {
				let res = await usersTable.where("'_id' == $cloudEnv_uid")
DCloud_JSON's avatar
1.0.22  
DCloud_JSON 已提交
42
						.field('mobile,nickname,username,email,avatar_file')
C
1.0.25  
chenruilong 已提交
43
						.get()
study夏羽's avatar
1.0.37  
study夏羽 已提交
44
				// console.log('fromDbData',res.result.data);
C
1.0.25  
chenruilong 已提交
45 46 47 48 49 50 51 52
				this.setUserInfo(res.result.data[0])
			} catch (e) {
				this.setUserInfo({},{cover:true})
				console.error(e.message, e.errCode);
			}
		}
	},
	async setUserInfo(data, {cover}={cover:false}) {
study夏羽's avatar
1.0.37  
study夏羽 已提交
53
		// console.log('set-userInfo', data);
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
54
		let userInfo = cover?data:Object.assign(store.userInfo,data)
C
1.0.25  
chenruilong 已提交
55 56
		store.userInfo = Object.assign({},userInfo)
		store.hasLogin = Object.keys(store.userInfo).length != 0
study夏羽's avatar
1.0.37  
study夏羽 已提交
57
		// console.log('store.userInfo', store.userInfo);
C
1.0.25  
chenruilong 已提交
58 59 60 61 62
		uni.setStorage({
			key: "uni-id-pages-userInfo",
			data:store.userInfo
		})
		return data
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
63 64
	},
	async logout() {
DCloud_JSON's avatar
DCloud_JSON 已提交
65 66 67 68 69 70 71 72
		// 1. 已经过期就不需要调用服务端的注销接口	2.即使调用注销接口失败,不能阻塞客户端
		if(uniCloud.getCurrentUserInfo().tokenExpired > Date.now()){
			try{
				await uniIdCo.logout()
			}catch(e){
				console.error(e);
			}
		}
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
73 74 75 76 77 78 79 80
		uni.removeStorageSync('uni_id_token');
		uni.setStorageSync('uni_id_token_expired', 0)
		uni.redirectTo({
			url: `/${pagesJson.uniIdRouter?.loginPage ?? 'uni_modules/uni-id-pages/pages/login/login-withoutpwd'}`,
		});
		uni.$emit('uni-id-pages-logout')
		this.setUserInfo({},{cover:true})
	},
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

	loginBack (e = {}) {
		const {uniIdRedirectUrl = ''} = e
		let delta = 0; //判断需要返回几层
		let pages = getCurrentPages();
		// console.log(pages);
		pages.forEach((page, index) => {
			if (pages[pages.length - index - 1].route.split('/')[3] == 'login') {
				delta++
			}
		})
		// console.log('判断需要返回几层:', delta);
		if (uniIdRedirectUrl) {
			return uni.reLaunch({
				url: uniIdRedirectUrl
			})
		}
		// #ifdef H5
		if (e.loginType == 'weixin') {
study夏羽's avatar
1.0.37  
study夏羽 已提交
100
			// console.log('window.history', window.history);
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
			return window.history.go(-3)
		}
		// #endif

		if (delta) {
			const page = pagesJson.pages[0]
			return uni.reLaunch({
				url: `/${page.path}`
			})
		}

		uni.navigateBack({
			delta
		})
	},
C
1.0.25  
chenruilong 已提交
116
	loginSuccess(e = {}){
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
117
		const {
118
			showToast = true, toastText = '登录成功', autoBack = true, uniIdRedirectUrl = '', passwordConfirmed
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
119
		} = e
study夏羽's avatar
1.0.37  
study夏羽 已提交
120
		// console.log({toastText,autoBack});
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
121 122 123
		if (showToast) {
			uni.showToast({
				title: toastText,
124 125
				icon: 'none',
				duration: 3000
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
126 127 128
			});
		}
		this.updateUserInfo()
129

DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
130
		uni.$emit('uni-id-pages-login-success')
131 132 133 134 135 136

		if (config.setPasswordAfterLogin && !passwordConfirmed) {
			return uni.redirectTo({
				url: uniIdRedirectUrl ? `/uni_modules/uni-id-pages/pages/userinfo/set-pwd/set-pwd?uniIdRedirectUrl=${uniIdRedirectUrl}&loginType=${e.loginType}`: `/uni_modules/uni-id-pages/pages/userinfo/set-pwd/set-pwd?loginType=${e.loginType}`,
				fail: (err) => {
					console.log(err)
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
137 138
				}
			})
139
		}
C
1.0.25  
chenruilong 已提交
140

141
		if (autoBack) {
142
			this.loginBack({uniIdRedirectUrl})
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
143 144
		}
	}
C
1.0.25  
chenruilong 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159

}

// #ifdef VUE2
import Vue from 'vue'
// 通过Vue.observable创建一个可响应的对象
export const store = Vue.observable(data)
// #endif

// #ifdef VUE3
import {
	reactive
} from 'vue'
// 通过Vue.observable创建一个可响应的对象
export const store = reactive(data)
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
160
// #endif