user.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. // 用户数据模块
  2. import http from '@/shopro/request/index'
  3. import store from '@/shopro/store'
  4. import tools from '@/shopro/utils/tools'
  5. import wechat from '@/shopro/wechat/wechat'
  6. import share from '@/shopro/share'
  7. const state = {
  8. token: uni.getStorageSync("token") || "",
  9. isLogin: uni.getStorageSync("isLogin") || false, // 是否登陆
  10. userInfo: uni.getStorageSync("userInfo") || {}, // 用户信息
  11. agentInfo: {}, //分销商信息
  12. userData: {}, //用户其他相关信息
  13. subscribeMessageIdsMap: [], //小程序订阅消息模板ids
  14. authType: '' // smsLogin:手机号登录注册, accountLogin:密码登录, forgotPwd:忘记密码, changePwd:修改密码, bindMobile:绑定手机号
  15. }
  16. const getters = {
  17. token: state => state.token,
  18. isLogin: state => state.isLogin,
  19. userInfo: state => state.userInfo,
  20. agentInfo: state => state.agentInfo,
  21. userOtherData: state => state.userData,
  22. authType: state => state.authType,
  23. subscribeMessageIdsMap: state => state.subscribeMessageIdsMap
  24. }
  25. const actions = {
  26. // 获取用户信息
  27. getUserInfo({
  28. commit,
  29. dispatch,
  30. getters,
  31. state
  32. }, token = '') {
  33. return new Promise((resolve, reject) => {
  34. token && uni.setStorageSync('token', token);
  35. http('user.info').then(res => {
  36. if (res.code === 1) {
  37. let lastLoginStatus = getters.isLogin;
  38. commit('userInfo', res.data);
  39. commit('isLogin', true);
  40. dispatch('showAuthModal', '');
  41. !lastLoginStatus && share.setShareInfo();
  42. // 存在分享信息 添加分享记录
  43. let spm = uni.getStorageSync('spm');
  44. if (spm) {
  45. http('common.shareAdd', {
  46. spm: spm
  47. });
  48. uni.removeStorageSync('spm');
  49. }
  50. resolve(res.data)
  51. }
  52. }).then(() => {
  53. // 只有在登录的时候请求购物车信息,订单信息,获取登录信息之后。
  54. token && dispatch('getCartList');
  55. token && dispatch('getUserData');
  56. })
  57. .catch(e => {
  58. reject(e)
  59. })
  60. })
  61. },
  62. // 用户其他相关信息
  63. getUserData({
  64. commit
  65. }) {
  66. return new Promise((resolve, reject) => {
  67. http('user.userData').then(res => {
  68. commit('USER_DATA', res.data);
  69. resolve(res)
  70. }).catch(e => {
  71. reject(e)
  72. })
  73. })
  74. },
  75. // 获取分销商身份信息
  76. getAgent({
  77. commit
  78. }) {
  79. return new Promise((resolve, reject) => {
  80. http('commission.auth').then(res => {
  81. if (res.code === 1) {
  82. commit('AGENT_INFO', res.data.data);
  83. }
  84. resolve(res)
  85. }).catch(e => {
  86. reject(e)
  87. });
  88. })
  89. },
  90. // 自动登录
  91. async autoLogin({
  92. getters,
  93. dispatch
  94. }) {
  95. if (getters.initWechat?.autologin && !getters.isLogin) { // 微信开启自动登录 并且当前未登录,进入自动登录流程
  96. let token = '';
  97. // #ifdef H5
  98. wechat.login();
  99. // #endif
  100. // #ifdef MP-WEIXIN
  101. token = await wechat.getWxMiniProgramSessionKey(true);
  102. // #endif
  103. token && await dispatch('getUserInfo', token);
  104. } else if (getters.isLogin) { // 已经登录,直接获取用户信息
  105. await dispatch('getUserInfo');
  106. }
  107. share.setShareInfo();
  108. // 初始化小程序session_key
  109. // #ifdef MP-WEIXIN
  110. if (!getters.initWechat?.autologin) {
  111. await wechat.getWxMiniProgramSessionKey(false);
  112. }
  113. // #endif
  114. },
  115. // 登录弹窗控制
  116. showAuthModal({
  117. commit
  118. }, type = 'accountLogin') {
  119. commit('AUTH_TYPE', type);
  120. },
  121. // 退出登录
  122. logout({
  123. commit,
  124. dispatch
  125. }) {
  126. uni.getStorageSync('token') && http('user.logout');
  127. commit('token', "");
  128. uni.removeStorageSync('chatSessionId');
  129. commit('isLogin', false);
  130. commit('userInfo', {});
  131. commit('CART_LIST', []);
  132. commit('USER_DATA', {});
  133. // 重置全局分享信息
  134. share.setShareInfo();
  135. },
  136. // 获取订阅消息模板ids;
  137. getMessageIds({
  138. commit,
  139. state
  140. }) {
  141. http('user.messageIds').then(res => {
  142. commit('formatMessage', res.data)
  143. Promise.resolve(res.data)
  144. }).catch(e => {
  145. Promise.reject(e)
  146. })
  147. },
  148. }
  149. const mutations = {
  150. token(state, payload) {
  151. state.token = payload;
  152. uni.setStorageSync("token", payload);
  153. },
  154. // 登录态
  155. isLogin(state, data) {
  156. state.isLogin = data;
  157. uni.setStorageSync('isLogin', data);
  158. },
  159. // 用户信息
  160. userInfo(state, data) {
  161. state.userInfo = data;
  162. uni.setStorageSync("userInfo", data);
  163. },
  164. // 分销商信息
  165. AGENT_INFO(state, data) {
  166. state.agentInfo = data;
  167. },
  168. // 小程序订阅消息模板ids
  169. MESSAGE_IDS(state, data) {
  170. state.subscribeMessageIds = data;
  171. },
  172. USER_DATA(state, data) {
  173. state.userData = data;
  174. },
  175. AUTH_TYPE(state, data) {
  176. data ? uni.hideTabBar() : uni.showTabBar();
  177. state.authType = data;
  178. },
  179. // 订阅消息
  180. subscribeMessage(state, type) {
  181. let arr = state.subscribeMessageIdsMap[type];
  182. arr.length && uni.requestSubscribeMessage({
  183. tmplIds: arr,
  184. success: (res) => {
  185. console.log(res);
  186. },
  187. fail: (err) => {
  188. console.log(err);
  189. }
  190. });
  191. },
  192. // 解析订阅消息数据
  193. formatMessage(state, messageIdsObj) {
  194. // 各场景下用到的订阅模板
  195. let typeMap = {
  196. 'result': ['order_sended'], //支付成功
  197. 'grouponResult': ['groupon_success', 'groupon_fail', 'order_sended'], //拼团支付成功后
  198. 'aftersale': ['refund_agree', 'aftersale_change', 'wallet_change'], //点击售后
  199. 'wallet': ['score_change', 'wallet_apply', 'wallet_change'], //提现提醒
  200. 'store': ['store_order_new'], //门店新订单通知
  201. 'storeApply': ['store_apply'] //门店申请通知
  202. }
  203. let idsMap = {}
  204. Object.keys(typeMap).forEach(key => {
  205. idsMap[key] = []
  206. typeMap[key].forEach(item => {
  207. idsMap[key].push(messageIdsObj[item])
  208. })
  209. })
  210. state.subscribeMessageIdsMap = idsMap
  211. },
  212. }
  213. export default {
  214. state,
  215. mutations,
  216. actions,
  217. getters
  218. }