config.d.ts 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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. siderHidden: boolean;
  17. canDrag: boolean;
  18. show: boolean;
  19. hidden: boolean;
  20. split: boolean;
  21. menuWidth: number;
  22. mode: MenuModeEnum;
  23. type: MenuTypeEnum;
  24. theme: ThemeEnum;
  25. topMenuAlign: 'start' | 'center' | 'end';
  26. trigger: TriggerEnum;
  27. accordion: boolean;
  28. closeMixSidebarOnChange: boolean;
  29. collapsedShowTitle: boolean;
  30. mixSideTrigger: MixSidebarTriggerEnum;
  31. mixSideFixed: boolean;
  32. }
  33. export interface MultiTabsSetting {
  34. cache: boolean;
  35. show: boolean;
  36. showQuick: boolean;
  37. canDrag: boolean;
  38. showRedo: boolean;
  39. showFold: boolean;
  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. // Upload url
  135. uploadUrl?: string;
  136. // Service interface url prefix
  137. urlPrefix?: string;
  138. // Project abbreviation
  139. shortName: string;
  140. }
  141. export interface GlobEnvConfig {
  142. // Site title
  143. VITE_GLOB_APP_TITLE: string;
  144. // Service interface url
  145. VITE_GLOB_API_URL: string;
  146. // Service interface url prefix
  147. VITE_GLOB_API_URL_PREFIX?: string;
  148. // Project abbreviation
  149. VITE_GLOB_APP_SHORT_NAME: string;
  150. // Upload url
  151. VITE_GLOB_UPLOAD_URL?: string;
  152. }