user.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. import { defineStore } from 'pinia';
  2. import $share from '@/sheep/platform/share';
  3. import { clone, cloneDeep } from 'lodash';
  4. import cart from './cart';
  5. import app from './app';
  6. import { showAuthModal } from '@/sheep/hooks/useModal';
  7. import UserApi from '@/sheep/api/member/user';
  8. import PayWalletApi from '@/sheep/api/pay/wallet';
  9. import OrderApi from '@/sheep/api/trade/order';
  10. import CouponApi from '@/sheep/api/promotion/coupon';
  11. import AddressApi from '@/sheep/api/member/address';
  12. // 默认用户信息
  13. const defaultUserInfo = {
  14. avatar: '', // 头像
  15. nickname: '', // 昵称
  16. gender: 0, // 性别
  17. mobile: '', // 手机号
  18. point: 0, // 积分
  19. };
  20. // 默认钱包信息
  21. const defaultUserWallet = {
  22. balance: 0, // 余额
  23. };
  24. // 默认收货地址
  25. const defaultAddressList = []
  26. // 默认订单、优惠券等其他资产信息
  27. const defaultNumData = {
  28. unusedCouponCount: 0,
  29. orderCount: {
  30. allCount: 0,
  31. unpaidCount: 0,
  32. undeliveredCount: 0,
  33. deliveredCount: 0,
  34. uncommentedCount: 0,
  35. afterSaleCount: 0,
  36. },
  37. };
  38. const user = defineStore({
  39. id: 'user',
  40. state: () => ({
  41. userInfo: clone(defaultUserInfo), // 用户信息
  42. userWallet: clone(defaultUserWallet), // 用户钱包信息
  43. isLogin: !!uni.getStorageSync('token'), // 登录状态
  44. numData: cloneDeep(defaultNumData), // 用户其他数据
  45. lastUpdateTime: 0, // 上次更新时间
  46. addressList:clone(defaultAddressList)
  47. }),
  48. actions: {
  49. // 获取用户信息
  50. async getInfo() {
  51. const { code, data } = await UserApi.getUserInfo();
  52. if (code !== 0) {
  53. return;
  54. }
  55. this.userInfo = data;
  56. return Promise.resolve(data);
  57. },
  58. // 获得用户钱包
  59. async getWallet() {
  60. const { code, data } = await PayWalletApi.getPayWallet();
  61. if (code !== 0) {
  62. return;
  63. }
  64. this.userWallet = data;
  65. },
  66. // 获取订单、优惠券等其他资产信息
  67. getNumData() {
  68. OrderApi.getOrderCount().then(res => {
  69. if (res.code === 0) {
  70. this.numData.orderCount = res.data;
  71. }
  72. });
  73. CouponApi.getUnusedCouponCount().then(res => {
  74. if (res.code === 0) {
  75. this.numData.unusedCouponCount = res.data;
  76. }
  77. });
  78. },
  79. getAddress(){
  80. AddressApi.getAddress().then(res=>{
  81. if(res.code===0){
  82. this.addressList=res.data
  83. }
  84. })
  85. },
  86. // 添加分享记录
  87. // TODO 芋艿:整理下;
  88. // async addShareLog(params) {
  89. // const {
  90. // error
  91. // } = await userApi.addShareLog(params);
  92. // if (error === 0) uni.removeStorageSync('shareLog');
  93. // },
  94. // 设置 token
  95. setToken(token = '', refreshToken = '') {
  96. if (token === '') {
  97. this.isLogin = false;
  98. uni.removeStorageSync('token');
  99. uni.removeStorageSync('refresh-token');
  100. } else {
  101. this.isLogin = true;
  102. uni.setStorageSync('token', token);
  103. uni.setStorageSync('refresh-token', refreshToken);
  104. this.loginAfter();
  105. }
  106. return this.isLogin;
  107. },
  108. // 更新用户相关信息 (手动限流,5 秒之内不刷新)
  109. async updateUserData() {
  110. if (!this.isLogin) {
  111. this.resetUserData();
  112. return;
  113. }
  114. // 防抖,5 秒之内不刷新
  115. const nowTime = new Date().getTime();
  116. if (this.lastUpdateTime + 5000 > nowTime) {
  117. return;
  118. }
  119. this.lastUpdateTime = nowTime;
  120. // 获取最新信息
  121. await this.getInfo();
  122. this.getWallet();
  123. this.getNumData();
  124. this.getAddress()
  125. return this.userInfo;
  126. },
  127. // 重置用户默认数据
  128. resetUserData() {
  129. // 清空 token
  130. this.setToken();
  131. // 清空用户相关的缓存
  132. this.userInfo = clone(defaultUserInfo);
  133. this.userWallet = clone(defaultUserWallet);
  134. this.numData = cloneDeep(defaultNumData);
  135. // 清空购物车的缓存
  136. cart().emptyList();
  137. },
  138. // 登录后,加载各种信息
  139. // TODO 芋艿:整理下;
  140. async loginAfter() {
  141. await this.updateUserData();
  142. // 加载购物车
  143. cart().getList();
  144. // 登录后设置全局分享参数
  145. $share.getShareInfo();
  146. // 提醒绑定手机号
  147. if (app().platform.bind_mobile && !this.userInfo.mobile) {
  148. showAuthModal('changeMobile');
  149. }
  150. // 绑定推广员
  151. $share.bindBrokerageUser()
  152. // 添加分享记录
  153. // TODO 芋艿:整理下;
  154. // const shareLog = uni.getStorageSync('shareLog');
  155. // if (!isEmpty(shareLog)) {
  156. // this.addShareLog({
  157. // ...shareLog,
  158. // });
  159. // }
  160. },
  161. // 登出系统
  162. async logout() {
  163. this.resetUserData();
  164. return !this.isLogin;
  165. }
  166. },
  167. persist: {
  168. enabled: true,
  169. strategies: [{
  170. key: 'user-store',
  171. }]
  172. },
  173. });
  174. export default user;