config.d.ts 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. }
  40. export interface HeaderSetting {
  41. bgColor: string;
  42. fixed: boolean;
  43. show: boolean;
  44. theme: ThemeEnum;
  45. // Turn on full screen
  46. showFullScreen: boolean;
  47. // Whether to show the lock screen
  48. useLockPage: boolean;
  49. // Show document button
  50. showDoc: boolean;
  51. // Show message center button
  52. showNotice: boolean;
  53. showSearch: boolean;
  54. }
  55. export interface LocaleSetting {
  56. showPicker: boolean;
  57. // Current language
  58. locale: LocaleType;
  59. // default language
  60. fallback: LocaleType;
  61. // available Locales
  62. availableLocales: LocaleType[];
  63. }
  64. export interface TransitionSetting {
  65. // Whether to open the page switching animation
  66. enable: boolean;
  67. // Route basic switching animation
  68. basicTransition: RouterTransitionEnum;
  69. // Whether to open page switching loading
  70. openPageLoading: boolean;
  71. // Whether to open the top progress bar
  72. openNProgress: boolean;
  73. }
  74. export interface ProjectConfig {
  75. version?: string;
  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. title1: string;
  133. // Service interface url
  134. apiUrl: string;
  135. // Upload url
  136. uploadUrl?: string;
  137. // Service interface url prefix
  138. urlPrefix?: string;
  139. // Project abbreviation
  140. shortName: string;
  141. }
  142. export interface GlobEnvConfig {
  143. // Site title
  144. VITE_GLOB_APP_TITLE: string;
  145. // Service interface url
  146. VITE_GLOB_API_URL: string;
  147. // Service interface url prefix
  148. VITE_GLOB_API_URL_PREFIX?: string;
  149. // Project abbreviation
  150. VITE_GLOB_APP_SHORT_NAME: string;
  151. // Upload url
  152. VITE_GLOB_UPLOAD_URL?: string;
  153. }