useModal.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. import $store from '@/sheep/store';
  2. import $helper from '@/sheep/helper';
  3. import dayjs from 'dayjs';
  4. import {
  5. ref,
  6. computed
  7. } from 'vue';
  8. import test from '@/sheep/helper/test.js';
  9. import AuthUtil from '@/sheep/api/member/auth';
  10. import sheep from '@/sheep';
  11. import SignInApi from '@/sheep/api/member/signin';
  12. let time = 30;
  13. let timer = null;
  14. // 登录
  15. async function onSign() {
  16. console.log("onSign")
  17. const {
  18. code,
  19. data
  20. } = await SignInApi.createSignInRecord();
  21. if (code === 0) {
  22. showSignUpModal(data)
  23. }
  24. if (timer) {
  25. clearInterval(timer);
  26. }
  27. uni.setStorageSync('isRun', false);
  28. uni.setStorageSync('isSign', true);
  29. }
  30. // 每日重置签到状态
  31. export function resetSignStatusIfNeeded() {
  32. const today = new Date().toISOString().slice(0, 10); // 获取当前日期,格式为 YYYY-MM-DD
  33. const lastCheckDate = uni.getStorageSync('lastCheckDate');
  34. if (today !== lastCheckDate) {
  35. // 如果跨天了,重置 isSign
  36. uni.setStorageSync('isSign', false);
  37. uni.setStorageSync('lastCheckDate', today); // 更新最后检查的日期
  38. }
  39. }
  40. // 自动签到
  41. export function autoSign() {
  42. resetSignStatusIfNeeded();
  43. const isLogin = computed(() => sheep.$store('user').isLogin);
  44. if (isLogin.value) {
  45. // 倒计时是否在进行
  46. // console.log("autoSign执行了")
  47. uni.setStorageSync('isRun', true);
  48. if (uni.getStorageSync('isRun') && !uni.getStorageSync('isSign')) {
  49. // console.log('开始倒计时')
  50. // 开始一个新的定时器
  51. timer = setInterval(() => {
  52. time--;
  53. console.log("time", time);
  54. if (uni.getStorageSync('isSign') || !isLogin.value){
  55. console.log('已经签到了或者已经登出了 不可以在签到')
  56. cancelAutoSign()
  57. }
  58. if (time <= 0 && !uni.getStorageSync('isSign')) {
  59. clearInterval(timer);
  60. onSign();
  61. }
  62. }, 1000);
  63. }
  64. }
  65. }
  66. // 取消自动签到
  67. export function cancelAutoSign() {
  68. // console.log("autoSign取消了")
  69. if (timer) {
  70. clearInterval(timer);
  71. }
  72. time = 30;
  73. uni.setStorageSync('isRun', false);
  74. }
  75. // 打开签到弹框
  76. export function showSignUpModal(obj) {
  77. $store('modal').$patch((state) => {
  78. state.signUp = true;
  79. state.signUpInfo = obj;
  80. });
  81. }
  82. // 关闭签到弹框
  83. export function colseSignUpModal() {
  84. $store('modal').$patch((state) => {
  85. state.signUp = false;
  86. });
  87. }
  88. // 打开授权弹框
  89. export function showAuthModal(type = 'smsLogin', isActive = 'smsLogin') {
  90. const modal = $store('modal');
  91. if (modal.auth !== '') {
  92. closeAuthModal();
  93. setTimeout(() => {
  94. modal.$patch((state) => {
  95. state.auth = type;
  96. state.isActive = isActive;
  97. });
  98. }, 100);
  99. } else {
  100. modal.$patch((state) => {
  101. state.auth = type;
  102. state.isActive = isActive;
  103. });
  104. }
  105. }
  106. // 关闭授权弹框
  107. export function closeAuthModal() {
  108. $store('modal').$patch((state) => {
  109. state.auth = '';
  110. });
  111. }
  112. // 打开分享弹框
  113. export function showShareModal() {
  114. $store('modal').$patch((state) => {
  115. state.share = true;
  116. });
  117. }
  118. // 关闭分享弹框
  119. export function closeShareModal() {
  120. $store('modal').$patch((state) => {
  121. state.share = false;
  122. });
  123. }
  124. // 打开快捷菜单
  125. export function showMenuTools() {
  126. $store('modal').$patch((state) => {
  127. state.menu = true;
  128. });
  129. }
  130. // 关闭快捷菜单
  131. export function closeMenuTools() {
  132. $store('modal').$patch((state) => {
  133. state.menu = false;
  134. });
  135. }
  136. // 发送短信验证码 60秒
  137. export function getSmsCode(event, mobile) {
  138. const modalStore = $store('modal');
  139. const lastSendTimer = modalStore.lastTimer[event];
  140. if (typeof lastSendTimer === 'undefined') {
  141. $helper.toast('短信发送事件错误');
  142. return;
  143. }
  144. const duration = dayjs().unix() - lastSendTimer;
  145. const canSend = duration >= 60;
  146. if (!canSend) {
  147. $helper.toast('请稍后再试');
  148. return;
  149. }
  150. // 只有 mobile 非空时才校验。因为部分场景(修改密码),不需要输入手机
  151. if (mobile && !test.mobile(mobile)) {
  152. $helper.toast('手机号码格式不正确');
  153. return;
  154. }
  155. // 发送验证码 + 更新上次发送验证码时间
  156. let scene = -1;
  157. switch (event) {
  158. case 'resetPassword':
  159. scene = 4;
  160. break;
  161. case 'changePassword':
  162. scene = 3;
  163. break;
  164. case 'changeMobile':
  165. scene = 2;
  166. break;
  167. case 'smsLogin':
  168. scene = 1;
  169. break;
  170. }
  171. AuthUtil.sendSmsCode(mobile, scene).then((res) => {
  172. if (res.code === 0) {
  173. modalStore.$patch((state) => {
  174. state.lastTimer[event] = dayjs().unix();
  175. });
  176. }
  177. });
  178. }
  179. // 获取短信验证码倒计时 -- 60秒
  180. export function getSmsTimer(event, mobile = '') {
  181. const modalStore = $store('modal');
  182. const lastSendTimer = modalStore.lastTimer[event];
  183. if (typeof lastSendTimer === 'undefined') {
  184. $helper.toast('短信发送事件错误');
  185. return;
  186. }
  187. const duration = ref(dayjs().unix() - lastSendTimer - 60);
  188. const canSend = duration.value >= 0;
  189. if (canSend) {
  190. return '获取验证码';
  191. }
  192. if (!canSend) {
  193. setTimeout(() => {
  194. duration.value++;
  195. }, 1000);
  196. return -duration.value.toString() + ' 秒';
  197. }
  198. }
  199. // 记录广告弹框历史
  200. export function saveAdvHistory(adv) {
  201. const modal = $store('modal');
  202. modal.$patch((state) => {
  203. if (!state.advHistory.includes(adv.imgUrl)) {
  204. state.advHistory.push(adv.imgUrl);
  205. }
  206. });
  207. }