app.tsx 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. import React,{useEffect,useState} from 'react';
  2. import { Settings as LayoutSettings, PageLoading } from '@ant-design/pro-layout';
  3. import {message, notification} from 'antd';
  4. import qs from 'qs';
  5. import { history, RequestConfig, RunTimeLayoutConfig, ErrorShowType } from 'umi';
  6. import RightContent from '@/components/RightContent';
  7. import Footer from '@/components/Footer';
  8. import { ResponseError } from 'umi-request';
  9. import {
  10. queryCurrent,
  11. selectNavList
  12. } from './services/user';
  13. import defaultSettings from '../config/defaultSettings';
  14. import DataTable from "@/components/common/DataTable";
  15. /**
  16. * 获取用户信息比较慢的时候会展示一个 loading
  17. */
  18. export const initialStateConfig = {
  19. loading: <PageLoading />,
  20. };
  21. export async function getInitialState(): Promise<{
  22. settings?: LayoutSettings;
  23. currentUser?: API.CurrentUser;
  24. fetchUserInfo?: () => Promise<API.CurrentUser | undefined>;
  25. fetchNavList?: () => Promise<API.CurrentUser | undefined>;
  26. }> {
  27. const fetchUserInfo = async () => {
  28. try {
  29. const currentUser = await queryCurrent();
  30. currentUser.data.token = currentUser.token;
  31. return currentUser.data;
  32. } catch (error) {
  33. history.push('/user/login');
  34. }
  35. return undefined;
  36. };
  37. const fetchNavList = async () => {
  38. try {
  39. const currentNavList = await selectNavList();
  40. return currentNavList.data;
  41. } catch (error) {
  42. history.push('/user/login');
  43. }
  44. return undefined;
  45. };
  46. // 如果是登录页面,不执行
  47. if (history.location.pathname !== '/user/login') {
  48. const currentUser = await fetchUserInfo();
  49. const currentNavList = await fetchNavList();
  50. return {
  51. fetchUserInfo,
  52. fetchNavList,
  53. currentUser,
  54. currentNavList,
  55. settings: defaultSettings,
  56. };
  57. }
  58. return {
  59. fetchUserInfo,
  60. fetchNavList,
  61. settings: defaultSettings,
  62. };
  63. }
  64. export const layout: RunTimeLayoutConfig = ({ initialState }) => {
  65. return {
  66. rightContentRender: () => <RightContent />,
  67. disableContentMargin: false,
  68. footerRender: () => <Footer />,
  69. onPageChange: () => {
  70. const { location } = history;
  71. // 如果没有登录,重定向到 login
  72. if (!initialState?.currentUser && location.pathname !== '/user/login') {
  73. history.push('/user/login');
  74. }
  75. },
  76. menuDataRender: (menuData)=>{
  77. console.debug(initialState)
  78. if(initialState.currentNavList && initialState.currentNavList.length>0){
  79. return [{
  80. name: 'list.table-list',
  81. icon: 'table',
  82. path: '/order',
  83. component: './Order/Billing',
  84. },{
  85. path: '/welcome',
  86. name: 'welcome',
  87. icon: 'smile',
  88. hideInMenu: true,
  89. component: './Welcome',
  90. }]
  91. }
  92. return [];
  93. },
  94. menuHeaderRender: undefined,
  95. // 自定义 403 页面
  96. // unAccessible: <div>unAccessible</div>,
  97. ...initialState?.settings,
  98. };
  99. };
  100. /**
  101. * 异常处理程序
  102. * {
  103. * "name":"BizError", //name 为BizError是因为success为false
  104. * "data":{
  105. * "error":[{"field":"","message":"账号或密码不匹配。"}],
  106. * "token":"90c77e0f-cd3b-4555-89bf-21b69dc8b454"
  107. * },
  108. * "info":{
  109. * "success":false,
  110. * "data":null,
  111. * "errorCode":"",
  112. * "errorMessage":"账号或密码不匹配。",
  113. * "showType":2,
  114. * "traceId":"-1",
  115. * "host":"-1"
  116. * }
  117. * }
  118. */
  119. const errorHandler = (error: ResponseError) => {
  120. const { info } = error;
  121. if (error.name === 'BizError') {
  122. if(info.errorCode === '403'){
  123. message.warning('登录超时请重新登录');
  124. history.push('/user/login');
  125. }else{
  126. message.warning(info.errorMessage);
  127. }
  128. }
  129. if (!info) {
  130. notification.error({
  131. description: '您的网络发生异常,无法连接服务器',
  132. message: '网络异常',
  133. });
  134. }
  135. throw info;
  136. };
  137. export const request: RequestConfig = {
  138. errorHandler,
  139. errorConfig: {
  140. adaptor: (resData,ctx)=>{
  141. return {
  142. success: resData.error && resData.error.length === 0,
  143. data: resData.error || null,
  144. errorCode: (resData.error && resData.error.length > 0) ? resData.error[0].field : 0,
  145. errorMessage: (resData.error && resData.error.length > 0) ? resData.error[0].message : '',
  146. showType: (resData.error && resData.error.length > 0) ? (resData.error[0].field === '403' ? ErrorShowType.REDIRECT : ErrorShowType.ERROR_MESSAGE) : 0,
  147. traceId: ctx.res ? ctx.res.token : '',
  148. host: ctx.req ? ctx.req.originUrl : '-1',
  149. };
  150. },
  151. errorPage: '/user/login', // showType为9是跳这个地址
  152. },
  153. requestInterceptors: [
  154. (url, config) => {
  155. if (config.method === 'post') {
  156. config.data = qs.stringify({
  157. ...(config.data || {}),
  158. });
  159. }
  160. config.headers = {
  161. 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8;',
  162. 'X-Requested-With' : 'XMLHttpRequest',
  163. }
  164. return {
  165. url: `${url}`,
  166. options: { ...config, interceptors: true },
  167. };
  168. },
  169. ],
  170. middlewares: [
  171. async function middlewareA(ctx, next) {
  172. await next();
  173. }
  174. ],
  175. responseInterceptors: [
  176. async (config) => {
  177. return config;
  178. }
  179. ]
  180. };