@ruan-cat/utils 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -13
- package/dist/index.js.map +1 -1
- package/dist/node-cjs/index.cjs.map +1 -1
- package/dist/node-esm/index.js +6 -3
- package/dist/node-esm/index.js.map +1 -1
- package/package.json +18 -20
- package/src/.vitepress/config.mts +34 -0
- package/src/.vitepress/theme/index.ts +2 -0
- package/src/.vitepress/theme/style.css +130 -0
- package/src/.vuepress/client.ts +4 -0
- package/src/.vuepress/config.ts +19 -0
- package/src/define-promise-tasks.ts +1 -1
- package/src/index.ts +5 -5
- package/src/node-cjs/index.ts +1 -1
- package/src/node-cjs/tools.ts +1 -1
- package/src/node-esm/index.ts +5 -5
- package/src/node-esm/scripts/add-changelog-to-doc.ts +2 -2
- package/src/node-esm/scripts/clean.ts +1 -1
- package/src/node-esm/scripts/copy-changelog.ts +6 -3
- package/src/vueuse/index.ts +1 -1
- package/src/vueuse/useAxios/index.ts +1 -1
- package/src/vueuse/useAxios/{v2.ts → v1.ts} +1 -1
- package/tsconfig.json +12 -10
- package/src/unplugin-vue-router/README.md +0 -23
- package/src/vite-plugin-autogeneration-import-file/README.md +0 -37
- package/src/vueuse/README.md +0 -9
- package/src/vueuse/useAxios/README.md +0 -67
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruan-cat/utils",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"description": "阮喵喵工具集合。默认提供js文件,也直接提供ts文件。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|
|
7
7
|
"types": "./src/index.ts",
|
|
@@ -16,17 +16,17 @@
|
|
|
16
16
|
},
|
|
17
17
|
"exports": {
|
|
18
18
|
".": {
|
|
19
|
-
"types": "./
|
|
20
|
-
"import": "./
|
|
19
|
+
"types": "./dsit/index.d.ts",
|
|
20
|
+
"import": "./dist/index.js",
|
|
21
21
|
"require": "./dist/index.cjs"
|
|
22
22
|
},
|
|
23
23
|
"./node-cjs": {
|
|
24
|
-
"types": "./
|
|
25
|
-
"import": "./
|
|
24
|
+
"types": "./dist/node-cjs/index.d.cts",
|
|
25
|
+
"import": "./dist/node-cjs/index.d.cts",
|
|
26
26
|
"require": "./dist/node-cjs/index.cjs"
|
|
27
27
|
},
|
|
28
28
|
"./node-esm": {
|
|
29
|
-
"types": "./
|
|
29
|
+
"types": "./dist/node-esm/index.d.ts",
|
|
30
30
|
"import": "./dist/node-esm/index.js"
|
|
31
31
|
},
|
|
32
32
|
"./unplugin-vue-router": "./src/unplugin-vue-router/index.ts",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"!src/tests",
|
|
56
56
|
"!src/**/tests",
|
|
57
57
|
"!src/**/*.md",
|
|
58
|
+
"!src/typedoc-md/**/*",
|
|
58
59
|
"tsconfig.json"
|
|
59
60
|
],
|
|
60
61
|
"dependencies": {
|
|
@@ -73,12 +74,13 @@
|
|
|
73
74
|
"qs": "^6.14.0",
|
|
74
75
|
"tsup": "^8.4.0",
|
|
75
76
|
"type-plus": "^7.6.2",
|
|
76
|
-
"typedoc": "^0.
|
|
77
|
-
"typedoc-plugin-frontmatter": "^1.
|
|
78
|
-
"typedoc-plugin-markdown": "^4.
|
|
77
|
+
"typedoc": "^0.28.0",
|
|
78
|
+
"typedoc-plugin-frontmatter": "^1.3.0",
|
|
79
|
+
"typedoc-plugin-markdown": "^4.5.0",
|
|
79
80
|
"typescript": "^5.8.2",
|
|
80
81
|
"unplugin-vue-router": "^0.11.2",
|
|
81
|
-
"vite-plugin-autogeneration-import-file": "^3.0.0"
|
|
82
|
+
"vite-plugin-autogeneration-import-file": "^3.0.0",
|
|
83
|
+
"vitepress": "^1.6.3"
|
|
82
84
|
},
|
|
83
85
|
"peerDependencies": {
|
|
84
86
|
"typescript": "5.7.3",
|
|
@@ -106,21 +108,17 @@
|
|
|
106
108
|
}
|
|
107
109
|
},
|
|
108
110
|
"scripts": {
|
|
109
|
-
"
|
|
110
|
-
"copy-src": "cpx \"src/**/*\" docs",
|
|
111
|
-
"copy-readme": "cpx README.md docs",
|
|
112
|
-
"typedoc": "typedoc --options typedoc.config.mjs",
|
|
113
|
-
"docs:dev-main": "vuepress-vite dev docs --clean-cache --open",
|
|
111
|
+
"build": "tsup",
|
|
114
112
|
"docs:dev": "turbo docs:dev",
|
|
115
|
-
"build:docs-main": "vuepress-vite build docs",
|
|
116
113
|
"build:docs": "turbo do-build-docs",
|
|
114
|
+
"typedoc": "typedoc --options typedoc.config.mjs",
|
|
115
|
+
"docs:dev-main": "vitepress dev src --port 8080",
|
|
116
|
+
"build:docs-main": "vitepress build src",
|
|
117
117
|
"clean:type": "rimraf dist",
|
|
118
118
|
"generate:type-1": "vue-tsc -p tsconfig.json --composite false --declaration true --emitDeclarationOnly true",
|
|
119
119
|
"generate:type-2": "tsc -p tsconfig.json --composite false --declaration true --emitDeclarationOnly true",
|
|
120
120
|
"generate:type-3": "vue-tsc -p tsconfig.types.json",
|
|
121
121
|
"get-type": "pnpm clean:type && pnpm generate:type-3",
|
|
122
|
-
"build:-try-1": "pnpm clean:type && vue-tsc -p tsconfig.build.json"
|
|
123
|
-
"build:tsup": "tsup",
|
|
124
|
-
"build": "pnpm run build:tsup"
|
|
122
|
+
"build:-try-1": "pnpm clean:type && vue-tsc -p tsconfig.build.json"
|
|
125
123
|
}
|
|
126
124
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// 工具包文档项目 直接导入生成文档配置 避免出现循环依赖
|
|
2
|
+
import { setUserConfig, setGenerateSidebar } from "../../../vitepress-preset-config";
|
|
3
|
+
import { addChangelog2doc } from "@ruan-cat/utils/node-esm";
|
|
4
|
+
|
|
5
|
+
import { description } from "../../package.json";
|
|
6
|
+
|
|
7
|
+
addChangelog2doc({
|
|
8
|
+
target: "./src",
|
|
9
|
+
data: {
|
|
10
|
+
order: 2000,
|
|
11
|
+
dir: {
|
|
12
|
+
order: 2000,
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
const userConfig = setUserConfig({
|
|
18
|
+
title: "阮喵喵工具包",
|
|
19
|
+
description,
|
|
20
|
+
themeConfig: {
|
|
21
|
+
socialLinks: [
|
|
22
|
+
{
|
|
23
|
+
icon: "github",
|
|
24
|
+
link: "https://github.com/ruan-cat/vercel-monorepo-test/tree/main/packages/utils",
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
},
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
userConfig.themeConfig.sidebar = setGenerateSidebar({
|
|
32
|
+
documentRootPath: "src",
|
|
33
|
+
});
|
|
34
|
+
export default userConfig;
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Customize default theme styling by overriding CSS variables:
|
|
3
|
+
* https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Colors
|
|
8
|
+
*
|
|
9
|
+
* Each colors have exact same color scale system with 3 levels of solid
|
|
10
|
+
* colors with different brightness, and 1 soft color.
|
|
11
|
+
*
|
|
12
|
+
* - `XXX-1`: The most solid color used mainly for colored text. It must
|
|
13
|
+
* satisfy the contrast ratio against when used on top of `XXX-soft`.
|
|
14
|
+
*
|
|
15
|
+
* - `XXX-2`: The color used mainly for hover state of the button.
|
|
16
|
+
*
|
|
17
|
+
* - `XXX-3`: The color for solid background, such as bg color of the button.
|
|
18
|
+
* It must satisfy the contrast ratio with pure white (#ffffff) text on
|
|
19
|
+
* top of it.
|
|
20
|
+
*
|
|
21
|
+
* - `XXX-soft`: The color used for subtle background such as custom container
|
|
22
|
+
* or badges. It must satisfy the contrast ratio when putting `XXX-1` colors
|
|
23
|
+
* on top of it.
|
|
24
|
+
*
|
|
25
|
+
* The soft color must be semi transparent alpha channel. This is crucial
|
|
26
|
+
* because it allows adding multiple "soft" colors on top of each other
|
|
27
|
+
* to create a accent, such as when having inline code block inside
|
|
28
|
+
* custom containers.
|
|
29
|
+
*
|
|
30
|
+
* - `default`: The color used purely for subtle indication without any
|
|
31
|
+
* special meanings attched to it such as bg color for menu hover state.
|
|
32
|
+
*
|
|
33
|
+
* - `brand`: Used for primary brand colors, such as link text, button with
|
|
34
|
+
* brand theme, etc.
|
|
35
|
+
*
|
|
36
|
+
* - `tip`: Used to indicate useful information. The default theme uses the
|
|
37
|
+
* brand color for this by default.
|
|
38
|
+
*
|
|
39
|
+
* - `warning`: Used to indicate warning to the users. Used in custom
|
|
40
|
+
* container, badges, etc.
|
|
41
|
+
*
|
|
42
|
+
* - `danger`: Used to show error, or dangerous message to the users. Used
|
|
43
|
+
* in custom container, badges, etc.
|
|
44
|
+
* -------------------------------------------------------------------------- */
|
|
45
|
+
|
|
46
|
+
:root {
|
|
47
|
+
--vp-c-default-1: var(--vp-c-gray-1);
|
|
48
|
+
--vp-c-default-2: var(--vp-c-gray-2);
|
|
49
|
+
--vp-c-default-3: var(--vp-c-gray-3);
|
|
50
|
+
--vp-c-default-soft: var(--vp-c-gray-soft);
|
|
51
|
+
|
|
52
|
+
--vp-c-brand-1: var(--vp-c-indigo-1);
|
|
53
|
+
--vp-c-brand-2: var(--vp-c-indigo-2);
|
|
54
|
+
--vp-c-brand-3: var(--vp-c-indigo-3);
|
|
55
|
+
--vp-c-brand-soft: var(--vp-c-indigo-soft);
|
|
56
|
+
|
|
57
|
+
--vp-c-tip-1: var(--vp-c-brand-1);
|
|
58
|
+
--vp-c-tip-2: var(--vp-c-brand-2);
|
|
59
|
+
--vp-c-tip-3: var(--vp-c-brand-3);
|
|
60
|
+
--vp-c-tip-soft: var(--vp-c-brand-soft);
|
|
61
|
+
|
|
62
|
+
--vp-c-warning-1: var(--vp-c-yellow-1);
|
|
63
|
+
--vp-c-warning-2: var(--vp-c-yellow-2);
|
|
64
|
+
--vp-c-warning-3: var(--vp-c-yellow-3);
|
|
65
|
+
--vp-c-warning-soft: var(--vp-c-yellow-soft);
|
|
66
|
+
|
|
67
|
+
--vp-c-danger-1: var(--vp-c-red-1);
|
|
68
|
+
--vp-c-danger-2: var(--vp-c-red-2);
|
|
69
|
+
--vp-c-danger-3: var(--vp-c-red-3);
|
|
70
|
+
--vp-c-danger-soft: var(--vp-c-red-soft);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Component: Button
|
|
75
|
+
* -------------------------------------------------------------------------- */
|
|
76
|
+
|
|
77
|
+
:root {
|
|
78
|
+
--vp-button-brand-border: transparent;
|
|
79
|
+
--vp-button-brand-text: var(--vp-c-white);
|
|
80
|
+
--vp-button-brand-bg: var(--vp-c-brand-3);
|
|
81
|
+
--vp-button-brand-hover-border: transparent;
|
|
82
|
+
--vp-button-brand-hover-text: var(--vp-c-white);
|
|
83
|
+
--vp-button-brand-hover-bg: var(--vp-c-brand-2);
|
|
84
|
+
--vp-button-brand-active-border: transparent;
|
|
85
|
+
--vp-button-brand-active-text: var(--vp-c-white);
|
|
86
|
+
--vp-button-brand-active-bg: var(--vp-c-brand-1);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Component: Home
|
|
91
|
+
* -------------------------------------------------------------------------- */
|
|
92
|
+
|
|
93
|
+
:root {
|
|
94
|
+
--vp-home-hero-name-color: transparent;
|
|
95
|
+
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff);
|
|
96
|
+
|
|
97
|
+
--vp-home-hero-image-background-image: linear-gradient(-45deg, #bd34fe 50%, #47caff 50%);
|
|
98
|
+
--vp-home-hero-image-filter: blur(44px);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@media (min-width: 640px) {
|
|
102
|
+
:root {
|
|
103
|
+
--vp-home-hero-image-filter: blur(56px);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
@media (min-width: 960px) {
|
|
108
|
+
:root {
|
|
109
|
+
--vp-home-hero-image-filter: blur(68px);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Component: Custom Block
|
|
115
|
+
* -------------------------------------------------------------------------- */
|
|
116
|
+
|
|
117
|
+
:root {
|
|
118
|
+
--vp-custom-block-tip-border: transparent;
|
|
119
|
+
--vp-custom-block-tip-text: var(--vp-c-text-1);
|
|
120
|
+
--vp-custom-block-tip-bg: var(--vp-c-brand-soft);
|
|
121
|
+
--vp-custom-block-tip-code-bg: var(--vp-c-brand-soft);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Component: Algolia
|
|
126
|
+
* -------------------------------------------------------------------------- */
|
|
127
|
+
|
|
128
|
+
.DocSearch {
|
|
129
|
+
--docsearch-primary-color: var(--vp-c-brand-1) !important;
|
|
130
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// 特殊写法 避免出现循环依赖
|
|
2
|
+
// import { defineRuanCatVuepressConfig } from "@ruan-cat/vuepress-preset-config";
|
|
3
|
+
import { defineRuanCatVuepressConfig } from "../../../vuepress-preset-config";
|
|
4
|
+
|
|
5
|
+
import { addChangelog2doc } from "@ruan-cat/utils/node-esm";
|
|
6
|
+
|
|
7
|
+
addChangelog2doc({
|
|
8
|
+
target: "./src",
|
|
9
|
+
data: {
|
|
10
|
+
order: 940,
|
|
11
|
+
dir: {
|
|
12
|
+
order: 940,
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
export default defineRuanCatVuepressConfig({
|
|
18
|
+
title: "阮喵喵工具包",
|
|
19
|
+
});
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./conditions
|
|
2
|
-
export * from "./define-promise-tasks
|
|
3
|
-
export * from "./simple-promise-tools
|
|
1
|
+
export * from "./conditions";
|
|
2
|
+
export * from "./define-promise-tasks";
|
|
3
|
+
export * from "./simple-promise-tools";
|
|
4
4
|
|
|
5
|
-
export * from "./types/pnpm-workspace.yaml.shim
|
|
6
|
-
export * from "./types/Prettify
|
|
5
|
+
export * from "./types/pnpm-workspace.yaml.shim";
|
|
6
|
+
export * from "./types/Prettify";
|
package/src/node-cjs/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./tools
|
|
1
|
+
export * from "./tools";
|
package/src/node-cjs/tools.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { normalize } from "node:path";
|
|
6
6
|
import { spawnSync, type SpawnOptions } from "node:child_process";
|
|
7
7
|
|
|
8
|
-
import { generateSimpleAsyncTask } from "
|
|
8
|
+
import { generateSimpleAsyncTask } from "../simple-promise-tools";
|
|
9
9
|
import consola from "consola";
|
|
10
10
|
// import { normalizePath } from "vite";
|
|
11
11
|
|
package/src/node-esm/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ruan-cat-pkg-info
|
|
1
|
+
export * from "./ruan-cat-pkg-info";
|
|
2
2
|
|
|
3
|
-
export * from "./scripts/clean
|
|
4
|
-
export * from "./scripts/copy-changelog
|
|
5
|
-
export * from "./scripts/yaml-to-md
|
|
6
|
-
export * from "./scripts/add-changelog-to-doc
|
|
3
|
+
export * from "./scripts/clean";
|
|
4
|
+
export * from "./scripts/copy-changelog";
|
|
5
|
+
export * from "./scripts/yaml-to-md";
|
|
6
|
+
export * from "./scripts/add-changelog-to-doc";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from "node:path";
|
|
2
2
|
|
|
3
|
-
import { copyChangelogMd, hasChangelogMd } from "./copy-changelog
|
|
4
|
-
import { writeYaml2md } from "./yaml-to-md
|
|
3
|
+
import { copyChangelogMd, hasChangelogMd } from "./copy-changelog";
|
|
4
|
+
import { writeYaml2md } from "./yaml-to-md";
|
|
5
5
|
|
|
6
6
|
export interface AddChangelog2docOptions<T = Record<string, any>> {
|
|
7
7
|
/** 目标文件夹 */
|
|
@@ -4,9 +4,12 @@ import consola from "consola";
|
|
|
4
4
|
|
|
5
5
|
/** 检查当前运行的根目录 是否存在 CHANGELOG.md 文件 */
|
|
6
6
|
export function hasChangelogMd() {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
const res = fs.existsSync(path.resolve(process.cwd(), "CHANGELOG.md"));
|
|
8
|
+
if (!res) {
|
|
9
|
+
consola.log("当前项目根目录为:", process.cwd());
|
|
10
|
+
consola.warn("当前项目根目录不存在 CHANGELOG.md 文件");
|
|
11
|
+
}
|
|
12
|
+
return res;
|
|
10
13
|
}
|
|
11
14
|
|
|
12
15
|
/**
|
package/src/vueuse/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./useAxios/index
|
|
1
|
+
export * from "./useAxios/index";
|
|
@@ -6,7 +6,7 @@ import type { RequiredPick } from "type-plus";
|
|
|
6
6
|
import type { AxiosResponse, AxiosInstance } from "axios";
|
|
7
7
|
import type { UseAxiosOptionsBase, UseAxiosOptions } from "@vueuse/integrations/useAxios";
|
|
8
8
|
import { useAxios } from "@vueuse/integrations/useAxios";
|
|
9
|
-
import type { CreateAxiosRequestConfig, KeyAxiosRequestConfig } from "./index.
|
|
9
|
+
import type { CreateAxiosRequestConfig, KeyAxiosRequestConfig } from "./index.js";
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* 包装器的参数
|
package/tsconfig.json
CHANGED
|
@@ -6,21 +6,18 @@
|
|
|
6
6
|
// 项目基础目录
|
|
7
7
|
"baseUrl": ".",
|
|
8
8
|
"declaration": true,
|
|
9
|
-
"allowImportingTsExtensions": true,
|
|
10
|
-
"
|
|
9
|
+
// "allowImportingTsExtensions": true,
|
|
10
|
+
// "noEmit": true,
|
|
11
11
|
// tsc 编译产物输出目录
|
|
12
12
|
"outDir": "dist",
|
|
13
13
|
"checkJs": true,
|
|
14
14
|
// 项目包含了js
|
|
15
|
-
"allowJs": true,
|
|
16
|
-
"module": "
|
|
15
|
+
// "allowJs": true,
|
|
16
|
+
"module": "ESNext",
|
|
17
17
|
"target": "ESNext",
|
|
18
18
|
// 模块解析策略
|
|
19
|
-
"moduleResolution": "
|
|
20
|
-
|
|
21
|
-
"sourceMap": false,
|
|
22
|
-
// 产物不消除注释
|
|
23
|
-
"removeComments": false,
|
|
19
|
+
"moduleResolution": "bundler",
|
|
20
|
+
"allowJs": true,
|
|
24
21
|
// 严格模式类型检查,建议开启
|
|
25
22
|
"strict": true,
|
|
26
23
|
// 允许引入 .json 模块
|
|
@@ -34,10 +31,15 @@
|
|
|
34
31
|
"typedoc-plugin-markdown",
|
|
35
32
|
"node"
|
|
36
33
|
],
|
|
34
|
+
"paths": {
|
|
35
|
+
"@ruan-cat/utils/*": [
|
|
36
|
+
"./src/*"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
37
39
|
},
|
|
38
40
|
"include": [
|
|
39
41
|
"./src/**/*.ts",
|
|
40
|
-
"./src/**/*.js",
|
|
42
|
+
// "./src/**/*.js",
|
|
41
43
|
// "./tests/**/*.ts",
|
|
42
44
|
// "./tests/**/*.js",
|
|
43
45
|
],
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
dir:
|
|
3
|
-
collapsible: false
|
|
4
|
-
link: true
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# unplugin-vue-router
|
|
8
|
-
|
|
9
|
-
## 安装依赖
|
|
10
|
-
|
|
11
|
-
你需要独立安装 unplugin-vue-router 。
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
pnpm i -D unplugin-vue-router
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
## 使用
|
|
18
|
-
|
|
19
|
-
```ts
|
|
20
|
-
import { getRouteName } from "@ruan-cat/utils/unplugin-vue-router";
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
<!-- 触发部署 -->
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
dir:
|
|
3
|
-
collapsible: false
|
|
4
|
-
link: true
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# 自动类型生成插件的二次封装
|
|
8
|
-
|
|
9
|
-
[vite-plugin-autogeneration-import-file](https://github.com/yuntian001/vite-plugin-autogeneration-import-file),这个 vite 插件可以实现自动类型导入。在实际使用过程中,需要配置很多东西,故此处对该插件的使用做一些二次封装,并讲解该如何使用。
|
|
10
|
-
|
|
11
|
-
## 安装依赖
|
|
12
|
-
|
|
13
|
-
毕竟属于对该插件的二次封装,请自行安装依赖:
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
pnpm i -D vite-plugin-autogeneration-import-file
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
## 在 vite 配置内使用
|
|
20
|
-
|
|
21
|
-
使用示例如下:
|
|
22
|
-
|
|
23
|
-
::: details
|
|
24
|
-
|
|
25
|
-
@[code](./tests/vite.config.ts)
|
|
26
|
-
|
|
27
|
-
:::
|
|
28
|
-
|
|
29
|
-
## 使用的模板
|
|
30
|
-
|
|
31
|
-
类型文件使用的模板如下:
|
|
32
|
-
|
|
33
|
-
::: details
|
|
34
|
-
|
|
35
|
-
@[code](./template/components.template.ts)
|
|
36
|
-
|
|
37
|
-
:::
|
package/src/vueuse/README.md
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
order: 10
|
|
3
|
-
dir:
|
|
4
|
-
collapsible: false
|
|
5
|
-
link: true
|
|
6
|
-
order: 10
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# useAxios 的包装函数
|
|
10
|
-
|
|
11
|
-
useAxiosWrapper,该函数旨在于实现 useAxios 的封装。
|
|
12
|
-
|
|
13
|
-
## 安装依赖
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
pnpm i -P @vueuse/integrations axios
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
## 准备接口返回数据的类型
|
|
20
|
-
|
|
21
|
-
接口请求返回类型,通常是一个泛型,请根据你的业务场景准备好类似于下面的类型:
|
|
22
|
-
|
|
23
|
-
::: details
|
|
24
|
-
|
|
25
|
-
@[code](./tests/types/ApifoxModel.ts)
|
|
26
|
-
|
|
27
|
-
:::
|
|
28
|
-
|
|
29
|
-
## 准备简单的 axios 请求实例
|
|
30
|
-
|
|
31
|
-
这里的本质是为了准备一个拦截器内没有解包 data 的 axios 实例,因为 useAxios 默认帮我们完成 axios 的 data 解包了。
|
|
32
|
-
|
|
33
|
-
比如以下的简单实例:
|
|
34
|
-
|
|
35
|
-
::: details
|
|
36
|
-
|
|
37
|
-
@[code](./tests/createAxiosInstance.ts)
|
|
38
|
-
|
|
39
|
-
:::
|
|
40
|
-
|
|
41
|
-
## 基于项目二次封装 useAxiosWrapper 函数
|
|
42
|
-
|
|
43
|
-
::: details
|
|
44
|
-
|
|
45
|
-
@[code](./tests/projectRequest.ts)
|
|
46
|
-
|
|
47
|
-
:::
|
|
48
|
-
|
|
49
|
-
## 定义接口
|
|
50
|
-
|
|
51
|
-
如下:
|
|
52
|
-
|
|
53
|
-
::: details
|
|
54
|
-
|
|
55
|
-
@[code](./tests/homeCategoryHead.ts)
|
|
56
|
-
|
|
57
|
-
:::
|
|
58
|
-
|
|
59
|
-
## 使用接口
|
|
60
|
-
|
|
61
|
-
如下:
|
|
62
|
-
|
|
63
|
-
::: details
|
|
64
|
-
|
|
65
|
-
@[code](./tests/homeCategoryHead.test.ts)
|
|
66
|
-
|
|
67
|
-
:::
|