index.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. import $store from '@/sheep/store';
  2. import { showAuthModal, showShareModal } from '@/sheep/hooks/useModal';
  3. import { isNumber, isString, isEmpty, startsWith, isObject, isNil, clone } from 'lodash';
  4. import throttle from '@/sheep/helper/throttle';
  5. const _go = (
  6. path,
  7. params = {},
  8. options = {
  9. redirect: false,
  10. },
  11. ) => {
  12. let page = ''; // 跳转页面
  13. let query = ''; // 页面参数
  14. let url = ''; // 跳转页面完整路径
  15. if (isString(path)) {
  16. // 判断跳转类型是 path | 还是http
  17. if (startsWith(path, 'http')) {
  18. // #ifdef H5
  19. window.location = path;
  20. return;
  21. // #endif
  22. // #ifndef H5
  23. page = `/pages/public/webview`;
  24. query = `url=${encodeURIComponent(path)}`;
  25. // #endif
  26. } else if (startsWith(path, 'action:')) {
  27. handleAction(path);
  28. return;
  29. } else {
  30. [page, query] = path.split('?');
  31. }
  32. if (!isEmpty(params)) {
  33. let query2 = paramsToQuery(params);
  34. if (isEmpty(query)) {
  35. query = query2;
  36. } else {
  37. query += '&' + query2;
  38. }
  39. }
  40. }
  41. if (isObject(path)) {
  42. page = path.url;
  43. if (!isNil(path.params)) {
  44. query = paramsToQuery(path.params);
  45. }
  46. }
  47. const nextRoute = ROUTES_MAP[page];
  48. // 未找到指定跳转页面
  49. // mark: 跳转404页
  50. if (!nextRoute) {
  51. console.log(`%cROUTES_MAP<${ROUTES_MAP}>`)
  52. console.log(`%c跳转路径参数错误<${page || 'EMPTY'}>`, 'color:red;background:yellow');
  53. return;
  54. }
  55. // 页面登录拦截
  56. if (nextRoute.meta?.auth && !$store('user').isLogin) {
  57. showAuthModal();
  58. return;
  59. }
  60. url = page;
  61. if (!isEmpty(query)) {
  62. url += `?${query}`;
  63. }
  64. // 跳转底部导航
  65. if (TABBAR.includes(page)) {
  66. uni.switchTab({
  67. url,
  68. });
  69. return;
  70. }
  71. // 使用redirect跳转
  72. if (options.redirect) {
  73. uni.redirectTo({
  74. url,
  75. });
  76. return;
  77. }
  78. uni.navigateTo({
  79. url,
  80. });
  81. };
  82. // 限流 防止重复点击跳转
  83. function go(...args) {
  84. throttle(() => {
  85. _go(...args);
  86. });
  87. }
  88. function paramsToQuery(params) {
  89. if (isEmpty(params)) {
  90. return '';
  91. }
  92. // return new URLSearchParams(Object.entries(params)).toString();
  93. let query = [];
  94. for (let key in params) {
  95. query.push(key + '=' + params[key]);
  96. }
  97. return query.join('&');
  98. }
  99. function back() {
  100. // #ifdef H5
  101. history.back();
  102. // #endif
  103. // #ifndef H5
  104. uni.navigateBack();
  105. // #endif
  106. }
  107. function redirect(path, params = {}) {
  108. go(path, params, {
  109. redirect: true,
  110. });
  111. }
  112. // 检测是否有浏览器历史
  113. function hasHistory() {
  114. // #ifndef H5
  115. const pages = getCurrentPages();
  116. if (pages.length > 1) {
  117. return true;
  118. }
  119. return false;
  120. // #endif
  121. // #ifdef H5
  122. return !!history.state.back;
  123. // #endif
  124. }
  125. function getCurrentRoute(field = '') {
  126. let currentPage = getCurrentPage();
  127. // #ifdef MP
  128. currentPage.$page['route'] = currentPage.route;
  129. currentPage.$page['options'] = currentPage.options;
  130. // #endif
  131. if (field !== '') {
  132. return currentPage.$page[field];
  133. } else {
  134. return currentPage.$page;
  135. }
  136. }
  137. function getCurrentPage() {
  138. let pages = getCurrentPages();
  139. return pages[pages.length - 1];
  140. }
  141. function handleAction(path) {
  142. const action = path.split(':');
  143. switch (action[1]) {
  144. case 'showShareModal':
  145. showShareModal();
  146. break;
  147. }
  148. }
  149. function error(errCode, errMsg = '') {
  150. redirect('/pages/public/error', {
  151. errCode,
  152. errMsg,
  153. });
  154. }
  155. export default {
  156. go,
  157. back,
  158. hasHistory,
  159. redirect,
  160. getCurrentPage,
  161. getCurrentRoute,
  162. error,
  163. };