global.d.ts 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. import type {
  2. VNode,
  3. FunctionalComponent,
  4. PropType as VuePropType,
  5. ComponentPublicInstance
  6. } from "vue";
  7. import type { IconifyIcon } from "@iconify/vue";
  8. import type { TableColumns } from "@pureadmin/table";
  9. import { type RouteComponent, type RouteLocationNormalized } from "vue-router";
  10. /**
  11. * 全局类型声明,无需引入直接在 `.vue` 、`.ts` 、`.tsx` 文件使用即可获得类型提示
  12. */
  13. declare global {
  14. /**
  15. * 平台的名称、版本、依赖、最后构建时间的类型提示
  16. */
  17. const __APP_INFO__: {
  18. pkg: {
  19. name: string;
  20. version: string;
  21. dependencies: Recordable<string>;
  22. devDependencies: Recordable<string>;
  23. };
  24. lastBuildTime: string;
  25. };
  26. /**
  27. * Window 的类型提示
  28. */
  29. interface Window {
  30. // Global vue app instance
  31. __APP__: App<Element>;
  32. webkitCancelAnimationFrame: (handle: number) => void;
  33. mozCancelAnimationFrame: (handle: number) => void;
  34. oCancelAnimationFrame: (handle: number) => void;
  35. msCancelAnimationFrame: (handle: number) => void;
  36. webkitRequestAnimationFrame: (callback: FrameRequestCallback) => number;
  37. mozRequestAnimationFrame: (callback: FrameRequestCallback) => number;
  38. oRequestAnimationFrame: (callback: FrameRequestCallback) => number;
  39. msRequestAnimationFrame: (callback: FrameRequestCallback) => number;
  40. }
  41. /**
  42. * 打包压缩格式的类型声明
  43. */
  44. type ViteCompression =
  45. | "none"
  46. | "gzip"
  47. | "brotli"
  48. | "both"
  49. | "gzip-clear"
  50. | "brotli-clear"
  51. | "both-clear";
  52. /**
  53. * 全局自定义环境变量的类型声明
  54. * @see {@link https://yiming_chang.gitee.io/pure-admin-doc/pages/config/#%E5%85%B7%E4%BD%93%E9%85%8D%E7%BD%AE}
  55. */
  56. interface ViteEnv {
  57. VITE_PORT: number;
  58. VITE_PUBLIC_PATH: string;
  59. VITE_ROUTER_HISTORY: string;
  60. VITE_CDN: boolean;
  61. VITE_COMPRESSION: ViteCompression;
  62. }
  63. /**
  64. * 继承 `@pureadmin/table` 的 `TableColumns` ,方便全局直接调用
  65. */
  66. interface TableColumnList extends Array<TableColumns> {}
  67. /**
  68. * 对应 `public/serverConfig.json` 文件的类型声明
  69. * @see {@link https://yiming_chang.gitee.io/pure-admin-doc/pages/config/#serverconfig-json}
  70. */
  71. interface ServerConfigs {
  72. Version?: string;
  73. Title?: string;
  74. FixedHeader?: boolean;
  75. HiddenSideBar?: boolean;
  76. MultiTagsCache?: boolean;
  77. KeepAlive?: boolean;
  78. Locale?: string;
  79. Layout?: string;
  80. Theme?: string;
  81. DarkMode?: boolean;
  82. Grey?: boolean;
  83. Weak?: boolean;
  84. HideTabs?: boolean;
  85. SidebarStatus?: boolean;
  86. EpThemeColor?: string;
  87. ShowLogo?: boolean;
  88. ShowModel?: string;
  89. MenuArrowIconNoTransition?: boolean;
  90. CachingAsyncRoutes?: boolean;
  91. TooltipEffect?: Effect;
  92. MapConfigure?: {
  93. amapKey?: string;
  94. options: {
  95. resizeEnable?: boolean;
  96. center?: number[];
  97. zoom?: number;
  98. };
  99. };
  100. }
  101. /**
  102. * 与 `ServerConfigs` 类型不同,这里是缓存到浏览器本地存储的类型声明
  103. * @see {@link https://yiming_chang.gitee.io/pure-admin-doc/pages/config/#serverconfig-json}
  104. */
  105. interface StorageConfigs {
  106. version?: string;
  107. title?: string;
  108. fixedHeader?: boolean;
  109. hiddenSideBar?: boolean;
  110. multiTagsCache?: boolean;
  111. keepAlive?: boolean;
  112. locale?: string;
  113. layout?: string;
  114. theme?: string;
  115. darkMode?: boolean;
  116. grey?: boolean;
  117. weak?: boolean;
  118. hideTabs?: boolean;
  119. sidebarStatus?: boolean;
  120. epThemeColor?: string;
  121. showLogo?: boolean;
  122. showModel?: string;
  123. mapConfigure?: {
  124. amapKey?: string;
  125. options: {
  126. resizeEnable?: boolean;
  127. center?: number[];
  128. zoom?: number;
  129. };
  130. };
  131. username?: string;
  132. }
  133. /**
  134. * `responsive-storage` 本地响应式 `storage` 的类型声明
  135. */
  136. interface ResponsiveStorage {
  137. locale: {
  138. locale?: string;
  139. };
  140. layout: {
  141. layout?: string;
  142. theme?: string;
  143. darkMode?: boolean;
  144. sidebarStatus?: boolean;
  145. epThemeColor?: string;
  146. };
  147. configure: {
  148. grey?: boolean;
  149. weak?: boolean;
  150. hideTabs?: boolean;
  151. showLogo?: boolean;
  152. showModel?: string;
  153. multiTagsCache?: boolean;
  154. };
  155. tags?: Array<any>;
  156. }
  157. /**
  158. * `src/router` 文件夹里的类型声明
  159. */
  160. interface toRouteType extends RouteLocationNormalized {
  161. meta: {
  162. roles: Array<string>;
  163. keepAlive?: boolean;
  164. dynamicLevel?: string;
  165. };
  166. }
  167. /**
  168. * @description 完整子路由配置表
  169. */
  170. interface RouteChildrenConfigsTable {
  171. /** 子路由地址 `必填` */
  172. path: string;
  173. /** 路由名字(对应不要重复,和当前组件的`name`保持一致)`必填` */
  174. name?: string;
  175. /** 路由重定向 `可选` */
  176. redirect?: string;
  177. /** 按需加载组件 `可选` */
  178. component?: RouteComponent;
  179. meta?: {
  180. /** 菜单名称(兼容国际化、非国际化,如何用国际化的写法就必须在根目录的`locales`文件夹下对应添加) `必填` */
  181. title: string;
  182. /** 菜单图标 `可选` */
  183. icon?: string | FunctionalComponent | IconifyIcon;
  184. /** 菜单名称右侧的额外图标,支持`fontawesome`、`iconfont`、`element-plus-icon` `可选` */
  185. extraIcon?: {
  186. svg?: boolean;
  187. name?: string;
  188. };
  189. /** 是否在菜单中显示(默认`true`)`可选` */
  190. showLink?: boolean;
  191. /** 是否显示父级菜单 `可选` */
  192. showParent?: boolean;
  193. /** 页面级别权限设置 `可选` */
  194. roles?: Array<string>;
  195. /** 按钮级别权限设置 `可选` */
  196. auths?: Array<string>;
  197. /** 路由组件缓存(开启 `true`、关闭 `false`)`可选` */
  198. keepAlive?: boolean;
  199. /** 内嵌的`iframe`链接 `可选` */
  200. frameSrc?: string;
  201. /** `iframe`页是否开启首次加载动画(默认`true`)`可选` */
  202. frameLoading?: boolean;
  203. /** 页面加载动画(有两种形式,一种直接采用vue内置的`transitions`动画,另一种是使用`animate.css`写进、离场动画)`可选` */
  204. transition?: {
  205. /**
  206. * @description 当前路由动画效果
  207. * @see {@link https://next.router.vuejs.org/guide/advanced/transitions.html#transitions}
  208. * @see animate.css {@link https://animate.style}
  209. */
  210. name?: string;
  211. /** 进场动画 */
  212. enterTransition?: string;
  213. /** 离场动画 */
  214. leaveTransition?: string;
  215. };
  216. // 是否不添加信息到标签页,(默认`false`)
  217. hiddenTag?: boolean;
  218. /** 动态路由可打开的最大数量 `可选` */
  219. dynamicLevel?: number;
  220. };
  221. /** 子路由配置项 */
  222. children?: Array<RouteChildrenConfigsTable>;
  223. }
  224. /**
  225. * @description 整体路由配置表(包括完整子路由)
  226. */
  227. interface RouteConfigsTable {
  228. /** 路由地址 `必填` */
  229. path: string;
  230. /** 路由名字(保持唯一)`可选` */
  231. name?: string;
  232. /** `Layout`组件 `可选` */
  233. component?: RouteComponent;
  234. /** 路由重定向 `可选` */
  235. redirect?: string;
  236. meta?: {
  237. /** 菜单名称(兼容国际化、非国际化,如何用国际化的写法就必须在根目录的`locales`文件夹下对应添加)`必填` */
  238. title: string;
  239. /** 菜单图标 `可选` */
  240. icon?: string | FunctionalComponent | IconifyIcon;
  241. /** 是否在菜单中显示(默认`true`)`可选` */
  242. showLink?: boolean;
  243. /** 菜单升序排序,值越高排的越后(只针对顶级路由)`可选` */
  244. rank?: number;
  245. };
  246. /** 子路由配置项 */
  247. children?: Array<RouteChildrenConfigsTable>;
  248. }
  249. /**
  250. * 平台里所有组件实例都能访问到的全局属性对象的类型声明
  251. */
  252. interface GlobalPropertiesApi {
  253. $echarts: ECharts;
  254. $storage: ResponsiveStorage;
  255. $config: ServerConfigs;
  256. }
  257. }