config.d.ts 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. import { MenuTypeEnum, MenuModeEnum, TriggerEnum, MixSidebarTriggerEnum } from '/@/enums/menuEnum';
  2. import {
  3. ContentEnum,
  4. PermissionModeEnum,
  5. ThemeEnum,
  6. RouterTransitionEnum,
  7. SettingButtonPositionEnum,
  8. SessionTimeoutProcessingEnum,
  9. } from '/@/enums/appEnum';
  10. import { CacheTypeEnum } from '/@/enums/cacheEnum';
  11. export type LocaleType = 'zh_CN' | 'en' | 'ru' | 'ja' | 'ko';
  12. export interface MenuSetting {
  13. bgColor: string;
  14. fixed: boolean;
  15. collapsed: boolean;
  16. canDrag: boolean;
  17. show: boolean;
  18. hidden: boolean;
  19. split: boolean;
  20. menuWidth: number;
  21. mode: MenuModeEnum;
  22. type: MenuTypeEnum;
  23. theme: ThemeEnum;
  24. topMenuAlign: 'start' | 'center' | 'end';
  25. trigger: TriggerEnum;
  26. accordion: boolean;
  27. closeMixSidebarOnChange: boolean;
  28. collapsedShowTitle: boolean;
  29. mixSideTrigger: MixSidebarTriggerEnum;
  30. mixSideFixed: boolean;
  31. }
  32. export interface MultiTabsSetting {
  33. cache: boolean;
  34. show: boolean;
  35. showQuick: boolean;
  36. canDrag: boolean;
  37. showRedo: boolean;
  38. showFold: boolean;
  39. theme: string;
  40. }
  41. export interface HeaderSetting {
  42. bgColor: string;
  43. fixed: boolean;
  44. show: boolean;
  45. theme: ThemeEnum;
  46. // Turn on full screen
  47. showFullScreen: boolean;
  48. // Whether to show the lock screen
  49. useLockPage: boolean;
  50. // Show document button
  51. showDoc: boolean;
  52. // Show message center button
  53. showNotice: boolean;
  54. showSearch: boolean;
  55. }
  56. export interface LocaleSetting {
  57. showPicker: boolean;
  58. // Current language
  59. locale: LocaleType;
  60. // default language
  61. fallback: LocaleType;
  62. // available Locales
  63. availableLocales: LocaleType[];
  64. }
  65. export interface TransitionSetting {
  66. // Whether to open the page switching animation
  67. enable: boolean;
  68. // Route basic switching animation
  69. basicTransition: RouterTransitionEnum;
  70. // Whether to open page switching loading
  71. openPageLoading: boolean;
  72. // Whether to open the top progress bar
  73. openNProgress: boolean;
  74. }
  75. export interface ProjectConfig {
  76. // Storage location of permission related information
  77. permissionCacheType: CacheTypeEnum;
  78. // Whether to show the configuration button
  79. showSettingButton: boolean;
  80. // Whether to show the theme switch button
  81. showDarkModeToggle: boolean;
  82. // Configure where the button is displayed
  83. settingButtonPosition: SettingButtonPositionEnum;
  84. // Permission mode
  85. permissionMode: PermissionModeEnum;
  86. // Session timeout processing
  87. sessionTimeoutProcessing: SessionTimeoutProcessingEnum;
  88. // Website gray mode, open for possible mourning dates
  89. grayMode: boolean;
  90. // Whether to turn on the color weak mode
  91. colorWeak: boolean;
  92. // Theme color
  93. themeColor: string;
  94. // The main interface is displayed in full screen, the menu is not displayed, and the top
  95. fullContent: boolean;
  96. // content width
  97. contentMode: ContentEnum;
  98. // Whether to display the logo
  99. showLogo: boolean;
  100. // Whether to show the global footer
  101. showFooter: boolean;
  102. // menuType: MenuTypeEnum;
  103. headerSetting: HeaderSetting;
  104. // menuSetting
  105. menuSetting: MenuSetting;
  106. // Multi-tab settings
  107. multiTabsSetting: MultiTabsSetting;
  108. // Animation configuration
  109. transitionSetting: TransitionSetting;
  110. // pageLayout whether to enable keep-alive
  111. openKeepAlive: boolean;
  112. // Lock screen time
  113. lockTime: number;
  114. // Show breadcrumbs
  115. showBreadCrumb: boolean;
  116. // Show breadcrumb icon
  117. showBreadCrumbIcon: boolean;
  118. // Use error-handler-plugin
  119. useErrorHandle: boolean;
  120. // Whether to open back to top
  121. useOpenBackTop: boolean;
  122. // Is it possible to embed iframe pages
  123. canEmbedIFramePage: boolean;
  124. // Whether to delete unclosed messages and notify when switching the interface
  125. closeMessageOnSwitch: boolean;
  126. // Whether to cancel the http request that has been sent but not responded when switching the interface.
  127. removeAllHttpPending: boolean;
  128. }
  129. export interface GlobConfig {
  130. // Site title
  131. title: string;
  132. // Service interface url
  133. apiUrl: string;
  134. domainUrl: string;
  135. // Upload url (作废)
  136. uploadUrl?: string;
  137. openSso?: string;
  138. openQianKun?: string;
  139. casBaseUrl?: string;
  140. // onlineview url
  141. viewUrl?: string;
  142. // Service interface url prefix
  143. urlPrefix?: string;
  144. // Project abbreviation
  145. shortName: string;
  146. }
  147. export interface GlobEnvConfig {
  148. // Site title
  149. VITE_GLOB_APP_TITLE: string;
  150. // Service interface url
  151. VITE_GLOB_API_URL: string;
  152. VITE_USE_MOCK: string;
  153. // Service interface url prefix
  154. VITE_GLOB_API_URL_PREFIX?: string;
  155. // Project abbreviation
  156. VITE_GLOB_APP_SHORT_NAME: string;
  157. //是否开启单点登录
  158. VITE_GLOB_APP_OPEN_SSO: string;
  159. //是否开启微应用模式
  160. VITE_GLOB_APP_OPEN_QIANKUN: string;
  161. //单点服务端地址
  162. VITE_GLOB_APP_CAS_BASE_URL: string;
  163. VITE_GLOB_DOMAIN_URL: string;
  164. // Upload url
  165. VITE_GLOB_UPLOAD_URL?: string;
  166. // view url
  167. VITE_GLOB_ONLINE_VIEW_URL?: string;
  168. }