create-bubbles 0.1.2 → 0.1.3
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/dist/index.js +1 -1
- package/package.json +1 -1
- package/template-vue-rolldown-oxc/.gitlab-ci.yml +10 -2
- package/template-vue-rolldown-oxc/.oxlintrc.json +1 -14
- package/template-vue-rolldown-oxc/.vscode/settings.json +11 -0
- package/template-vue-rolldown-oxc/README.md +2 -30
- package/template-vue-rolldown-oxc/package.json +18 -16
- package/template-vue-rolldown-oxc/src/App.vue +12 -2
- package/template-vue-rolldown-oxc/src/utils/request/index.ts +1 -3
- package/template-vue-rolldown-oxc/src/views/home/index.vue +3 -2
- package/template-vue-rolldown-oxc/tsconfig.json +34 -2
- package/template-vue-rolldown-oxc/uno.config.ts +2 -5
- package/template-vue-rolldown-oxc/vite.config.ts +4 -3
- package/template-vue-vite-biome/.env +4 -0
- package/template-vue-vite-biome/.env.development +1 -0
- package/template-vue-vite-biome/.env.production +1 -0
- package/template-vue-vite-biome/.gitlab-ci.yml +84 -0
- package/template-vue-vite-biome/.vscode/settings.json +10 -0
- package/template-vue-vite-biome/README.md +3 -0
- package/template-vue-vite-biome/biome.json +104 -0
- package/template-vue-vite-biome/commitlint.config.js +1 -0
- package/template-vue-vite-biome/index.html +13 -0
- package/template-vue-vite-biome/lefthook.yml +11 -0
- package/template-vue-vite-biome/package.json +50 -0
- package/template-vue-vite-biome/public/vite.svg +1 -0
- package/template-vue-vite-biome/src/App.vue +19 -0
- package/template-vue-vite-biome/src/assets/icon/vue.svg +1 -0
- package/template-vue-vite-biome/src/components/Icon/svg-icon.vue +29 -0
- package/template-vue-vite-biome/src/layout/default/index.vue +3 -0
- package/template-vue-vite-biome/src/main.ts +15 -0
- package/template-vue-vite-biome/src/router/guard/index.ts +7 -0
- package/template-vue-vite-biome/src/router/guard/permissionGuard.ts +13 -0
- package/template-vue-vite-biome/src/router/index.ts +17 -0
- package/template-vue-vite-biome/src/router/modules/index.ts +31 -0
- package/template-vue-vite-biome/src/store/index.ts +10 -0
- package/template-vue-vite-biome/src/store/modules/user.ts +17 -0
- package/template-vue-vite-biome/src/styles/element-plus-variables.css +4 -0
- package/template-vue-vite-biome/src/styles/font.scss +0 -0
- package/template-vue-vite-biome/src/styles/index.scss +31 -0
- package/template-vue-vite-biome/src/styles/variables.scss +3 -0
- package/template-vue-vite-biome/src/types/vite-env.d.ts +13 -0
- package/template-vue-vite-biome/src/utils/env.ts +10 -0
- package/template-vue-vite-biome/src/utils/request/core/index.ts +166 -0
- package/template-vue-vite-biome/src/utils/request/core/utils.ts +38 -0
- package/template-vue-vite-biome/src/utils/request/index.ts +39 -0
- package/template-vue-vite-biome/src/views/home/index.vue +16 -0
- package/template-vue-vite-biome/src/views/login/index.vue +11 -0
- package/template-vue-vite-biome/src/views/model/index.vue +7 -0
- package/{template-vue-rolldown-oxc/tsconfig.app.json → template-vue-vite-biome/tsconfig.json} +15 -4
- package/template-vue-vite-biome/uno.config.ts +10 -0
- package/template-vue-vite-biome/vite.config.ts +51 -0
- package/template-vue-vite-eslint/.env +4 -0
- package/template-vue-vite-eslint/.env.development +1 -0
- package/template-vue-vite-eslint/.env.production +1 -0
- package/template-vue-vite-eslint/.gitlab-ci.yml +84 -0
- package/template-vue-vite-eslint/.vscode/settings.json +54 -0
- package/template-vue-vite-eslint/README.md +3 -0
- package/template-vue-vite-eslint/commitlint.config.js +1 -0
- package/template-vue-vite-eslint/eslint.config.js +64 -0
- package/template-vue-vite-eslint/index.html +13 -0
- package/template-vue-vite-eslint/lefthook.yml +11 -0
- package/template-vue-vite-eslint/package.json +54 -0
- package/template-vue-vite-eslint/public/vite.svg +1 -0
- package/template-vue-vite-eslint/src/App.vue +19 -0
- package/template-vue-vite-eslint/src/assets/icon/vue.svg +1 -0
- package/template-vue-vite-eslint/src/components/Icon/svg-icon.vue +29 -0
- package/template-vue-vite-eslint/src/layout/default/index.vue +3 -0
- package/template-vue-vite-eslint/src/main.ts +16 -0
- package/template-vue-vite-eslint/src/router/guard/index.ts +7 -0
- package/template-vue-vite-eslint/src/router/guard/permissionGuard.ts +13 -0
- package/template-vue-vite-eslint/src/router/index.ts +18 -0
- package/template-vue-vite-eslint/src/router/modules/index.ts +31 -0
- package/template-vue-vite-eslint/src/store/index.ts +11 -0
- package/template-vue-vite-eslint/src/store/modules/user.ts +20 -0
- package/template-vue-vite-eslint/src/styles/element-plus-variables.css +4 -0
- package/template-vue-vite-eslint/src/styles/font.scss +0 -0
- package/template-vue-vite-eslint/src/styles/index.scss +30 -0
- package/template-vue-vite-eslint/src/styles/variables.scss +3 -0
- package/template-vue-vite-eslint/src/types/vite-env.d.ts +15 -0
- package/template-vue-vite-eslint/src/utils/env.ts +10 -0
- package/template-vue-vite-eslint/src/utils/request/core/index.ts +172 -0
- package/template-vue-vite-eslint/src/utils/request/core/utils.ts +41 -0
- package/template-vue-vite-eslint/src/utils/request/index.ts +39 -0
- package/template-vue-vite-eslint/src/views/home/index.vue +24 -0
- package/template-vue-vite-eslint/src/views/login/index.vue +9 -0
- package/template-vue-vite-eslint/src/views/model/index.vue +7 -0
- package/{template-vue-rolldown-oxc/tsconfig.node.json → template-vue-vite-eslint/tsconfig.json} +20 -9
- package/template-vue-vite-eslint/uno.config.ts +17 -0
- package/template-vue-vite-eslint/vite.config.ts +53 -0
- package/template-vue-rolldown-oxc/components.d.ts +0 -18
- package/template-vue-rolldown-oxc/src/types/auto-import.d.ts +0 -78
- package/template-vue-rolldown-oxc/src/types/components.d.ts +0 -16
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
|
3
|
+
import plusZhCn from 'plus-pro-components/es/locale/lang/zh-cn'
|
|
4
|
+
|
|
5
|
+
const locale = {
|
|
6
|
+
...zhCn,
|
|
7
|
+
...plusZhCn,
|
|
8
|
+
}
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<template>
|
|
12
|
+
<el-config-provider
|
|
13
|
+
:locale="locale"
|
|
14
|
+
>
|
|
15
|
+
<RouterView />
|
|
16
|
+
</el-config-provider>
|
|
17
|
+
</template>
|
|
18
|
+
|
|
19
|
+
<style scoped></style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="currentColor" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="currentColor" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg class="svg-icon" aria-hidden="true" v-bind="attrs">
|
|
3
|
+
<use :href="`#icon-${name}`" />
|
|
4
|
+
</svg>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script setup lang="ts">
|
|
8
|
+
const attrs = useAttrs()
|
|
9
|
+
defineProps<{
|
|
10
|
+
name: string
|
|
11
|
+
}>()
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<style lang="scss" scoped>
|
|
15
|
+
.svg-icon {
|
|
16
|
+
display: flex;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
align-items: center;
|
|
19
|
+
width: 1em;
|
|
20
|
+
height: 1em;
|
|
21
|
+
fill: currentColor;
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.svg-external-icon {
|
|
26
|
+
background-color: currentColor;
|
|
27
|
+
mask-size: cover !important;
|
|
28
|
+
}
|
|
29
|
+
</style>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import '@/styles/element-plus-variables.css'
|
|
2
|
+
import '@/styles/index.scss'
|
|
3
|
+
import 'virtual:svg-icons-register'
|
|
4
|
+
import 'virtual:uno.css'
|
|
5
|
+
|
|
6
|
+
import { createApp } from 'vue'
|
|
7
|
+
|
|
8
|
+
import App from './App.vue'
|
|
9
|
+
import { setupRouter } from './router'
|
|
10
|
+
import { setupStore } from './store'
|
|
11
|
+
|
|
12
|
+
const app = createApp(App)
|
|
13
|
+
setupRouter(app)
|
|
14
|
+
setupStore(app)
|
|
15
|
+
app.mount('#app')
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Router } from 'vue-router'
|
|
2
|
+
|
|
3
|
+
import NProgress from 'nprogress'
|
|
4
|
+
|
|
5
|
+
export const createPermissionGuard = (router: Router) => {
|
|
6
|
+
router.beforeEach((to, from, next) => {
|
|
7
|
+
NProgress.start()
|
|
8
|
+
next()
|
|
9
|
+
})
|
|
10
|
+
router.afterEach((to, from) => {
|
|
11
|
+
NProgress.done()
|
|
12
|
+
})
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { App } from 'vue'
|
|
2
|
+
import { createRouter, createWebHistory } from 'vue-router'
|
|
3
|
+
|
|
4
|
+
import { setupGuard } from './guard'
|
|
5
|
+
import { routes } from './modules'
|
|
6
|
+
|
|
7
|
+
export const router = createRouter({
|
|
8
|
+
history: createWebHistory(import.meta.env.PUBLIC_PATH),
|
|
9
|
+
routes: routes,
|
|
10
|
+
strict: true,
|
|
11
|
+
scrollBehavior: () => ({ left: 0, top: 0 }),
|
|
12
|
+
})
|
|
13
|
+
|
|
14
|
+
export const setupRouter = (app: App) => {
|
|
15
|
+
setupGuard(router)
|
|
16
|
+
app.use(router)
|
|
17
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { RouteRecordRaw } from 'vue-router'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* IsMaskAll 代表 是不是要和模型交互 为true 全部遮罩
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
export const routes: RouteRecordRaw[] = [
|
|
8
|
+
{
|
|
9
|
+
path: '/',
|
|
10
|
+
name: 'layout',
|
|
11
|
+
component: () => import('@/layout/default/index.vue'),
|
|
12
|
+
children: [
|
|
13
|
+
{
|
|
14
|
+
path: '/',
|
|
15
|
+
redirect: '/home',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
path: '/home',
|
|
19
|
+
name: 'Home',
|
|
20
|
+
meta: { title: '研发A区数字孪生可视化大屏' },
|
|
21
|
+
component: () => import('@/views/home/index.vue'),
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
path: '/login',
|
|
27
|
+
name: 'login',
|
|
28
|
+
meta: { title: '登录' },
|
|
29
|
+
component: () => import('@/views/login/index.vue'),
|
|
30
|
+
},
|
|
31
|
+
]
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { App } from 'vue'
|
|
2
|
+
import { createPinia } from 'pinia'
|
|
3
|
+
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
|
|
4
|
+
|
|
5
|
+
export const store = createPinia()
|
|
6
|
+
store.use(piniaPluginPersistedstate)
|
|
7
|
+
|
|
8
|
+
export const setupStore = (app: App) => {
|
|
9
|
+
app.use(store)
|
|
10
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { defineStore } from "pinia";
|
|
2
|
+
import { store } from "..";
|
|
3
|
+
|
|
4
|
+
export const useUserStore = defineStore(
|
|
5
|
+
'user',{
|
|
6
|
+
state: () => {
|
|
7
|
+
return {
|
|
8
|
+
name: 'admin',
|
|
9
|
+
token: 'admin',
|
|
10
|
+
avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif'
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
})
|
|
14
|
+
|
|
15
|
+
export function useUserStoreWithOut() {
|
|
16
|
+
return useUserStore(store);
|
|
17
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
@use './font.scss';
|
|
2
|
+
@use './variables.scss';
|
|
3
|
+
@use './element-plus-variables.css';
|
|
4
|
+
@unocss;
|
|
5
|
+
|
|
6
|
+
html,
|
|
7
|
+
body,
|
|
8
|
+
#root {
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 100%;
|
|
11
|
+
font-family: 'SourceHanSansCN';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
*,
|
|
15
|
+
*::before,
|
|
16
|
+
*::after {
|
|
17
|
+
margin: 0;
|
|
18
|
+
padding: 0;
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
//弹窗的标题样式
|
|
23
|
+
.dialog-title {
|
|
24
|
+
border-left: 3px solid #22b5ffff;
|
|
25
|
+
padding-left: 10px;
|
|
26
|
+
height: 16px;
|
|
27
|
+
color: #ffffffb8;
|
|
28
|
+
font: 700;
|
|
29
|
+
font-size: 16px;
|
|
30
|
+
line-height: 16px;
|
|
31
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
2
|
+
|
|
3
|
+
declare module '*.vue' {
|
|
4
|
+
import type { DefineComponent } from 'vue'
|
|
5
|
+
const component: DefineComponent<{}, {}, any>
|
|
6
|
+
export default component
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// vite-plugin-svg-icons 类型声明
|
|
10
|
+
declare module 'virtual:svg-icons-register' {
|
|
11
|
+
const register: () => void
|
|
12
|
+
export default register
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 通过一个文件导出所有的环境变量这样方便统一修改
|
|
3
|
+
* @returns
|
|
4
|
+
*/
|
|
5
|
+
export const envVariables = {
|
|
6
|
+
PUBLIC_PORT: import.meta.env.PUBLIC_PORT,
|
|
7
|
+
PUBLIC_PATH: import.meta.env.PUBLIC_PATH,
|
|
8
|
+
PUBLIC_APP_NAME: import.meta.env.PUBLIC_APP_NAME,
|
|
9
|
+
PUBLIC_API_AFFIX: import.meta.env.PUBLIC_API_AFFIX,
|
|
10
|
+
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import { type AlovaGenerics, type AlovaOptions, createAlova } from 'alova'
|
|
2
|
+
import { deepMergeObject, isReadableStream } from './utils'
|
|
3
|
+
import adapterFetch from 'alova/fetch'
|
|
4
|
+
|
|
5
|
+
interface statusMap {
|
|
6
|
+
success?: number
|
|
7
|
+
unAuthorized?: number
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
interface codeMap {
|
|
11
|
+
success?: number[]
|
|
12
|
+
unAuthorized?: number[]
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface baseRequestOption<AG extends AlovaGenerics> {
|
|
16
|
+
baseUrl?: string
|
|
17
|
+
timeout?: number
|
|
18
|
+
commonHeaders?: Record<string, string | (() => string)>
|
|
19
|
+
statusMap?: statusMap
|
|
20
|
+
codeMap?: codeMap
|
|
21
|
+
responseDataKey?: string
|
|
22
|
+
responseMessageKey?: string
|
|
23
|
+
isTransformResponse?: boolean
|
|
24
|
+
isShowSuccessMessage?: boolean
|
|
25
|
+
successDefaultMessage?: string
|
|
26
|
+
isShowErrorMessage?: boolean
|
|
27
|
+
errorDefaultMessage?: string
|
|
28
|
+
statesHook?: AlovaOptions<AG>['statesHook']
|
|
29
|
+
successMessageFunc?: (message: string) => void
|
|
30
|
+
errorMessageFunc?: (message: string) => void
|
|
31
|
+
unAuthorizedResponseFunc?: () => void
|
|
32
|
+
requestAdapter?: AlovaOptions<AG>['requestAdapter']
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface CustomConfig {
|
|
36
|
+
isTransformResponse?: boolean
|
|
37
|
+
isShowSuccessMessage?: boolean
|
|
38
|
+
isShowErrorMessage?: boolean
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
type requestOption = baseRequestOption<AlovaGenerics> & CustomConfig
|
|
42
|
+
|
|
43
|
+
export const createInstance = (option: requestOption) => {
|
|
44
|
+
const defaultOption: requestOption = {
|
|
45
|
+
baseUrl: '/',
|
|
46
|
+
timeout: 0,
|
|
47
|
+
statusMap: {
|
|
48
|
+
success: 200,
|
|
49
|
+
unAuthorized: 401,
|
|
50
|
+
},
|
|
51
|
+
codeMap: {
|
|
52
|
+
success: [200],
|
|
53
|
+
unAuthorized: [401],
|
|
54
|
+
},
|
|
55
|
+
responseDataKey: 'data',
|
|
56
|
+
responseMessageKey: 'message',
|
|
57
|
+
isTransformResponse: true,
|
|
58
|
+
isShowSuccessMessage: false,
|
|
59
|
+
successDefaultMessage: '操作成功',
|
|
60
|
+
isShowErrorMessage: true,
|
|
61
|
+
errorDefaultMessage: '服务异常',
|
|
62
|
+
requestAdapter: adapterFetch(),
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const mergeOption: baseRequestOption<AlovaGenerics> & CustomConfig = deepMergeObject(
|
|
66
|
+
defaultOption,
|
|
67
|
+
option,
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
const instance = createAlova({
|
|
71
|
+
baseURL: mergeOption.baseUrl,
|
|
72
|
+
timeout: mergeOption.timeout,
|
|
73
|
+
statesHook: mergeOption?.statesHook,
|
|
74
|
+
requestAdapter: mergeOption.requestAdapter as AlovaOptions<AlovaGenerics>['requestAdapter'],
|
|
75
|
+
beforeRequest: async (method) => {
|
|
76
|
+
for (const [key, value] of Object.entries(option?.commonHeaders ?? {})) {
|
|
77
|
+
method.config.headers[key] = typeof value === 'function' ? value() : value
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
responded: {
|
|
81
|
+
onSuccess: async (response) => {
|
|
82
|
+
if (!mergeOption?.isTransformResponse) return response
|
|
83
|
+
const { status } = response
|
|
84
|
+
|
|
85
|
+
// 判断响应类型:如果使用 adapterFetch,response.data 是可读流,则调用 json();否则直接使用 response.data
|
|
86
|
+
const data =
|
|
87
|
+
response?.body && isReadableStream(response.body)
|
|
88
|
+
? await response.json() // adapterFetch 的响应,使用 json() 解析可读流
|
|
89
|
+
: response.data // 其他适配器的响应
|
|
90
|
+
// 不成功的情况
|
|
91
|
+
if (status !== mergeOption.statusMap?.success) {
|
|
92
|
+
// 如果后端使用status 字段来表示未授权,则返回401
|
|
93
|
+
if (mergeOption?.statusMap?.unAuthorized === status) {
|
|
94
|
+
mergeOption?.unAuthorizedResponseFunc?.()
|
|
95
|
+
}
|
|
96
|
+
return Promise.reject(response)
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
const {
|
|
100
|
+
responseDataKey,
|
|
101
|
+
codeMap,
|
|
102
|
+
isShowSuccessMessage,
|
|
103
|
+
responseMessageKey,
|
|
104
|
+
isShowErrorMessage,
|
|
105
|
+
} = mergeOption
|
|
106
|
+
const {
|
|
107
|
+
code,
|
|
108
|
+
[responseDataKey as string]: responseData,
|
|
109
|
+
[responseMessageKey as string]: responseMessage,
|
|
110
|
+
} = data
|
|
111
|
+
if (!codeMap?.success?.includes(+code)) {
|
|
112
|
+
// code unAuthorized 处理
|
|
113
|
+
if (codeMap?.unAuthorized?.includes(+code)) {
|
|
114
|
+
mergeOption?.unAuthorizedResponseFunc?.()
|
|
115
|
+
return Promise.reject(response)
|
|
116
|
+
}
|
|
117
|
+
// 其他错误直接打印msg
|
|
118
|
+
|
|
119
|
+
const errorMessage = data[responseMessageKey as string] ?? mergeOption.errorDefaultMessage
|
|
120
|
+
if (isShowErrorMessage) mergeOption?.errorMessageFunc?.(errorMessage)
|
|
121
|
+
return Promise.reject(response)
|
|
122
|
+
}
|
|
123
|
+
if (isShowSuccessMessage)
|
|
124
|
+
mergeOption?.successMessageFunc?.(responseMessage ?? mergeOption.successDefaultMessage)
|
|
125
|
+
return responseData
|
|
126
|
+
},
|
|
127
|
+
onError: (error) => {
|
|
128
|
+
if (mergeOption?.isShowErrorMessage)
|
|
129
|
+
mergeOption.errorMessageFunc?.(
|
|
130
|
+
error.response?.data?.message ?? mergeOption?.errorDefaultMessage,
|
|
131
|
+
)
|
|
132
|
+
},
|
|
133
|
+
// onComplete: (_method) => {},
|
|
134
|
+
},
|
|
135
|
+
})
|
|
136
|
+
|
|
137
|
+
return instance
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// 🚀 创建双重调用实例的工厂函数
|
|
141
|
+
export const createDualCallInstance = (baseConfig: baseRequestOption<AlovaGenerics>) => {
|
|
142
|
+
// 创建默认实例
|
|
143
|
+
const defaultInstance = createInstance(baseConfig)
|
|
144
|
+
|
|
145
|
+
// 双重调用函数
|
|
146
|
+
const dualInstance = (option?: CustomConfig) => {
|
|
147
|
+
if (option) {
|
|
148
|
+
// 合并配置并创建新实例
|
|
149
|
+
const mergedConfig = { ...baseConfig, ...option }
|
|
150
|
+
return createInstance(mergedConfig)
|
|
151
|
+
}
|
|
152
|
+
return defaultInstance
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// 🎯 直接绑定 HTTP 方法,无需复杂类型注释
|
|
156
|
+
dualInstance.Get = defaultInstance.Get.bind(defaultInstance)
|
|
157
|
+
dualInstance.Post = defaultInstance.Post.bind(defaultInstance)
|
|
158
|
+
dualInstance.Put = defaultInstance.Put.bind(defaultInstance)
|
|
159
|
+
dualInstance.Delete = defaultInstance.Delete.bind(defaultInstance)
|
|
160
|
+
dualInstance.Patch = defaultInstance.Patch.bind(defaultInstance)
|
|
161
|
+
dualInstance.Head = defaultInstance.Head.bind(defaultInstance)
|
|
162
|
+
dualInstance.Options = defaultInstance.Options.bind(defaultInstance)
|
|
163
|
+
dualInstance.Request = defaultInstance.Request.bind(defaultInstance)
|
|
164
|
+
|
|
165
|
+
return dualInstance
|
|
166
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export const deepMergeObject = <T = any>(source: T, target: Partial<T>): T => {
|
|
2
|
+
const isObject = (obj: any): obj is Record<string, any> =>
|
|
3
|
+
obj && typeof obj === 'object' && !Array.isArray(obj)
|
|
4
|
+
|
|
5
|
+
const merge = (src: any, tgt: any): any => {
|
|
6
|
+
if (isObject(src) && isObject(tgt)) {
|
|
7
|
+
Object.keys(tgt).forEach((key) => {
|
|
8
|
+
if (isObject(tgt[key])) {
|
|
9
|
+
src[key] = merge(src[key] || {}, tgt[key])
|
|
10
|
+
} else {
|
|
11
|
+
src[key] = tgt[key]
|
|
12
|
+
}
|
|
13
|
+
})
|
|
14
|
+
}
|
|
15
|
+
return src
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return merge({ ...source }, target)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* 判断一个变量是不是可读流
|
|
23
|
+
* @param data
|
|
24
|
+
*/
|
|
25
|
+
export const isReadableStream = (data: unknown): boolean => {
|
|
26
|
+
if (!(data instanceof ReadableStream)) {
|
|
27
|
+
return false
|
|
28
|
+
}
|
|
29
|
+
if (typeof data.locked !== 'boolean') return false
|
|
30
|
+
|
|
31
|
+
const instanceFunc = ['cancel', 'getReader', 'pipeThrough', 'pipeTo', 'tee'] as const
|
|
32
|
+
|
|
33
|
+
for (const func of instanceFunc) {
|
|
34
|
+
if (typeof data[func] !== 'function') return false
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
return true
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { envVariables } from '../env'
|
|
2
|
+
import { createDualCallInstance } from './core'
|
|
3
|
+
import { router } from '@/router'
|
|
4
|
+
import { ElMessage } from 'element-plus'
|
|
5
|
+
import 'element-plus/es/components/message/style/css'
|
|
6
|
+
import vueHook from 'alova/vue'
|
|
7
|
+
import { axiosRequestAdapter } from '@alova/adapter-axios'
|
|
8
|
+
|
|
9
|
+
const getBaseConfig = (): Parameters<typeof createDualCallInstance>[0] => {
|
|
10
|
+
return {
|
|
11
|
+
baseUrl: `/${envVariables.PUBLIC_PORT}`,
|
|
12
|
+
statusMap: {
|
|
13
|
+
success: 200,
|
|
14
|
+
unAuthorized: 401,
|
|
15
|
+
},
|
|
16
|
+
codeMap: {
|
|
17
|
+
success: [200],
|
|
18
|
+
},
|
|
19
|
+
responseDataKey: 'data',
|
|
20
|
+
responseMessageKey: 'msg',
|
|
21
|
+
commonHeaders: {},
|
|
22
|
+
successMessageFunc: (msg: string) => {
|
|
23
|
+
ElMessage.success(msg)
|
|
24
|
+
},
|
|
25
|
+
errorMessageFunc: (msg: string) => {
|
|
26
|
+
ElMessage.error(msg)
|
|
27
|
+
},
|
|
28
|
+
unAuthorizedResponseFunc: () => {
|
|
29
|
+
router.push('/login')
|
|
30
|
+
ElMessage.error('登录过期或未登录')
|
|
31
|
+
},
|
|
32
|
+
statesHook: vueHook,
|
|
33
|
+
requestAdapter: axiosRequestAdapter(),
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const alovaRequest = createDualCallInstance(getBaseConfig())
|
|
38
|
+
|
|
39
|
+
export default alovaRequest
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import SvgIcon from '@/components/Icon/svg-icon.vue'
|
|
3
|
+
|
|
4
|
+
const a = ref()
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<template>
|
|
8
|
+
<div class="text-red flex-center">
|
|
9
|
+
home
|
|
10
|
+
<el-date-picker v-model="a" type="date" value-format="yyyy-MM-dd" />
|
|
11
|
+
<SvgIcon name="vue" class="text-green" />
|
|
12
|
+
<el-button type="primary">按钮</el-button>
|
|
13
|
+
</div>
|
|
14
|
+
</template>
|
|
15
|
+
|
|
16
|
+
<style lang="scss" scoped></style>
|
package/{template-vue-rolldown-oxc/tsconfig.app.json → template-vue-vite-biome/tsconfig.json}
RENAMED
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
3
2
|
"compilerOptions": {
|
|
4
|
-
"
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"useDefineForClassFields": true,
|
|
5
|
+
"module": "ESNext",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
|
+
"types": ["vite/client", "vue"],
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
|
|
10
|
+
/* Bundler mode */
|
|
11
|
+
"moduleResolution": "bundler",
|
|
12
|
+
"allowImportingTsExtensions": true,
|
|
13
|
+
"verbatimModuleSyntax": true,
|
|
14
|
+
"moduleDetection": "force",
|
|
15
|
+
"noEmit": true,
|
|
5
16
|
|
|
6
17
|
/* Linting */
|
|
7
18
|
"strict": true,
|
|
@@ -10,6 +21,7 @@
|
|
|
10
21
|
"erasableSyntaxOnly": true,
|
|
11
22
|
"noFallthroughCasesInSwitch": true,
|
|
12
23
|
"noUncheckedSideEffectImports": true,
|
|
24
|
+
|
|
13
25
|
"baseUrl": ".",
|
|
14
26
|
"paths": {
|
|
15
27
|
"@/*": ["src/*"]
|
|
@@ -17,9 +29,8 @@
|
|
|
17
29
|
},
|
|
18
30
|
"include": [
|
|
19
31
|
"src/**/*.ts",
|
|
20
|
-
"src/**/*.
|
|
32
|
+
"src/**/*.d.ts",
|
|
21
33
|
"src/**/*.vue",
|
|
22
|
-
"src/types/**/*",
|
|
23
34
|
"./node_modules/element-plus/global.d.ts"
|
|
24
35
|
]
|
|
25
36
|
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import path from 'node:path'
|
|
2
|
+
import Vue from '@vitejs/plugin-vue'
|
|
3
|
+
import AutoImport from 'unplugin-auto-import/vite'
|
|
4
|
+
import { defineConfig, loadEnv } from 'vite'
|
|
5
|
+
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
|
|
6
|
+
import Components from 'unplugin-vue-components/vite'
|
|
7
|
+
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
|
8
|
+
import Inspect from 'vite-plugin-inspect'
|
|
9
|
+
import UnoCSS from 'unocss/vite'
|
|
10
|
+
import { PlusProComponentsResolver } from '@plus-pro-components/resolver'
|
|
11
|
+
|
|
12
|
+
// https://vite.dev/config/
|
|
13
|
+
export default defineConfig(({ command, mode }) => {
|
|
14
|
+
const root = process.cwd()
|
|
15
|
+
const env = loadEnv(mode, root)
|
|
16
|
+
const { VITE_PORT } = env
|
|
17
|
+
|
|
18
|
+
return {
|
|
19
|
+
resolve: {
|
|
20
|
+
alias: {
|
|
21
|
+
'@': path.resolve(__dirname, 'src'),
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
server: {
|
|
25
|
+
port: Number(VITE_PORT),
|
|
26
|
+
host: '0.0.0.0',
|
|
27
|
+
open: false,
|
|
28
|
+
proxy: {},
|
|
29
|
+
},
|
|
30
|
+
plugins: [
|
|
31
|
+
Vue(),
|
|
32
|
+
AutoImport({
|
|
33
|
+
imports: ['vue', 'vue-router'],
|
|
34
|
+
resolvers: [ElementPlusResolver()],
|
|
35
|
+
dts: './src/types/auto-import.d.ts',
|
|
36
|
+
}),
|
|
37
|
+
Components({
|
|
38
|
+
resolvers: [ElementPlusResolver(), PlusProComponentsResolver()],
|
|
39
|
+
dts: './src/types/components.d.ts',
|
|
40
|
+
}),
|
|
41
|
+
createSvgIconsPlugin({
|
|
42
|
+
// Specify the icon folder to be cached
|
|
43
|
+
iconDirs: [path.resolve(__dirname, 'src/assets/icon')],
|
|
44
|
+
// Specify symbolId format
|
|
45
|
+
symbolId: 'icon-[dir]-[name]',
|
|
46
|
+
}),
|
|
47
|
+
UnoCSS(),
|
|
48
|
+
Inspect(),
|
|
49
|
+
],
|
|
50
|
+
}
|
|
51
|
+
})
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PUBLIC_API_URL = 'http://localhost:8080'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PUBLIC_API_URL = 'http://localhost:8080'
|