useModal.js 5.0 KB

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