diff --git a/packages/fes-builder-vite/src/registerType.js b/packages/fes-builder-vite/src/registerType.js index d9dbaca4..a771cb04 100644 --- a/packages/fes-builder-vite/src/registerType.js +++ b/packages/fes-builder-vite/src/registerType.js @@ -3,6 +3,5 @@ import { name } from '../package.json'; export default function (api) { api.addConfigType(() => ({ source: name, - build: ['ViteBuildConfig'], })); } diff --git a/packages/fes-builder-vite/types.d.ts b/packages/fes-builder-vite/types.d.ts index 4008e2b3..e1fcc185 100644 --- a/packages/fes-builder-vite/types.d.ts +++ b/packages/fes-builder-vite/types.d.ts @@ -4,11 +4,12 @@ import {Options as PolyfillOptions } from '@vitejs/plugin-legacy' import createPlugin from '@vitejs/plugin-vue-jsx' import {createHtmlPlugin} from 'vite-plugin-html' - -export interface ViteBuildConfig { - viteOption?: UserConfig; - viteVuePlugin?: Options; - viteVueJsx?: Parameters[0]; - viteLegacy?: PolyfillOptions; - viteHtml?: Parameters[0] -} +declare module "@fesjs/fes" { + interface PluginBuildConfig { + viteOption?: UserConfig; + viteVuePlugin?: Options; + viteVueJsx?: Parameters[0]; + viteLegacy?: PolyfillOptions; + viteHtml?: Parameters[0] + } +} \ No newline at end of file diff --git a/packages/fes-builder-webpack/src/plugins/registerType.js b/packages/fes-builder-webpack/src/plugins/registerType.js index 2e8c1139..265efede 100644 --- a/packages/fes-builder-webpack/src/plugins/registerType.js +++ b/packages/fes-builder-webpack/src/plugins/registerType.js @@ -3,6 +3,5 @@ import { name } from '../../package.json'; export default function (api) { api.addConfigType(() => ({ source: name, - build: ['WebpackBuildConfig'], })); } diff --git a/packages/fes-builder-webpack/types.d.ts b/packages/fes-builder-webpack/types.d.ts index bdd3b1c2..fb96f4bb 100644 --- a/packages/fes-builder-webpack/types.d.ts +++ b/packages/fes-builder-webpack/types.d.ts @@ -7,51 +7,52 @@ interface CopyFileType { to: string; } -export interface WebpackBuildConfig { - analyze?: { - analyzerMode?: 'server' | 'static' | 'disabled'; - analyzerHost?: string; - analyzerPort?: number | 'auto'; - openAnalyzer?: boolean; - generateStatsFile?: boolean; - statsFilename?: string; - logLevel?: 'info' | 'warn' | 'error' | 'silent'; - defaultSizes?: 'stat' | 'parsed' | 'gzip' - }; - chainWebpack?: (memo: Config, args: {env: string, webpack: typeof webpack}) => void; - copy?: CopyFileType | CopyFileType[]; - cssLoader?: { - url?: boolean | ((url: string, resourcePath: string) => boolean); - import?: boolean | ({ filter: (url: string, media: string, resourcePath: string) => boolean }); - modules?: boolean | string | object; - sourceMap?: boolean; - importLoaders?: number; - onlyLocals?: boolean; - esModule?: boolean; - localsConvention?: 'asIs' | 'camelCase' | 'camelCaseOnly' | 'dashes' | 'dashesOnly'; - }; - devServer?: { - port?: number; - host?: string; - https?: boolean; - headers?: object; - [key: string]: any; - }; - devtool?: string; - exportStatic?: { - htmlSuffix?: boolean; - dynamicRoot?: boolean; - }; - externals?: object | string | Function; - extraBabelPlugins?: []; - extraBabelPresets?: []; - extraPostCSSPlugins?: []; - html?: HtmlWebpackPlugin.Options; - lessLoader?: Record; - nodeModulesTransform?: { - exclude: string[] - }; - postcssLoader?: Record; - vueLoader?: object; - -} \ No newline at end of file +declare module "@fesjs/fes" { + interface PluginBuildConfig { + analyze?: { + analyzerMode?: 'server' | 'static' | 'disabled'; + analyzerHost?: string; + analyzerPort?: number | 'auto'; + openAnalyzer?: boolean; + generateStatsFile?: boolean; + statsFilename?: string; + logLevel?: 'info' | 'warn' | 'error' | 'silent'; + defaultSizes?: 'stat' | 'parsed' | 'gzip' + }; + chainWebpack?: (memo: Config, args: {env: string, webpack: typeof webpack}) => void; + copy?: CopyFileType | CopyFileType[]; + cssLoader?: { + url?: boolean | ((url: string, resourcePath: string) => boolean); + import?: boolean | ({ filter: (url: string, media: string, resourcePath: string) => boolean }); + modules?: boolean | string | object; + sourceMap?: boolean; + importLoaders?: number; + onlyLocals?: boolean; + esModule?: boolean; + localsConvention?: 'asIs' | 'camelCase' | 'camelCaseOnly' | 'dashes' | 'dashesOnly'; + }; + devServer?: { + port?: number; + host?: string; + https?: boolean; + headers?: object; + [key: string]: any; + }; + devtool?: string; + exportStatic?: { + htmlSuffix?: boolean; + dynamicRoot?: boolean; + }; + externals?: object | string | Function; + extraBabelPlugins?: []; + extraBabelPresets?: []; + extraPostCSSPlugins?: []; + html?: HtmlWebpackPlugin.Options; + lessLoader?: Record; + nodeModulesTransform?: { + exclude: string[] + }; + postcssLoader?: Record; + vueLoader?: object; + } +} diff --git a/packages/fes-plugin-access/src/index.js b/packages/fes-plugin-access/src/index.js index ea01cd50..da94e032 100644 --- a/packages/fes-plugin-access/src/index.js +++ b/packages/fes-plugin-access/src/index.js @@ -56,7 +56,5 @@ export default (api) => { api.addConfigType(() => ({ source: name, - runtime: ['AccessRuntimeConfig'], - build: ['AccessBuildConfig'], })); }; diff --git a/packages/fes-plugin-access/types.d.ts b/packages/fes-plugin-access/types.d.ts index 9caa7d8a..d10c5c98 100644 --- a/packages/fes-plugin-access/types.d.ts +++ b/packages/fes-plugin-access/types.d.ts @@ -1,14 +1,29 @@ import { Router, NavigationGuard } from 'vue-router'; +import { Ref } from 'vue'; -export interface AccessBuildConfig { - access: { - rules: Record; - }; -} +declare module '@fesjs/fes' { + interface PluginBuildConfig { + access?: + | { + rules: Record; + } + | false; + } -export interface AccessRuntimeConfig { - access: { - noFoundHandler: (param: { router: Router } & NavigationGuard) => void; - unAccessHandler: (param: { router: Router } & NavigationGuard) => void; + interface PluginRuntimeConfig { + access?: { + noFoundHandler: (param: { router: Router } & NavigationGuard) => void; + unAccessHandler: (param: { router: Router } & NavigationGuard) => void; + }; + } + + export function access(): { + hasAccess(accessId: string | number): Promise; + isDataReady(): boolean; + setRole(roleId: string | Promise): void; + setAccess(accessIds: Array | Promise>): void; + getAccess(): string[]; }; + + export function useAccess(accessId: Array): Ref; } diff --git a/packages/fes-plugin-enums/src/index.js b/packages/fes-plugin-enums/src/index.js index c63ae77f..1c0ecb6e 100644 --- a/packages/fes-plugin-enums/src/index.js +++ b/packages/fes-plugin-enums/src/index.js @@ -46,6 +46,5 @@ export default (api) => { api.addConfigType(() => ({ source: name, - build: ['EnumsBuildConfig'], })); }; diff --git a/packages/fes-plugin-enums/types.d.ts b/packages/fes-plugin-enums/types.d.ts index 338b119a..d726c0b5 100644 --- a/packages/fes-plugin-enums/types.d.ts +++ b/packages/fes-plugin-enums/types.d.ts @@ -1,8 +1,25 @@ +import '@fesjs/fes'; -export interface EnumsBuildConfig { - enums: { - [key: string]: [string | number, string | number][] - } +interface EnumExtend { + key: string; + dir: string; + transfer(data: T): T; } +interface EnumApi { + get(name: string, key?: string, extend?: EnumExtend): any; + push(name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }): any; + remove(name: string): void; + concat(name: string, _enum: [] | object, option?: { keyName: string; valueName: string; before: boolean; extend: EnumExtend }): any; + convert(name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }): any; +} +declare module '@fesjs/fes' { + interface PluginBuildConfig { + enums?: { + [key: string]: [string | number, string | number][]; + } | false; + } + + export const enums: EnumApi; +} diff --git a/packages/fes-plugin-icon/package.json b/packages/fes-plugin-icon/package.json index 4100e307..27c9a6da 100644 --- a/packages/fes-plugin-icon/package.json +++ b/packages/fes-plugin-icon/package.json @@ -4,7 +4,8 @@ "description": "@fesjs/plugin-icon", "main": "lib/index.js", "files": [ - "lib" + "lib", + "types.d.ts" ], "scripts": { "test": "echo \"Error: no test specified\" && exit 1" @@ -31,5 +32,6 @@ }, "dependencies": { "svgo": "^2.3.1" - } + }, + "typings": "./types.d.ts" } diff --git a/packages/fes-plugin-icon/types.d.ts b/packages/fes-plugin-icon/types.d.ts new file mode 100644 index 00000000..f911eb0c --- /dev/null +++ b/packages/fes-plugin-icon/types.d.ts @@ -0,0 +1,7 @@ +import '@fesjs/fes'; + +declare module '@fesjs/fes' { + interface PluginBuildConfig { + icon?: {} | false; + } +} diff --git a/packages/fes-plugin-layout/src/index.js b/packages/fes-plugin-layout/src/index.js index 09b5935c..ae2770a3 100644 --- a/packages/fes-plugin-layout/src/index.js +++ b/packages/fes-plugin-layout/src/index.js @@ -91,7 +91,5 @@ export default (api) => { api.addConfigType(() => ({ source: name, - runtime: ['LayoutRuntimeConfig'], - build: ['LayoutBuildConfig'], })); }; diff --git a/packages/fes-plugin-layout/types.d.ts b/packages/fes-plugin-layout/types.d.ts index e851c2cf..472d16e9 100644 --- a/packages/fes-plugin-layout/types.d.ts +++ b/packages/fes-plugin-layout/types.d.ts @@ -1,4 +1,4 @@ -import {Component, VNode, Ref } from 'vue'; +import { Component, VNode, Ref } from 'vue'; import { Router, NavigationGuard } from 'vue-router'; interface Menu { @@ -7,50 +7,53 @@ interface Menu { match: string[]; title: string; icon: string | Component; - children?: Menu[] + children?: Menu[]; } -export interface LayoutBuildConfig { - layout: { - footer: string; - theme: 'dark' | 'light'; - navigation: 'side' | 'top' | 'mixin' | 'left-right'; - title: string; - isFixedHeader: boolean; - isFixedSidebar: boolean; - logo: string; - multiTabs: boolean; - sideWidth: number; - menus: Menu[]; - menuProps: { - expandedKeys: string[]; - defaultExpandAll: boolean; - accordion: boolean; +declare module '@fesjs/fes' { + interface PluginBuildConfig { + layout?: + | { + footer: string; + theme: 'dark' | 'light'; + navigation: 'side' | 'top' | 'mixin' | 'left-right'; + title: string; + isFixedHeader: boolean; + isFixedSidebar: boolean; + logo: string; + multiTabs: boolean; + sideWidth: number; + menus: Menu[]; + menuProps: { + expandedKeys: string[]; + defaultExpandAll: boolean; + accordion: boolean; + }; + } + | false; + } + interface PluginRuntimeConfig { + layout?: { + footer: string; + theme: 'dark' | 'light'; + navigation: 'side' | 'top' | 'mixin' | 'left-right'; + title: string; + isFixedHeader: boolean; + isFixedSidebar: boolean; + logo: string; + multiTabs: boolean; + sideWidth: number; + menus: Menu[] | (() => Ref | Menu[]); + menuProps: { + expandedKeys: string[]; + defaultExpandAll: boolean; + accordion: boolean; + }; + renderCustom: () => VNode[]; + noFoundHandler: (param: { router: Router } & NavigationGuard) => void; + unAccessHandler: (param: { router: Router } & NavigationGuard) => void; }; - }; -} - - - -export interface LayoutRuntimeConfig { - layout: { - footer: string; - theme: 'dark' | 'light'; - navigation: 'side' | 'top' | 'mixin' | 'left-right'; - title: string; - isFixedHeader: boolean; - isFixedSidebar: boolean; - logo: string; - multiTabs: boolean; - sideWidth: number; - menus: Menu[] | (()=> (Ref | Menu[])); - menuProps: { - expandedKeys: string[]; - defaultExpandAll: boolean; - accordion: boolean; - }; - renderCustom: ()=> VNode[], - noFoundHandler: (param: { router: Router } & NavigationGuard) => void; - unAccessHandler: (param: { router: Router } & NavigationGuard) => void; - }; + } + + export const Page: Component; } diff --git a/packages/fes-plugin-locale/src/index.js b/packages/fes-plugin-locale/src/index.js index 44e55456..055906a2 100644 --- a/packages/fes-plugin-locale/src/index.js +++ b/packages/fes-plugin-locale/src/index.js @@ -85,6 +85,5 @@ export default (api) => { api.addConfigType(() => ({ source: name, - build: ['LocalBuildConfig'], })); }; diff --git a/packages/fes-plugin-locale/types.d.ts b/packages/fes-plugin-locale/types.d.ts index 7b9020d3..e1f44a05 100644 --- a/packages/fes-plugin-locale/types.d.ts +++ b/packages/fes-plugin-locale/types.d.ts @@ -1,8 +1,23 @@ -export interface LocalBuildConfig { - locale: { - locale: string; - fallbackLocale: string; - baseNavigator: boolean; - legacy: boolean; +import '@fesjs/fes'; + +declare module '@fesjs/fes' { + interface PluginBuildConfig { + locale?: + | { + locale: string; + fallbackLocale: string; + baseNavigator: boolean; + legacy: boolean; + } + | false; + } + + // export * from 'vue-i18n'; + + export const locale: { + setLocale({ locale }: { locale: string }): void; + addLocale({ locale, messages }: { locale: string; messages: object }): void; + getAllLocales(): string[]; + messages: Record; }; } diff --git a/packages/fes-plugin-model/package.json b/packages/fes-plugin-model/package.json index 8f58001a..27e4f150 100644 --- a/packages/fes-plugin-model/package.json +++ b/packages/fes-plugin-model/package.json @@ -4,7 +4,8 @@ "description": "@fesjs/plugin-model", "main": "lib/index.js", "files": [ - "lib" + "lib", + "types.d.ts" ], "scripts": { "test": "echo \"Error: no test specified\" && exit 1" @@ -32,5 +33,6 @@ "peerDependencies": { "@fesjs/fes": "^3.0.0-beta.0", "vue": "^3.0.5" - } + }, + "typings": "./types.d.ts" } diff --git a/packages/fes-plugin-model/src/index.js b/packages/fes-plugin-model/src/index.js index caddf6e8..648768e3 100644 --- a/packages/fes-plugin-model/src/index.js +++ b/packages/fes-plugin-model/src/index.js @@ -1,5 +1,6 @@ import { readFileSync } from 'fs'; import { join } from 'path'; +import { name } from '../package.json'; const namespace = 'plugin-model'; @@ -70,4 +71,8 @@ export default (api) => { source: absCoreFilePath, }, ]); + + api.addConfigType(() => ({ + source: name, + })); }; diff --git a/packages/fes-plugin-model/types.d.ts b/packages/fes-plugin-model/types.d.ts new file mode 100644 index 00000000..6742606e --- /dev/null +++ b/packages/fes-plugin-model/types.d.ts @@ -0,0 +1,10 @@ +import '@fesjs/fes'; + +declare module '@fesjs/fes' { + + interface PluginBuildConfig { + model?: {} | false; + } + + export function useModel(moduleId: string): any; +} diff --git a/packages/fes-plugin-monaco-editor/src/index.js b/packages/fes-plugin-monaco-editor/src/index.js index 9155731f..025ad594 100644 --- a/packages/fes-plugin-monaco-editor/src/index.js +++ b/packages/fes-plugin-monaco-editor/src/index.js @@ -89,6 +89,5 @@ export default (api) => { api.addConfigType(() => ({ source: name, - build: ['MonacoEditorBuildConfig'], })); }; diff --git a/packages/fes-plugin-monaco-editor/types.d.ts b/packages/fes-plugin-monaco-editor/types.d.ts index dbc512b5..077e14d2 100644 --- a/packages/fes-plugin-monaco-editor/types.d.ts +++ b/packages/fes-plugin-monaco-editor/types.d.ts @@ -1,12 +1,17 @@ +import type { Component } from 'vue'; import type { EditorLanguage } from 'monaco-editor-webpack-plugin/out/languages'; import type { EditorFeature } from 'monaco-editor-webpack-plugin/out/features'; -export interface MonacoEditorBuildConfig { - monacoEditor: { - filename: string; - publicPath: string; - languages: EditorLanguage[]; - features: EditorFeature[]; - globalAPI: boolean; - }; +declare module '@fesjs/fes' { + interface PluginBuildConfig { + monacoEditor?: { + filename: string; + publicPath: string; + languages: EditorLanguage[]; + features: EditorFeature[]; + globalAPI: boolean; + } | false; + } + + export const MonacoEditor: Component; } diff --git a/packages/fes-plugin-pinia/package.json b/packages/fes-plugin-pinia/package.json index 9906d11b..564fb490 100644 --- a/packages/fes-plugin-pinia/package.json +++ b/packages/fes-plugin-pinia/package.json @@ -4,7 +4,8 @@ "description": "@fesjs/plugin-pinia", "main": "lib/index.js", "files": [ - "lib" + "lib", + "types.d.ts" ], "scripts": { "test": "echo \"Error: no test specified\" && exit 1" @@ -33,5 +34,6 @@ "@fesjs/fes": "^3.0.0-beta.0", "pinia": "^2.0.11", "vue": "^3.0.5" - } + }, + "typings": "./types.d.ts" } diff --git a/packages/fes-plugin-pinia/types.d.ts b/packages/fes-plugin-pinia/types.d.ts new file mode 100644 index 00000000..2610282a --- /dev/null +++ b/packages/fes-plugin-pinia/types.d.ts @@ -0,0 +1,9 @@ +import type { Pinia } from 'pinia'; + +declare module '@fesjs/fes' { + interface PluginBuildConfig { + pinia?: {} | false; + } + + export const pinia: Pinia; +} diff --git a/packages/fes-plugin-qiankun/types.d.ts b/packages/fes-plugin-qiankun/types.d.ts index a92744ef..974ae510 100644 --- a/packages/fes-plugin-qiankun/types.d.ts +++ b/packages/fes-plugin-qiankun/types.d.ts @@ -1,3 +1,4 @@ +import { Component } from 'vue'; import { FrameworkLifeCycles, MicroApp } from 'qiankun'; interface AppOption { @@ -6,14 +7,20 @@ interface AppOption { props: Record; } -export interface QiankunBuildConfig { - qiankun: { - main: { - apps: AppOption[]; - lifeCycles?: FrameworkLifeCycles; - [key: string]: any; - }; - micro: {} - }; +declare module '@fesjs/fes' { + interface PluginBuildConfig { + qiankun?: + | { + main?: { + apps: AppOption[]; + lifeCycles?: FrameworkLifeCycles; + [key: string]: any; + }; + micro?: {}; + } + | false; + } + export const MicroApp: Component; + export const MicroAppWithMemoHistory: Component; } diff --git a/packages/fes-plugin-request/src/index.js b/packages/fes-plugin-request/src/index.js index 0e4fcef5..019b2d40 100644 --- a/packages/fes-plugin-request/src/index.js +++ b/packages/fes-plugin-request/src/index.js @@ -26,6 +26,5 @@ export default (api) => { api.addConfigType(() => ({ source: name, - runtime: ['RequestRuntimeConfig'], })); }; diff --git a/packages/fes-plugin-request/types.d.ts b/packages/fes-plugin-request/types.d.ts index 02aefaf2..923153ff 100644 --- a/packages/fes-plugin-request/types.d.ts +++ b/packages/fes-plugin-request/types.d.ts @@ -1,18 +1,27 @@ -import { AxiosRequestConfig, AxiosResponse } from 'axios'; +import { AxiosRequestConfig, AxiosResponse, AxiosError } from 'axios'; +import {Ref} from 'vue'; type RequestInterceptor = (value: AxiosRequestConfig) => AxiosRequestConfig | [(value: AxiosRequestConfig) => AxiosRequestConfig, (error: any) => any]; type ResponseInterceptor = (value: AxiosResponse) => AxiosResponse | [(value: AxiosResponse) => AxiosResponse, (error: any) => any]; +interface RequestPluginOption { + mergeRequest: boolean; + cache: boolean | { + type: 'ram' | 'sessionStorage' | 'localStorage', + cacheTime: number; + } +} -export interface RequestRuntimeConfig { - request: { - responseDataAdaptor?(data: T): T; - closeResDataCheck?: boolean; - requestInterceptors?: RequestInterceptor[]; - responseInterceptors?: ResponseInterceptor[]; - errorHandler?: { - [key: string]: (error: { response: AxiosResponse } | AxiosResponse) => void; - }; - } & AxiosRequestConfig; +declare module "@fesjs/fes" { + interface PluginRuntimeConfig { + request?: { + dataHandler?(data: any, response: AxiosResponse): any; + errorHandler?(error: AxiosError | {type: string, msg: string, [key: string]: string}): void; + requestInterceptors?: RequestInterceptor[]; + responseInterceptors?: ResponseInterceptor[]; + } & AxiosRequestConfig; + } + export function request(url: string, data: null | Record, options: AxiosRequestConfig & RequestPluginOption ): Promise + export function useRequest(url: string, data: null | Record, options: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref; errorRef: Ref; dataRef: Ref} } \ No newline at end of file diff --git a/packages/fes-plugin-sass/package.json b/packages/fes-plugin-sass/package.json index 191476df..004d6359 100644 --- a/packages/fes-plugin-sass/package.json +++ b/packages/fes-plugin-sass/package.json @@ -4,7 +4,8 @@ "description": "@fesjs/plugin-sass", "main": "lib/index.js", "files": [ - "lib" + "lib", + "types.d.ts" ], "scripts": { "test": "echo \"Error: no test specified\" && exit 1" @@ -32,5 +33,6 @@ }, "peerDependencies": { "@fesjs/fes": "^3.0.0-beta.0" - } + }, + "typings": "./types.d.ts" } diff --git a/packages/fes-plugin-sass/types.d.ts b/packages/fes-plugin-sass/types.d.ts new file mode 100644 index 00000000..b8f33615 --- /dev/null +++ b/packages/fes-plugin-sass/types.d.ts @@ -0,0 +1,14 @@ +import '@fesjs/fes'; + +declare module '@fesjs/fes' { + interface PluginBuildConfig { + sass?: + | { + implementation: any; + sassOptions: object; + sourceMap: boolean; + webpackImporter: boolean; + } + | false; + } +} diff --git a/packages/fes-plugin-vuex/src/index.js b/packages/fes-plugin-vuex/src/index.js index 3c1c1c52..a9d1363c 100644 --- a/packages/fes-plugin-vuex/src/index.js +++ b/packages/fes-plugin-vuex/src/index.js @@ -61,6 +61,5 @@ export default (api) => { api.addConfigType(() => ({ source: name, - build: ['VuexBuildConfig'], })); }; diff --git a/packages/fes-plugin-vuex/types.d.ts b/packages/fes-plugin-vuex/types.d.ts index 475eeac3..b7023867 100644 --- a/packages/fes-plugin-vuex/types.d.ts +++ b/packages/fes-plugin-vuex/types.d.ts @@ -1,9 +1,19 @@ - -export interface VuexBuildConfig { - vuex: { - strict: boolean; - devtools: boolean; +import '@fesjs/fes'; +declare module '@fesjs/fes' { + interface PluginBuildConfig { + vuex?: + | { + strict: boolean; + devtools: boolean; + } + | false; } -} + export const MUTATION_TYPES: object; + export const ACTION_TYPES: object; + + export const GETTER_TYPES: object; + + export const store: object; +} \ No newline at end of file diff --git a/packages/fes-plugin-watermark/package.json b/packages/fes-plugin-watermark/package.json index acbcd218..fb0995b0 100644 --- a/packages/fes-plugin-watermark/package.json +++ b/packages/fes-plugin-watermark/package.json @@ -4,7 +4,8 @@ "description": "@fesjs/plugin-watermark", "main": "lib/index.js", "files": [ - "lib" + "lib", + "types.d.ts" ], "scripts": { "test": "echo \"Error: no test specified\" && exit 1" @@ -33,5 +34,6 @@ "peerDependencies": { "@fesjs/fes": "^3.0.0-beta.0", "vue": "^3.0.5" - } + }, + "typings": "./types.d.ts" } diff --git a/packages/fes-plugin-watermark/src/index.js b/packages/fes-plugin-watermark/src/index.js index 02847be7..ce86a4a7 100644 --- a/packages/fes-plugin-watermark/src/index.js +++ b/packages/fes-plugin-watermark/src/index.js @@ -1,4 +1,5 @@ import { join } from 'path'; +import { name } from '../package.json'; const namespace = 'plugin-watermark'; @@ -8,11 +9,11 @@ export default (api) => { config: { schema(joi) { return joi.object({ - disabled: joi.boolean() + disabled: joi.boolean(), }); }, - default: {} - } + default: {}, + }, }); const absoluteFilePath = join(namespace, 'core.js'); @@ -23,23 +24,26 @@ export default (api) => { defineConfig.WATERMARK_DISABLED = memo.watermark.disabled ?? false; return { ...memo, - define: defineConfig + define: defineConfig, }; }); - api.onGenerateFiles(() => { api.copyTmpFiles({ namespace, path: join(__dirname, 'runtime'), - ignore: ['.tpl'] + ignore: ['.tpl'], }); }); api.addPluginExports(() => [ { specifiers: ['createWatermark', 'destroyWatermark'], - source: absoluteFilePath - } + source: absoluteFilePath, + }, ]); + + api.addConfigType(() => ({ + source: name, + })); }; diff --git a/packages/fes-plugin-watermark/types.d.ts b/packages/fes-plugin-watermark/types.d.ts new file mode 100644 index 00000000..50757827 --- /dev/null +++ b/packages/fes-plugin-watermark/types.d.ts @@ -0,0 +1,27 @@ +import '@fesjs/fes'; + +interface WatermarkParam { + content: string; + container: HTMLElement; + width: number; + height: number; + textAlign: 'left' | 'right' | 'center' | 'start' | 'end'; + textBaseline: 'top' | 'hanging' | 'middle' | 'alphabetic' | 'ideographic' | 'bottom'; + fontSize: string; + fontFamily: string; + fillStyle: string; + rotate: number; + zIndex: number; + timestamp: string; +} + +declare module '@fesjs/fes' { + interface PluginBuildConfig { + watermark?: { + disable: boolean; + } | false; + } + + export function createWatermark(param: WatermarkParam): void; + export function destroyWatermark(): void; +} diff --git a/packages/fes-plugin-windicss/src/index.js b/packages/fes-plugin-windicss/src/index.js index 3e998f98..a1e3ef66 100644 --- a/packages/fes-plugin-windicss/src/index.js +++ b/packages/fes-plugin-windicss/src/index.js @@ -69,6 +69,5 @@ export default (api) => { api.addConfigType(() => ({ source: name, - build: ['WindicssBuildConfig'], })); }; diff --git a/packages/fes-plugin-windicss/types.d.ts b/packages/fes-plugin-windicss/types.d.ts index b516787c..39a5560a 100644 --- a/packages/fes-plugin-windicss/types.d.ts +++ b/packages/fes-plugin-windicss/types.d.ts @@ -1,7 +1,11 @@ import type { Config } from 'windicss/types/interfaces'; -export interface WindicssBuildConfig { - windicss: { - config: Config +declare module '@fesjs/fes' { + interface PluginBuildConfig { + windicss?: + | { + config: Config; + } + | false; } } diff --git a/packages/fes-preset-built-in/src/plugins/generateFiles/genType.js b/packages/fes-preset-built-in/src/plugins/generateFiles/genType.js index e21f0eb0..375ecdbc 100644 --- a/packages/fes-preset-built-in/src/plugins/generateFiles/genType.js +++ b/packages/fes-preset-built-in/src/plugins/generateFiles/genType.js @@ -1,14 +1,12 @@ function importsToStr(imports) { return imports.map((imp) => { - const { source, build = [], runtime = [] } = imp; - return `import {${build.concat(runtime).join(', ')}} from '${source}';`; + const { source } = imp; + return `import '${source}';`; }); } function genTypeContent(imports) { return { - RUNTIME_TYPES: imports.reduce((previousValue, currentValue) => previousValue.concat(currentValue.runtime || []), []).join(' & '), - BUILD_TYPES: imports.reduce((previousValue, currentValue) => previousValue.concat(currentValue.build || []), []).join(' & '), imports: importsToStr(imports).join('\n'), }; } @@ -21,9 +19,6 @@ export default function (api) { api.onGenerateFiles(async () => { const typeTpl = ` {{{ imports }}} - -export type PluginRuntimeConfig = {{{RUNTIME_TYPES}}}; -export type PluginBuildConfig = {{{BUILD_TYPES}}}; `; const importSources = await api.applyPlugins({ key: 'addConfigType', diff --git a/packages/fes-preset-built-in/types.d.ts b/packages/fes-preset-built-in/types.d.ts index a6e38aad..76831b61 100644 --- a/packages/fes-preset-built-in/types.d.ts +++ b/packages/fes-preset-built-in/types.d.ts @@ -1,5 +1,5 @@ import { Component, DefineComponent, App } from 'vue'; -import { RouteRecordRaw, Router } from 'vue-router'; +import { RouteRecordRaw, Router, RouterHistory } from 'vue-router'; // @ts-ignore import { Plugin } from '@fesjs/runtime'; @@ -18,75 +18,80 @@ interface ClientRenderOption { type RenderFunc = () => Promise -export interface InnerRuntimeConfig { - beforeRender?: (option: BeforeRenderConfig) => BeforeRenderConfig; - patchRoutes?: ({ routes }: { routes: RouteRecordRaw[] }) => void; - modifyClientRenderOpts?: (option: ClientRenderOption) => ClientRenderOption; - rootContainer?: (component: DefineComponent, option: { routes: RouteRecordRaw[], plugin: Plugin }) => DefineComponent; - onAppCreated?: ({ app, routes }: { app: App, routes: RouteRecordRaw[] }) => void; - render?: (defaultRender: RenderFunc) => RenderFunc; - onRouterCreated?: ({ router }: { router: Router }) => void; + +declare module "@fesjs/fes" { + interface PluginBuildConfig { + alias?: Record, + autoprefixer?: { + /** environment for `Browserslist` */ + env?: string + + /** should Autoprefixer use Visual Cascade, if CSS is uncompressed */ + cascade?: boolean + + /** should Autoprefixer add prefixes. */ + add?: boolean + + /** should Autoprefixer [remove outdated] prefixes */ + remove?: boolean + + /** should Autoprefixer add prefixes for @supports parameters. */ + supports?: boolean + + /** should Autoprefixer add prefixes for flexbox properties */ + flexbox?: boolean | 'no-2009' + + /** should Autoprefixer add IE 10-11 prefixes for Grid Layout properties */ + grid?: boolean + + /** + * list of queries for target browsers. + * Try to not use it. + * The best practice is to use `.browserslistrc` config or `browserslist` key in `package.json` + * to share target browsers with Babel, ESLint and Stylelint + */ + overrideBrowserslist?: string | string[] + + /** do not raise error on unknown browser version in `Browserslist` config. */ + ignoreUnknownVersions?: boolean + }; + define?: Record, + router?: { + base?: string; + routes?: RouteRecordRaw[]; + mode?: 'hash' | 'history' | 'memory' + }; + dynamicImport?: boolean; + inlineLimit?: number; + mock?: boolean | { + prefix?: string; + }; + mountElementId?: string; + plugins?: string[]; + presets?: string[]; + proxy?: { + [apiPrefix: string]: { + target: string; + changeOrigin?: boolean; + } + }; + publicPath?: string; + singular?: boolean; + targets?: object; + terserOptions?: object; + title?: string; + } + interface PluginRuntimeConfig { + beforeRender?: (option: BeforeRenderConfig) => BeforeRenderConfig; + patchRoutes?: ({ routes }: { routes: RouteRecordRaw[] }) => void; + modifyClientRenderOpts?: (option: ClientRenderOption) => ClientRenderOption; + rootContainer?: (component: DefineComponent, option: { routes: RouteRecordRaw[], plugin: Plugin }) => DefineComponent; + onAppCreated?: ({ app, routes }: { app: App, routes: RouteRecordRaw[] }) => void; + render?: (defaultRender: RenderFunc) => RenderFunc; + onRouterCreated?: ({ router }: { router: Router }) => void; + } + + export function getRouter(): Router; + export function getHistory(): RouterHistory; + export function destroyRouter(): void; } - - -export interface InnerBuildConfig { - alias?: Record, - autoprefixer?: { - /** environment for `Browserslist` */ - env?: string - - /** should Autoprefixer use Visual Cascade, if CSS is uncompressed */ - cascade?: boolean - - /** should Autoprefixer add prefixes. */ - add?: boolean - - /** should Autoprefixer [remove outdated] prefixes */ - remove?: boolean - - /** should Autoprefixer add prefixes for @supports parameters. */ - supports?: boolean - - /** should Autoprefixer add prefixes for flexbox properties */ - flexbox?: boolean | 'no-2009' - - /** should Autoprefixer add IE 10-11 prefixes for Grid Layout properties */ - grid?: boolean - - /** - * list of queries for target browsers. - * Try to not use it. - * The best practice is to use `.browserslistrc` config or `browserslist` key in `package.json` - * to share target browsers with Babel, ESLint and Stylelint - */ - overrideBrowserslist?: string | string[] - - /** do not raise error on unknown browser version in `Browserslist` config. */ - ignoreUnknownVersions?: boolean - }; - define?: Record, - router?: { - base?: string; - routes?: RouteRecordRaw[]; - mode?: 'hash' | 'history' | 'memory' - }; - dynamicImport?: boolean; - inlineLimit?: number; - mock?: boolean | { - prefix?: string; - }; - mountElementId?: string; - plugins?: string[]; - presets?: string[]; - proxy?: { - [apiPrefix: string]: { - target: string; - changeOrigin?: boolean; - } - }; - publicPath?: string; - singular?: boolean; - targets?: object; - terserOptions?: object; - title?: string; -} \ No newline at end of file diff --git a/packages/fes-template-h5/src/app.js b/packages/fes-template-h5/src/app.js index cbb3e52d..fd26745d 100644 --- a/packages/fes-template-h5/src/app.js +++ b/packages/fes-template-h5/src/app.js @@ -1,42 +1,46 @@ import { defineRuntimeConfig } from '@fesjs/fes'; export default defineRuntimeConfig({ - request: { - baseURL: '/ras-mas', - dataHandler(data) { - if (data?.code !== '0') { - if (data.code === '10000') { - console.log('code', data.code); - } - if (data?.code === '20000') { - console.log('code', data.code); - } - throw new Error(data); - } - return data.result ? data.result : data; - }, - errorHandler(error) { - if (error.response) { - // 请求成功发出且服务器也响应了状态码,但状态代码超出了 2xx 的范围 - console.log(error.response.data); - console.log(error.response.status); - console.log(error.response.headers); - } else if (error.request) { - // 请求已经成功发起,但没有收到响应 - // `error.request` 在浏览器中是 XMLHttpRequest 的实例, - // 而在node.js中是 http.ClientRequest 的实例 - console.log(error.request); - } else if (error.type) { - // 插件异常 - console.log(error.msg); - } else { - // 发送请求时出了点问题 - console.log('Error', error.message); - } - console.log(error.config); - }, - }, - patchRoutes: () => { - console.log('patchRoutes'); - }, + request: {}, }); + +// export default defineRuntimeConfig({ +// request: { +// baseURL: '/ras-mas', +// dataHandler(data) { +// if (data?.code !== '0') { +// if (data.code === '10000') { +// console.log('code', data.code); +// } +// if (data?.code === '20000') { +// console.log('code', data.code); +// } +// throw new Error(data); +// } +// return data.result ? data.result : data; +// }, +// errorHandler(error) { +// if (error.response) { +// // 请求成功发出且服务器也响应了状态码,但状态代码超出了 2xx 的范围 +// console.log(error.response.data); +// console.log(error.response.status); +// console.log(error.response.headers); +// } else if (error.request) { +// // 请求已经成功发起,但没有收到响应 +// // `error.request` 在浏览器中是 XMLHttpRequest 的实例, +// // 而在node.js中是 http.ClientRequest 的实例 +// console.log(error.request); +// } else if (error.type) { +// // 插件异常 +// console.log(error.msg); +// } else { +// // 发送请求时出了点问题 +// console.log('Error', error.message); +// } +// console.log(error.config); +// }, +// }, +// patchRoutes: () => { +// console.log('patchRoutes'); +// }, +// }); diff --git a/packages/fes-template/.fes.js b/packages/fes-template/.fes.js index 16c808f3..ffb773b6 100644 --- a/packages/fes-template/.fes.js +++ b/packages/fes-template/.fes.js @@ -1,6 +1,5 @@ -// .fes.js 只负责管理编译时配置,只能使用plain Object - -export default { +import { defineBuildConfig } from '@fesjs/fes' +export default defineBuildConfig({ // exportStatic: {}, define: { __DEV__: false @@ -98,4 +97,4 @@ export default { presets: [ require.resolve('../fes-builder-webpack/lib'), ] -}; +}); diff --git a/packages/fes-template/tsconfig.json b/packages/fes-template/tsconfig.json index b7fce5b7..f8e8cc7a 100644 --- a/packages/fes-template/tsconfig.json +++ b/packages/fes-template/tsconfig.json @@ -3,7 +3,10 @@ "outDir": "build/dist", "module": "esnext", "target": "esnext", - "lib": ["esnext", "dom"], + "lib": [ + "esnext", + "dom" + ], "sourceMap": true, "baseUrl": ".", "jsx": "preserve", @@ -14,25 +17,31 @@ "suppressImplicitAnyIndexErrors": true, "noUnusedLocals": true, "allowJs": true, - "skipLibCheck": true, "experimentalDecorators": true, "strict": true, "paths": { - "@/*": ["./src/*"], - "@@/*": ["./src/.fes/*"] + "@/*": [ + "./src/*" + ], + "@@/*": [ + "./src/.fes/*" + ] } }, "include": [ + "*.js", + ".fes.js", "src/**/*", - "tests/**/*", - "test/**/*", - "__test__/**/*", "typings/**/*", "config/**/*", - ".eslintrc.js", - ".stylelintrc.js", - ".prettierrc.js", "src/.fes/configType.d.ts" ], - "exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"] -} + "exclude": [ + "build", + "dist", + "scripts", + "webpack", + "jest", + "node_modules" + ] +} \ No newline at end of file diff --git a/packages/fes/types.d.ts b/packages/fes/types.d.ts index 8921d265..214915a5 100644 --- a/packages/fes/types.d.ts +++ b/packages/fes/types.d.ts @@ -1,20 +1,21 @@ // @ts-ignore -import type { PluginRuntimeConfig, PluginBuildConfig } from '@@/configType'; +import '@@/configType'; -// @ts-ignore -export * from '@@/core/coreExports'; -// @ts-ignore -export * from '@@/core/pluginExports'; +export * from '@fesjs/runtime'; -interface RouteMeta { +export interface RouteMeta { name?: string; title?: string; layout?: boolean | { sidebar?: boolean; header?: boolean; logo?: boolean }; } +export interface PluginRuntimeConfig {} + +export interface PluginBuildConfig {} + export declare function defineRouteMeta(routeMeta: RouteMeta): RouteMeta; -export function defineBuildConfig(config: PluginBuildConfig ): PluginBuildConfig; +export declare function defineBuildConfig(config: PluginBuildConfig ): PluginBuildConfig; -export function defineRuntimeConfig(config: PluginRuntimeConfig): PluginRuntimeConfig; +export declare function defineRuntimeConfig(config: PluginRuntimeConfig): PluginRuntimeConfig;