* fix: 优化类型提示

* fix: 添加 enums 接口类型声明

* feat: 配置插件api提示

Co-authored-by: wanchun <445436867@qq.com>
This commit is contained in:
qlin 2022-06-22 19:24:49 +08:00 committed by GitHub
parent 77e9ed7483
commit f8b70f0ebb
39 changed files with 501 additions and 327 deletions

View File

@ -3,6 +3,5 @@ import { name } from '../package.json';
export default function (api) { export default function (api) {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
build: ['ViteBuildConfig'],
})); }));
} }

View File

@ -4,11 +4,12 @@ import {Options as PolyfillOptions } from '@vitejs/plugin-legacy'
import createPlugin from '@vitejs/plugin-vue-jsx' import createPlugin from '@vitejs/plugin-vue-jsx'
import {createHtmlPlugin} from 'vite-plugin-html' import {createHtmlPlugin} from 'vite-plugin-html'
declare module "@fesjs/fes" {
export interface ViteBuildConfig { interface PluginBuildConfig {
viteOption?: UserConfig; viteOption?: UserConfig;
viteVuePlugin?: Options; viteVuePlugin?: Options;
viteVueJsx?: Parameters<typeof createPlugin>[0]; viteVueJsx?: Parameters<typeof createPlugin>[0];
viteLegacy?: PolyfillOptions; viteLegacy?: PolyfillOptions;
viteHtml?: Parameters<typeof createHtmlPlugin>[0] viteHtml?: Parameters<typeof createHtmlPlugin>[0]
} }
}

View File

@ -3,6 +3,5 @@ import { name } from '../../package.json';
export default function (api) { export default function (api) {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
build: ['WebpackBuildConfig'],
})); }));
} }

View File

@ -7,7 +7,8 @@ interface CopyFileType {
to: string; to: string;
} }
export interface WebpackBuildConfig { declare module "@fesjs/fes" {
interface PluginBuildConfig {
analyze?: { analyze?: {
analyzerMode?: 'server' | 'static' | 'disabled'; analyzerMode?: 'server' | 'static' | 'disabled';
analyzerHost?: string; analyzerHost?: string;
@ -53,5 +54,5 @@ export interface WebpackBuildConfig {
}; };
postcssLoader?: Record<string, any>; postcssLoader?: Record<string, any>;
vueLoader?: object; vueLoader?: object;
}
} }

View File

@ -56,7 +56,5 @@ export default (api) => {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
runtime: ['AccessRuntimeConfig'],
build: ['AccessBuildConfig'],
})); }));
}; };

View File

@ -1,14 +1,29 @@
import { Router, NavigationGuard } from 'vue-router'; import { Router, NavigationGuard } from 'vue-router';
import { Ref } from 'vue';
export interface AccessBuildConfig { declare module '@fesjs/fes' {
access: { interface PluginBuildConfig {
access?:
| {
rules: Record<string, []>; rules: Record<string, []>;
}; }
| false;
} }
export interface AccessRuntimeConfig { interface PluginRuntimeConfig {
access: { access?: {
noFoundHandler: (param: { router: Router } & NavigationGuard) => void; noFoundHandler: (param: { router: Router } & NavigationGuard) => void;
unAccessHandler: (param: { router: Router } & NavigationGuard) => void; unAccessHandler: (param: { router: Router } & NavigationGuard) => void;
}; };
} }
export function access(): {
hasAccess(accessId: string | number): Promise<boolean>;
isDataReady(): boolean;
setRole(roleId: string | Promise<string>): void;
setAccess(accessIds: Array<string | number> | Promise<Array<string | number>>): void;
getAccess(): string[];
};
export function useAccess(accessId: Array<string | number>): Ref<boolean>;
}

View File

@ -46,6 +46,5 @@ export default (api) => {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
build: ['EnumsBuildConfig'],
})); }));
}; };

View File

@ -1,8 +1,25 @@
import '@fesjs/fes';
export interface EnumsBuildConfig { interface EnumExtend {
enums: { key: string;
[key: string]: [string | number, string | number][] dir: string;
} transfer<T>(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;
}

View File

@ -4,7 +4,8 @@
"description": "@fesjs/plugin-icon", "description": "@fesjs/plugin-icon",
"main": "lib/index.js", "main": "lib/index.js",
"files": [ "files": [
"lib" "lib",
"types.d.ts"
], ],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
@ -31,5 +32,6 @@
}, },
"dependencies": { "dependencies": {
"svgo": "^2.3.1" "svgo": "^2.3.1"
} },
"typings": "./types.d.ts"
} }

7
packages/fes-plugin-icon/types.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
import '@fesjs/fes';
declare module '@fesjs/fes' {
interface PluginBuildConfig {
icon?: {} | false;
}
}

View File

@ -91,7 +91,5 @@ export default (api) => {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
runtime: ['LayoutRuntimeConfig'],
build: ['LayoutBuildConfig'],
})); }));
}; };

View File

@ -7,11 +7,13 @@ interface Menu {
match: string[]; match: string[];
title: string; title: string;
icon: string | Component; icon: string | Component;
children?: Menu[] children?: Menu[];
} }
export interface LayoutBuildConfig { declare module '@fesjs/fes' {
layout: { interface PluginBuildConfig {
layout?:
| {
footer: string; footer: string;
theme: 'dark' | 'light'; theme: 'dark' | 'light';
navigation: 'side' | 'top' | 'mixin' | 'left-right'; navigation: 'side' | 'top' | 'mixin' | 'left-right';
@ -27,13 +29,11 @@ export interface LayoutBuildConfig {
defaultExpandAll: boolean; defaultExpandAll: boolean;
accordion: boolean; accordion: boolean;
}; };
};
} }
| false;
}
interface PluginRuntimeConfig {
export interface LayoutRuntimeConfig { layout?: {
layout: {
footer: string; footer: string;
theme: 'dark' | 'light'; theme: 'dark' | 'light';
navigation: 'side' | 'top' | 'mixin' | 'left-right'; navigation: 'side' | 'top' | 'mixin' | 'left-right';
@ -43,14 +43,17 @@ export interface LayoutRuntimeConfig {
logo: string; logo: string;
multiTabs: boolean; multiTabs: boolean;
sideWidth: number; sideWidth: number;
menus: Menu[] | (()=> (Ref<Menu[]> | Menu[])); menus: Menu[] | (() => Ref<Menu[]> | Menu[]);
menuProps: { menuProps: {
expandedKeys: string[]; expandedKeys: string[];
defaultExpandAll: boolean; defaultExpandAll: boolean;
accordion: boolean; accordion: boolean;
}; };
renderCustom: ()=> VNode[], renderCustom: () => VNode[];
noFoundHandler: (param: { router: Router } & NavigationGuard) => void; noFoundHandler: (param: { router: Router } & NavigationGuard) => void;
unAccessHandler: (param: { router: Router } & NavigationGuard) => void; unAccessHandler: (param: { router: Router } & NavigationGuard) => void;
}; };
} }
export const Page: Component;
}

View File

@ -85,6 +85,5 @@ export default (api) => {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
build: ['LocalBuildConfig'],
})); }));
}; };

View File

@ -1,8 +1,23 @@
export interface LocalBuildConfig { import '@fesjs/fes';
locale: {
declare module '@fesjs/fes' {
interface PluginBuildConfig {
locale?:
| {
locale: string; locale: string;
fallbackLocale: string; fallbackLocale: string;
baseNavigator: boolean; baseNavigator: boolean;
legacy: 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<string, object>;
}; };
} }

View File

@ -4,7 +4,8 @@
"description": "@fesjs/plugin-model", "description": "@fesjs/plugin-model",
"main": "lib/index.js", "main": "lib/index.js",
"files": [ "files": [
"lib" "lib",
"types.d.ts"
], ],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
@ -32,5 +33,6 @@
"peerDependencies": { "peerDependencies": {
"@fesjs/fes": "^3.0.0-beta.0", "@fesjs/fes": "^3.0.0-beta.0",
"vue": "^3.0.5" "vue": "^3.0.5"
} },
"typings": "./types.d.ts"
} }

View File

@ -1,5 +1,6 @@
import { readFileSync } from 'fs'; import { readFileSync } from 'fs';
import { join } from 'path'; import { join } from 'path';
import { name } from '../package.json';
const namespace = 'plugin-model'; const namespace = 'plugin-model';
@ -70,4 +71,8 @@ export default (api) => {
source: absCoreFilePath, source: absCoreFilePath,
}, },
]); ]);
api.addConfigType(() => ({
source: name,
}));
}; };

10
packages/fes-plugin-model/types.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
import '@fesjs/fes';
declare module '@fesjs/fes' {
interface PluginBuildConfig {
model?: {} | false;
}
export function useModel(moduleId: string): any;
}

View File

@ -89,6 +89,5 @@ export default (api) => {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
build: ['MonacoEditorBuildConfig'],
})); }));
}; };

View File

@ -1,12 +1,17 @@
import type { Component } from 'vue';
import type { EditorLanguage } from 'monaco-editor-webpack-plugin/out/languages'; import type { EditorLanguage } from 'monaco-editor-webpack-plugin/out/languages';
import type { EditorFeature } from 'monaco-editor-webpack-plugin/out/features'; import type { EditorFeature } from 'monaco-editor-webpack-plugin/out/features';
export interface MonacoEditorBuildConfig { declare module '@fesjs/fes' {
monacoEditor: { interface PluginBuildConfig {
monacoEditor?: {
filename: string; filename: string;
publicPath: string; publicPath: string;
languages: EditorLanguage[]; languages: EditorLanguage[];
features: EditorFeature[]; features: EditorFeature[];
globalAPI: boolean; globalAPI: boolean;
}; } | false;
}
export const MonacoEditor: Component;
} }

View File

@ -4,7 +4,8 @@
"description": "@fesjs/plugin-pinia", "description": "@fesjs/plugin-pinia",
"main": "lib/index.js", "main": "lib/index.js",
"files": [ "files": [
"lib" "lib",
"types.d.ts"
], ],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
@ -33,5 +34,6 @@
"@fesjs/fes": "^3.0.0-beta.0", "@fesjs/fes": "^3.0.0-beta.0",
"pinia": "^2.0.11", "pinia": "^2.0.11",
"vue": "^3.0.5" "vue": "^3.0.5"
} },
"typings": "./types.d.ts"
} }

9
packages/fes-plugin-pinia/types.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
import type { Pinia } from 'pinia';
declare module '@fesjs/fes' {
interface PluginBuildConfig {
pinia?: {} | false;
}
export const pinia: Pinia;
}

View File

@ -1,3 +1,4 @@
import { Component } from 'vue';
import { FrameworkLifeCycles, MicroApp } from 'qiankun'; import { FrameworkLifeCycles, MicroApp } from 'qiankun';
interface AppOption { interface AppOption {
@ -6,14 +7,20 @@ interface AppOption {
props: Record<string, any>; props: Record<string, any>;
} }
export interface QiankunBuildConfig { declare module '@fesjs/fes' {
qiankun: { interface PluginBuildConfig {
main: { qiankun?:
| {
main?: {
apps: AppOption[]; apps: AppOption[];
lifeCycles?: FrameworkLifeCycles<MicroApp>; lifeCycles?: FrameworkLifeCycles<MicroApp>;
[key: string]: any; [key: string]: any;
}; };
micro: {} micro?: {};
}; }
| false;
}
export const MicroApp: Component;
export const MicroAppWithMemoHistory: Component;
} }

View File

@ -26,6 +26,5 @@ export default (api) => {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
runtime: ['RequestRuntimeConfig'],
})); }));
}; };

View File

@ -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 RequestInterceptor = (value: AxiosRequestConfig) => AxiosRequestConfig | [(value: AxiosRequestConfig) => AxiosRequestConfig, (error: any) => any];
type ResponseInterceptor = (value: AxiosResponse) => AxiosResponse | [(value: AxiosResponse) => AxiosResponse, (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 { declare module "@fesjs/fes" {
request: { interface PluginRuntimeConfig {
responseDataAdaptor?<T>(data: T): T; request?: {
closeResDataCheck?: boolean; dataHandler?(data: any, response: AxiosResponse): any;
errorHandler?(error: AxiosError | {type: string, msg: string, [key: string]: string}): void;
requestInterceptors?: RequestInterceptor[]; requestInterceptors?: RequestInterceptor[];
responseInterceptors?: ResponseInterceptor[]; responseInterceptors?: ResponseInterceptor[];
errorHandler?: {
[key: string]: (error: { response: AxiosResponse } | AxiosResponse) => void;
};
} & AxiosRequestConfig; } & AxiosRequestConfig;
} }
export function request(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): Promise<any>
export function useRequest(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref<boolean>; errorRef: Ref<Error>; dataRef: Ref<any>}
}

View File

@ -4,7 +4,8 @@
"description": "@fesjs/plugin-sass", "description": "@fesjs/plugin-sass",
"main": "lib/index.js", "main": "lib/index.js",
"files": [ "files": [
"lib" "lib",
"types.d.ts"
], ],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
@ -32,5 +33,6 @@
}, },
"peerDependencies": { "peerDependencies": {
"@fesjs/fes": "^3.0.0-beta.0" "@fesjs/fes": "^3.0.0-beta.0"
} },
"typings": "./types.d.ts"
} }

14
packages/fes-plugin-sass/types.d.ts vendored Normal file
View File

@ -0,0 +1,14 @@
import '@fesjs/fes';
declare module '@fesjs/fes' {
interface PluginBuildConfig {
sass?:
| {
implementation: any;
sassOptions: object;
sourceMap: boolean;
webpackImporter: boolean;
}
| false;
}
}

View File

@ -61,6 +61,5 @@ export default (api) => {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
build: ['VuexBuildConfig'],
})); }));
}; };

View File

@ -1,9 +1,19 @@
import '@fesjs/fes';
export interface VuexBuildConfig { declare module '@fesjs/fes' {
vuex: { interface PluginBuildConfig {
vuex?:
| {
strict: boolean; strict: boolean;
devtools: boolean; devtools: boolean;
} }
| false;
} }
export const MUTATION_TYPES: object;
export const ACTION_TYPES: object;
export const GETTER_TYPES: object;
export const store: object;
}

View File

@ -4,7 +4,8 @@
"description": "@fesjs/plugin-watermark", "description": "@fesjs/plugin-watermark",
"main": "lib/index.js", "main": "lib/index.js",
"files": [ "files": [
"lib" "lib",
"types.d.ts"
], ],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
@ -33,5 +34,6 @@
"peerDependencies": { "peerDependencies": {
"@fesjs/fes": "^3.0.0-beta.0", "@fesjs/fes": "^3.0.0-beta.0",
"vue": "^3.0.5" "vue": "^3.0.5"
} },
"typings": "./types.d.ts"
} }

View File

@ -1,4 +1,5 @@
import { join } from 'path'; import { join } from 'path';
import { name } from '../package.json';
const namespace = 'plugin-watermark'; const namespace = 'plugin-watermark';
@ -8,11 +9,11 @@ export default (api) => {
config: { config: {
schema(joi) { schema(joi) {
return joi.object({ return joi.object({
disabled: joi.boolean() disabled: joi.boolean(),
}); });
}, },
default: {} default: {},
} },
}); });
const absoluteFilePath = join(namespace, 'core.js'); const absoluteFilePath = join(namespace, 'core.js');
@ -23,23 +24,26 @@ export default (api) => {
defineConfig.WATERMARK_DISABLED = memo.watermark.disabled ?? false; defineConfig.WATERMARK_DISABLED = memo.watermark.disabled ?? false;
return { return {
...memo, ...memo,
define: defineConfig define: defineConfig,
}; };
}); });
api.onGenerateFiles(() => { api.onGenerateFiles(() => {
api.copyTmpFiles({ api.copyTmpFiles({
namespace, namespace,
path: join(__dirname, 'runtime'), path: join(__dirname, 'runtime'),
ignore: ['.tpl'] ignore: ['.tpl'],
}); });
}); });
api.addPluginExports(() => [ api.addPluginExports(() => [
{ {
specifiers: ['createWatermark', 'destroyWatermark'], specifiers: ['createWatermark', 'destroyWatermark'],
source: absoluteFilePath source: absoluteFilePath,
} },
]); ]);
api.addConfigType(() => ({
source: name,
}));
}; };

View File

@ -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;
}

View File

@ -69,6 +69,5 @@ export default (api) => {
api.addConfigType(() => ({ api.addConfigType(() => ({
source: name, source: name,
build: ['WindicssBuildConfig'],
})); }));
}; };

View File

@ -1,7 +1,11 @@
import type { Config } from 'windicss/types/interfaces'; import type { Config } from 'windicss/types/interfaces';
export interface WindicssBuildConfig { declare module '@fesjs/fes' {
windicss: { interface PluginBuildConfig {
config: Config windicss?:
| {
config: Config;
}
| false;
} }
} }

View File

@ -1,14 +1,12 @@
function importsToStr(imports) { function importsToStr(imports) {
return imports.map((imp) => { return imports.map((imp) => {
const { source, build = [], runtime = [] } = imp; const { source } = imp;
return `import {${build.concat(runtime).join(', ')}} from '${source}';`; return `import '${source}';`;
}); });
} }
function genTypeContent(imports) { function genTypeContent(imports) {
return { 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'), imports: importsToStr(imports).join('\n'),
}; };
} }
@ -21,9 +19,6 @@ export default function (api) {
api.onGenerateFiles(async () => { api.onGenerateFiles(async () => {
const typeTpl = ` const typeTpl = `
{{{ imports }}} {{{ imports }}}
export type PluginRuntimeConfig = {{{RUNTIME_TYPES}}};
export type PluginBuildConfig = {{{BUILD_TYPES}}};
`; `;
const importSources = await api.applyPlugins({ const importSources = await api.applyPlugins({
key: 'addConfigType', key: 'addConfigType',

View File

@ -1,5 +1,5 @@
import { Component, DefineComponent, App } from 'vue'; import { Component, DefineComponent, App } from 'vue';
import { RouteRecordRaw, Router } from 'vue-router'; import { RouteRecordRaw, Router, RouterHistory } from 'vue-router';
// @ts-ignore // @ts-ignore
import { Plugin } from '@fesjs/runtime'; import { Plugin } from '@fesjs/runtime';
@ -18,18 +18,9 @@ interface ClientRenderOption {
type RenderFunc = () => Promise<App> type RenderFunc = () => Promise<App>
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" {
export interface InnerBuildConfig { interface PluginBuildConfig {
alias?: Record<string, string>, alias?: Record<string, string>,
autoprefixer?: { autoprefixer?: {
/** environment for `Browserslist` */ /** environment for `Browserslist` */
@ -90,3 +81,17 @@ export interface InnerBuildConfig {
terserOptions?: object; terserOptions?: object;
title?: string; 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;
}

View File

@ -1,42 +1,46 @@
import { defineRuntimeConfig } from '@fesjs/fes'; import { defineRuntimeConfig } from '@fesjs/fes';
export default defineRuntimeConfig({ export default defineRuntimeConfig({
request: { 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');
},
}); });
// 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');
// },
// });

View File

@ -1,6 +1,5 @@
// .fes.js 只负责管理编译时配置只能使用plain Object import { defineBuildConfig } from '@fesjs/fes'
export default defineBuildConfig({
export default {
// exportStatic: {}, // exportStatic: {},
define: { define: {
__DEV__: false __DEV__: false
@ -98,4 +97,4 @@ export default {
presets: [ presets: [
require.resolve('../fes-builder-webpack/lib'), require.resolve('../fes-builder-webpack/lib'),
] ]
}; });

View File

@ -3,7 +3,10 @@
"outDir": "build/dist", "outDir": "build/dist",
"module": "esnext", "module": "esnext",
"target": "esnext", "target": "esnext",
"lib": ["esnext", "dom"], "lib": [
"esnext",
"dom"
],
"sourceMap": true, "sourceMap": true,
"baseUrl": ".", "baseUrl": ".",
"jsx": "preserve", "jsx": "preserve",
@ -14,25 +17,31 @@
"suppressImplicitAnyIndexErrors": true, "suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true, "noUnusedLocals": true,
"allowJs": true, "allowJs": true,
"skipLibCheck": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"strict": true, "strict": true,
"paths": { "paths": {
"@/*": ["./src/*"], "@/*": [
"@@/*": ["./src/.fes/*"] "./src/*"
],
"@@/*": [
"./src/.fes/*"
]
} }
}, },
"include": [ "include": [
"*.js",
".fes.js",
"src/**/*", "src/**/*",
"tests/**/*",
"test/**/*",
"__test__/**/*",
"typings/**/*", "typings/**/*",
"config/**/*", "config/**/*",
".eslintrc.js",
".stylelintrc.js",
".prettierrc.js",
"src/.fes/configType.d.ts" "src/.fes/configType.d.ts"
], ],
"exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"] "exclude": [
"build",
"dist",
"scripts",
"webpack",
"jest",
"node_modules"
]
} }

View File

@ -1,20 +1,21 @@
// @ts-ignore // @ts-ignore
import type { PluginRuntimeConfig, PluginBuildConfig } from '@@/configType'; import '@@/configType';
// @ts-ignore export * from '@fesjs/runtime';
export * from '@@/core/coreExports';
// @ts-ignore
export * from '@@/core/pluginExports';
interface RouteMeta { export interface RouteMeta {
name?: string; name?: string;
title?: string; title?: string;
layout?: boolean | { sidebar?: boolean; header?: boolean; logo?: boolean }; layout?: boolean | { sidebar?: boolean; header?: boolean; logo?: boolean };
} }
export interface PluginRuntimeConfig {}
export interface PluginBuildConfig {}
export declare function defineRouteMeta(routeMeta: RouteMeta): RouteMeta; 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;