@gx-design-vue/create-gx-cli 0.0.4 → 0.0.5
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/package.json +1 -1
- package/src/main.js +1 -0
- package/template-design-pro/.editorconfig +19 -0
- package/template-design-pro/.env +2 -0
- package/template-design-pro/.env.development +18 -0
- package/template-design-pro/.env.pro +32 -0
- package/template-design-pro/.env.production +32 -0
- package/template-design-pro/.env.test +20 -0
- package/template-design-pro/.eslintignore +16 -0
- package/template-design-pro/.eslintrc.js +64 -0
- package/template-design-pro/.gitpod.yml +6 -0
- package/template-design-pro/.husky/pre-commit +4 -0
- package/template-design-pro/.prettierignore +9 -0
- package/template-design-pro/.stylelintignore +3 -0
- package/template-design-pro/.yarnclean +48 -0
- package/template-design-pro/LICENSE +21 -0
- package/template-design-pro/README.md +111 -0
- package/template-design-pro/build/constant.ts +6 -0
- package/template-design-pro/build/generate/generateModifyVars.ts +18 -0
- package/template-design-pro/build/getConfigFileName.ts +13 -0
- package/template-design-pro/build/script/buildConf.ts +44 -0
- package/template-design-pro/build/script/postBuild.ts +25 -0
- package/template-design-pro/build/script/reSetRootHtml.ts +20 -0
- package/template-design-pro/build/utils.ts +85 -0
- package/template-design-pro/build/vite/cdn.ts +7 -0
- package/template-design-pro/build/vite/optimizer.ts +22 -0
- package/template-design-pro/build/vite/plugin/autoImport.ts +18 -0
- package/template-design-pro/build/vite/plugin/compress.ts +35 -0
- package/template-design-pro/build/vite/plugin/hmr.ts +25 -0
- package/template-design-pro/build/vite/plugin/html.ts +47 -0
- package/template-design-pro/build/vite/plugin/index.ts +89 -0
- package/template-design-pro/build/vite/plugin/mock.ts +20 -0
- package/template-design-pro/build/vite/plugin/pwa.ts +37 -0
- package/template-design-pro/build/vite/plugin/styleImport.ts +129 -0
- package/template-design-pro/build/vite/plugin/visualizer.ts +17 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-antd-theme/index.ts +24 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/createMockServer.ts +303 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/createProdMockServer.ts +93 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/index.ts +68 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/types.ts +30 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/utils.ts +26 -0
- package/template-design-pro/commitlint.config.js +32 -0
- package/template-design-pro/config/config.ts +14 -0
- package/template-design-pro/config/default/animate.ts +30 -0
- package/template-design-pro/config/default/defaultSettings.ts +75 -0
- package/template-design-pro/config/default/network.ts +16 -0
- package/template-design-pro/config/default/proxy.ts +26 -0
- package/template-design-pro/config/default/theme.ts +43 -0
- package/template-design-pro/config/default/themeColor.ts +62 -0
- package/template-design-pro/index.html +45 -0
- package/template-design-pro/jest.config.mjs +36 -0
- package/template-design-pro/mock/_createProductionServer.ts +19 -0
- package/template-design-pro/mock/_util.ts +55 -0
- package/template-design-pro/mock/controller/menu.ts +85 -0
- package/template-design-pro/mock/controller/notices.ts +114 -0
- package/template-design-pro/mock/system/dict.ts +60 -0
- package/template-design-pro/mock/system/user.ts +218 -0
- package/template-design-pro/package.json +151 -0
- package/template-design-pro/pnpm-lock.yaml +9913 -0
- package/template-design-pro/postcss.config.js +5 -0
- package/template-design-pro/prettier.config.js +18 -0
- package/template-design-pro/public/resource/css/index.css +171 -0
- package/template-design-pro/public/resource/img/favicon.ico +0 -0
- package/template-design-pro/public/resource/img/logo.png +0 -0
- package/template-design-pro/public/resource/img/pro_icon.svg +5 -0
- package/template-design-pro/public/resource/img/pwa-192x192.png +0 -0
- package/template-design-pro/public/resource/img/pwa-512x512.png +0 -0
- package/template-design-pro/src/App.vue +47 -0
- package/template-design-pro/src/assets/error_images/403.png +0 -0
- package/template-design-pro/src/assets/error_images/404.png +0 -0
- package/template-design-pro/src/assets/error_images/cloud.png +0 -0
- package/template-design-pro/src/assets/login_images/login_background.svg +69 -0
- package/template-design-pro/src/assets/logo.png +0 -0
- package/template-design-pro/src/assets/menu_font/iconfont.css +94 -0
- package/template-design-pro/src/assets/menu_font/iconfont.eot +0 -0
- package/template-design-pro/src/assets/menu_font/iconfont.js +1 -0
- package/template-design-pro/src/assets/menu_font/iconfont.json +142 -0
- package/template-design-pro/src/assets/menu_font/iconfont.svg +57 -0
- package/template-design-pro/src/assets/menu_font/iconfont.ttf +0 -0
- package/template-design-pro/src/assets/menu_font/iconfont.woff +0 -0
- package/template-design-pro/src/assets/menu_font/iconfont.woff2 +0 -0
- package/template-design-pro/src/assets/menu_font/index.less +94 -0
- package/template-design-pro/src/common/global.ts +1 -0
- package/template-design-pro/src/components/GDesign/ProLayout/BasicLayout.less +80 -0
- package/template-design-pro/src/components/GDesign/ProLayout/BasicLayout.tsx +342 -0
- package/template-design-pro/src/components/GDesign/ProLayout/PageLoading.tsx +20 -0
- package/template-design-pro/src/components/GDesign/ProLayout/RenderTypings.ts +31 -0
- package/template-design-pro/src/components/GDesign/ProLayout/RouteContext.tsx +82 -0
- package/template-design-pro/src/components/GDesign/ProLayout/WrapContent.tsx +69 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalFooter/index.tsx +88 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/DefaultHeader.tsx +189 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/Header.less +8 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/index.tsx +105 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/props.ts +69 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/style.less +144 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/LogoContent/index.tsx +81 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/LogoContent/props.ts +29 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/MultiTab/index.tsx +384 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/MultiTab/props.ts +15 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/MultiTab/style.less +79 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/NoticeIcon.tsx +148 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/NoticeList.module.less +115 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/NoticeList.tsx +154 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/index.less +39 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/index.tsx +133 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/PageContainer/index.tsx +190 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/PageContainer/props.ts +48 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/PageContainer/style.less +128 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/PageContainer/typings.ts +0 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/AvatarDropdown.tsx +63 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/HeaderSearch.tsx +122 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/headerSearch.less +30 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/index.tsx +95 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/style.less +90 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SettingDrawer/BlockCheckbox.tsx +70 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SettingDrawer/LayoutSetting.tsx +107 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SettingDrawer/ThemeColor.tsx +68 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SettingDrawer/index.tsx +346 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/BaseMenu.tsx +224 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/SiderMenu.tsx +224 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/index.tsx +43 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/props.ts +112 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/style.less +262 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/typings.ts +44 -0
- package/template-design-pro/src/components/GDesign/ProLayout/default.less +2 -0
- package/template-design-pro/src/components/GDesign/ProLayout/defaultSettings.ts +121 -0
- package/template-design-pro/src/components/GDesign/ProLayout/hooks/context/index.ts +45 -0
- package/template-design-pro/src/components/GDesign/ProLayout/index.ts +43 -0
- package/template-design-pro/src/components/GDesign/ProLayout/props.ts +57 -0
- package/template-design-pro/src/components/GDesign/ProLayout/style.less +272 -0
- package/template-design-pro/src/components/GDesign/ProLayout/typings.ts +1 -0
- package/template-design-pro/src/components/GDesign/ProLayout/utils/getMenuData.ts +31 -0
- package/template-design-pro/src/components/GDesign/ProLayout/utils/index.ts +94 -0
- package/template-design-pro/src/components/GDesign/ProLayout/utils/isImg/index.ts +6 -0
- package/template-design-pro/src/components/GDesign/ProLayout/utils/isUrl/index.ts +5 -0
- package/template-design-pro/src/components/GDesign/Result/index.tsx +142 -0
- package/template-design-pro/src/components/GDesign/Result/style.less +140 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/components/Bar/index.tsx +56 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/components/Bar/props.ts +23 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/components/Thumb/index.tsx +164 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/components/Thumb/props.ts +11 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/context.ts +10 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/index.tsx +200 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/props.ts +65 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/style.less +85 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/util.ts +40 -0
- package/template-design-pro/src/components/GDesign/utils/index.ts +7 -0
- package/template-design-pro/src/components/PageLoading/index.tsx +44 -0
- package/template-design-pro/src/components/PageTransition/index.vue +98 -0
- package/template-design-pro/src/components/index.ts +6 -0
- package/template-design-pro/src/core/ant-design/index.ts +14 -0
- package/template-design-pro/src/core/gx-admin-design/index.ts +7 -0
- package/template-design-pro/src/core/gx-admin-directives/index.ts +8 -0
- package/template-design-pro/src/core/gx-admin-directives/permission.ts +28 -0
- package/template-design-pro/src/core/gx-design/index.ts +7 -0
- package/template-design-pro/src/core/gx-pro-design/index.ts +10 -0
- package/template-design-pro/src/core/index.ts +27 -0
- package/template-design-pro/src/design/ant-design/index.less +4 -0
- package/template-design-pro/src/design/ant-design/layout.less +29 -0
- package/template-design-pro/src/design/ant-design/menu.less +55 -0
- package/template-design-pro/src/design/ant-design/table.less +67 -0
- package/template-design-pro/src/design/ant-design/tooltip.less +13 -0
- package/template-design-pro/src/design/color.less +1 -0
- package/template-design-pro/src/design/config.less +5 -0
- package/template-design-pro/src/design/index.less +41 -0
- package/template-design-pro/src/design/mixin.less +66 -0
- package/template-design-pro/src/design/normalize.less +390 -0
- package/template-design-pro/src/global.less +15 -0
- package/template-design-pro/src/hooks/core/index.ts +3 -0
- package/template-design-pro/src/hooks/core/useRequest/index.ts +70 -0
- package/template-design-pro/src/hooks/core/useRequest/typings.ts +0 -0
- package/template-design-pro/src/hooks/event/index.ts +3 -0
- package/template-design-pro/src/hooks/event/useClipboard.ts +14 -0
- package/template-design-pro/src/hooks/system/index.ts +5 -0
- package/template-design-pro/src/hooks/system/useDict.ts +62 -0
- package/template-design-pro/src/hooks/system/usePermissions.ts +39 -0
- package/template-design-pro/src/hooks/typings.ts +17 -0
- package/template-design-pro/src/layout/BasicLayout.vue +104 -0
- package/template-design-pro/src/layout/BlankLayout.vue +5 -0
- package/template-design-pro/src/layout/ContentView.vue +76 -0
- package/template-design-pro/src/layout/IframeView.vue +1 -0
- package/template-design-pro/src/layout/UserLayout.vue +7 -0
- package/template-design-pro/src/main.ts +34 -0
- package/template-design-pro/src/plugins/index.ts +3 -0
- package/template-design-pro/src/router/guard/index.ts +84 -0
- package/template-design-pro/src/router/guard/permissions.ts +73 -0
- package/template-design-pro/src/router/guard/stateGuard.ts +11 -0
- package/template-design-pro/src/router/helper/routeHelper.ts +244 -0
- package/template-design-pro/src/router/helper/utils.ts +19 -0
- package/template-design-pro/src/router/index.ts +30 -0
- package/template-design-pro/src/router/routes/index.ts +85 -0
- package/template-design-pro/src/router/routes/modules/workplace.ts +19 -0
- package/template-design-pro/src/services/common/index.ts +11 -0
- package/template-design-pro/src/services/controller/router.ts +10 -0
- package/template-design-pro/src/services/controller/user.ts +35 -0
- package/template-design-pro/src/services/system/dictData.ts +10 -0
- package/template-design-pro/src/services/system/notices.ts +9 -0
- package/template-design-pro/src/store/index.ts +32 -0
- package/template-design-pro/src/store/modules/dict.ts +27 -0
- package/template-design-pro/src/store/modules/permission.ts +19 -0
- package/template-design-pro/src/store/modules/routes.ts +110 -0
- package/template-design-pro/src/store/modules/settings.ts +102 -0
- package/template-design-pro/src/store/modules/tabsRouter.ts +73 -0
- package/template-design-pro/src/store/modules/user.ts +153 -0
- package/template-design-pro/src/utils/accessToken.ts +93 -0
- package/template-design-pro/src/utils/crypto.ts +39 -0
- package/template-design-pro/src/utils/env.ts +52 -0
- package/template-design-pro/src/utils/fetchFile.ts +79 -0
- package/template-design-pro/src/utils/index.ts +127 -0
- package/template-design-pro/src/utils/pageTitle.ts +17 -0
- package/template-design-pro/src/utils/request/XHR.ts +131 -0
- package/template-design-pro/src/utils/request/axiosCancel.ts +60 -0
- package/template-design-pro/src/utils/request/checkStatus.ts +26 -0
- package/template-design-pro/src/utils/request/index.ts +145 -0
- package/template-design-pro/src/utils/request/typings.ts +114 -0
- package/template-design-pro/src/utils/storage.ts +194 -0
- package/template-design-pro/src/utils/uploadFile.ts +26 -0
- package/template-design-pro/src/utils/util.ts +278 -0
- package/template-design-pro/src/utils/validate.ts +221 -0
- package/template-design-pro/src/views/Iframe/index.vue +76 -0
- package/template-design-pro/src/views/MenuOne/index.vue +15 -0
- package/template-design-pro/src/views/MenuTwo/index.vue +13 -0
- package/template-design-pro/src/views/exception/403/index.vue +9 -0
- package/template-design-pro/src/views/exception/404/index.vue +9 -0
- package/template-design-pro/src/views/user/login/index.vue +110 -0
- package/template-design-pro/src/views/user/login/style.less +38 -0
- package/template-design-pro/stylelint.config.js +106 -0
- package/template-design-pro/tests/__mocks__/fileMock.ts +1 -0
- package/template-design-pro/tests/__mocks__/styleMock.ts +1 -0
- package/template-design-pro/tests/__mocks__/workerMock.ts +5 -0
- package/template-design-pro/tests/server/README.md +15 -0
- package/template-design-pro/tests/server/controller/FileController.ts +18 -0
- package/template-design-pro/tests/server/controller/UserController.ts +15 -0
- package/template-design-pro/tests/server/ecosystem.config.js +18 -0
- package/template-design-pro/tests/server/index.ts +63 -0
- package/template-design-pro/tests/server/nodemon.json +8 -0
- package/template-design-pro/tests/server/package.json +36 -0
- package/template-design-pro/tests/server/routes.ts +23 -0
- package/template-design-pro/tests/server/service/FileService.ts +54 -0
- package/template-design-pro/tests/server/service/UserService.ts +25 -0
- package/template-design-pro/tests/server/tsconfig.json +15 -0
- package/template-design-pro/tests/server/utils.ts +9 -0
- package/template-design-pro/tests/server/yarn.lock +2955 -0
- package/template-design-pro/tests/test.spec.ts +16 -0
- package/template-design-pro/tsconfig.json +47 -0
- package/template-design-pro/types/auto-imports.d.ts +61 -0
- package/template-design-pro/types/config.d.ts +100 -0
- package/template-design-pro/types/global.d.ts +103 -0
- package/template-design-pro/types/gx-components.d.ts +24 -0
- package/template-design-pro/types/index.d.ts +13 -0
- package/template-design-pro/types/mock.d.ts +23 -0
- package/template-design-pro/types/module.d.ts +16 -0
- package/template-design-pro/types/response.d.ts +15 -0
- package/template-design-pro/types/route.d.ts +89 -0
- package/template-design-pro/vite.config.ts +136 -0
- package/template-design-pro/yarn.lock +9697 -0
package/package.json
CHANGED
package/src/main.js
CHANGED
@@ -92,6 +92,7 @@ export async function createProject(options) {
|
|
92
92
|
// 下载git代码
|
93
93
|
download(`direct:${downloadGit.git}`, root, { clone: true }, async function(err) {
|
94
94
|
if (err) {
|
95
|
+
console.log(err)
|
95
96
|
spinner.error({ text: '下载失败' })
|
96
97
|
} else {
|
97
98
|
await editPackageJson(root, options.projectName || getProjectName())
|
@@ -0,0 +1,19 @@
|
|
1
|
+
root = true
|
2
|
+
|
3
|
+
[*]
|
4
|
+
charset=utf-8
|
5
|
+
end_of_line=lf
|
6
|
+
insert_final_newline=true
|
7
|
+
indent_style=space
|
8
|
+
indent_size=2
|
9
|
+
max_line_length = 100
|
10
|
+
|
11
|
+
[*.{yml,yaml,json}]
|
12
|
+
indent_style = space
|
13
|
+
indent_size = 2
|
14
|
+
|
15
|
+
[*.md]
|
16
|
+
trim_trailing_whitespace = false
|
17
|
+
|
18
|
+
[Makefile]
|
19
|
+
indent_style = tab
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# 实际执行环境 development
|
2
|
+
VITE_NODE_ENV= development
|
3
|
+
|
4
|
+
# environment 代码环境
|
5
|
+
VITE_USE_MODE = development
|
6
|
+
|
7
|
+
# 是否开启mock
|
8
|
+
VITE_USE_MOCK = true
|
9
|
+
|
10
|
+
# 是否删除console
|
11
|
+
VITE_DROP_CONSOLE = false
|
12
|
+
|
13
|
+
# api前缀
|
14
|
+
VITE_BASE_URL=/api
|
15
|
+
|
16
|
+
# oss信息
|
17
|
+
VITE_OSS_BUCKET = oss-*
|
18
|
+
VITE_OSS_ORIGIN = oss-cn-*
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# 实际执行环境 production
|
2
|
+
VITE_NODE_ENV= production
|
3
|
+
|
4
|
+
# environment 代码环境
|
5
|
+
VITE_USE_MODE = production
|
6
|
+
|
7
|
+
# 是否开启mock
|
8
|
+
VITE_USE_MOCK = true
|
9
|
+
|
10
|
+
# 是否删除console
|
11
|
+
VITE_DROP_CONSOLE = false
|
12
|
+
|
13
|
+
# Whether to enable gzip or brotli compression
|
14
|
+
# Optional: gzip | brotli | none
|
15
|
+
# If you need multiple forms, you can use `,` to separate
|
16
|
+
VITE_BUILD_COMPRESS = 'none'
|
17
|
+
|
18
|
+
# 使用压缩时是否删除源文件,默认为false
|
19
|
+
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false
|
20
|
+
|
21
|
+
# 是否使用pwa
|
22
|
+
VITE_USE_PWA = false
|
23
|
+
|
24
|
+
# 是否为打包后的文件提供传统浏览器兼容性支持
|
25
|
+
VITE_LEGACY = false
|
26
|
+
|
27
|
+
# api前缀
|
28
|
+
VITE_BASE_URL=/mock-server
|
29
|
+
|
30
|
+
# oss信息
|
31
|
+
VITE_OSS_BUCKET = oss-*
|
32
|
+
VITE_OSS_ORIGIN = oss-cn-*
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# 实际执行环境 test
|
2
|
+
VITE_NODE_ENV= test
|
3
|
+
|
4
|
+
# environment 代码环境
|
5
|
+
VITE_USE_MODE = test
|
6
|
+
|
7
|
+
# 是否开启mock
|
8
|
+
VITE_USE_MOCK = true
|
9
|
+
|
10
|
+
# 是否删除console
|
11
|
+
VITE_DROP_CONSOLE = false
|
12
|
+
|
13
|
+
# Whether to enable gzip or brotli compression
|
14
|
+
# Optional: gzip | brotli | none
|
15
|
+
# If you need multiple forms, you can use `,` to separate
|
16
|
+
VITE_BUILD_COMPRESS = 'none'
|
17
|
+
|
18
|
+
# 使用压缩时是否删除源文件,默认为false
|
19
|
+
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false
|
20
|
+
|
21
|
+
# 是否使用pwa
|
22
|
+
VITE_USE_PWA = false
|
23
|
+
|
24
|
+
# 是否为打包后的文件提供传统浏览器兼容性支持
|
25
|
+
VITE_LEGACY = false
|
26
|
+
|
27
|
+
# api前缀
|
28
|
+
VITE_BASE_URL=/mock-server
|
29
|
+
|
30
|
+
# oss信息
|
31
|
+
VITE_OSS_BUCKET = oss-*
|
32
|
+
VITE_OSS_ORIGIN = oss-cn-*
|
@@ -0,0 +1,20 @@
|
|
1
|
+
VITE_NODE_ENV=production
|
2
|
+
# Whether to open mock
|
3
|
+
VITE_USE_MOCK = true
|
4
|
+
|
5
|
+
# Delete console
|
6
|
+
VITE_DROP_CONSOLE = true
|
7
|
+
|
8
|
+
# Whether to enable gzip or brotli compression
|
9
|
+
# Optional: gzip | brotli | none
|
10
|
+
# If you need multiple forms, you can use `,` to separate
|
11
|
+
VITE_BUILD_COMPRESS = 'none'
|
12
|
+
|
13
|
+
# Whether to delete origin files when using compress, default false
|
14
|
+
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false
|
15
|
+
|
16
|
+
# use pwa
|
17
|
+
VITE_USE_PWA = false
|
18
|
+
|
19
|
+
# Is it compatible with older browsers
|
20
|
+
VITE_LEGACY = false
|
@@ -0,0 +1,64 @@
|
|
1
|
+
module.exports = {
|
2
|
+
root: true,
|
3
|
+
env: {
|
4
|
+
browser: true,
|
5
|
+
node: true,
|
6
|
+
es6: true,
|
7
|
+
},
|
8
|
+
parser: 'vue-eslint-parser',
|
9
|
+
parserOptions: {
|
10
|
+
parser: '@typescript-eslint/parser',
|
11
|
+
ecmaVersion: 2020,
|
12
|
+
sourceType: 'module',
|
13
|
+
jsxPragma: 'React',
|
14
|
+
ecmaFeatures: {
|
15
|
+
jsx: true,
|
16
|
+
},
|
17
|
+
},
|
18
|
+
extends: [
|
19
|
+
'plugin:vue/vue3-recommended',
|
20
|
+
'plugin:@typescript-eslint/recommended'
|
21
|
+
],
|
22
|
+
rules: {
|
23
|
+
'vue/script-setup-uses-vars': 'error',
|
24
|
+
'@typescript-eslint/ban-ts-ignore': 'off',
|
25
|
+
'@typescript-eslint/explicit-function-return-type': 'off',
|
26
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
27
|
+
'@typescript-eslint/no-var-requires': 'off',
|
28
|
+
'@typescript-eslint/no-empty-function': 'off',
|
29
|
+
'vue/custom-event-name-casing': 'off',
|
30
|
+
'no-use-before-define': 'off',
|
31
|
+
'@typescript-eslint/no-use-before-define': 'off',
|
32
|
+
'@typescript-eslint/ban-ts-comment': 'off',
|
33
|
+
'@typescript-eslint/ban-types': 'off',
|
34
|
+
'@typescript-eslint/no-non-null-assertion': 'off',
|
35
|
+
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
36
|
+
'@typescript-eslint/no-unused-vars': [
|
37
|
+
'error',
|
38
|
+
{
|
39
|
+
argsIgnorePattern: '^_',
|
40
|
+
varsIgnorePattern: '^_',
|
41
|
+
},
|
42
|
+
],
|
43
|
+
'no-unused-vars': [
|
44
|
+
'error',
|
45
|
+
{
|
46
|
+
argsIgnorePattern: '^_',
|
47
|
+
varsIgnorePattern: '^_',
|
48
|
+
},
|
49
|
+
],
|
50
|
+
'space-before-function-paren': 'off',
|
51
|
+
|
52
|
+
'vue/attributes-order': 'off',
|
53
|
+
'vue/one-component-per-file': 'off',
|
54
|
+
'vue/html-closing-bracket-newline': 'off',
|
55
|
+
'vue/max-attributes-per-line': 'off',
|
56
|
+
'vue/multiline-html-element-content-newline': 'off',
|
57
|
+
'vue/singleline-html-element-content-newline': 'off',
|
58
|
+
'vue/attribute-hyphenation': 'off',
|
59
|
+
'vue/require-default-prop': 'off',
|
60
|
+
'vue/require-explicit-emits': 'off',
|
61
|
+
'vue/html-self-closing': 0,
|
62
|
+
'vue/multi-word-component-names': 'off',
|
63
|
+
},
|
64
|
+
};
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# test directories
|
2
|
+
__tests__
|
3
|
+
test
|
4
|
+
tests
|
5
|
+
powered-test
|
6
|
+
|
7
|
+
# asset directories
|
8
|
+
docs
|
9
|
+
doc
|
10
|
+
website
|
11
|
+
images
|
12
|
+
assets
|
13
|
+
|
14
|
+
# examples
|
15
|
+
example
|
16
|
+
examples
|
17
|
+
|
18
|
+
# code coverage directories
|
19
|
+
coverage
|
20
|
+
.nyc_output
|
21
|
+
|
22
|
+
# build scripts
|
23
|
+
Makefile
|
24
|
+
Gulpfile.js
|
25
|
+
Gruntfile.js
|
26
|
+
|
27
|
+
# configs
|
28
|
+
appveyor.yml
|
29
|
+
circle.yml
|
30
|
+
codeship-services.yml
|
31
|
+
codeship-steps.yml
|
32
|
+
wercker.yml
|
33
|
+
.tern-project
|
34
|
+
.gitattributes
|
35
|
+
.editorconfig
|
36
|
+
.*ignore
|
37
|
+
.eslintrc
|
38
|
+
.jshintrc
|
39
|
+
.flowconfig
|
40
|
+
.documentup.json
|
41
|
+
.yarn-metadata.json
|
42
|
+
.travis.yml
|
43
|
+
|
44
|
+
# misc
|
45
|
+
*.md
|
46
|
+
|
47
|
+
!istanbul-reports/lib/html/assets
|
48
|
+
!istanbul-api/node_modules/istanbul-reports/lib/html/assets
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2021 gx12358
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1,111 @@
|
|
1
|
+
<div align="center"> <a href="https://gitee.com/gx12358/vite-admin-pro"> <img alt="VbenAdmin Logo" width="200" height="200" src="https://zbbf9-hw.ahtv.cn/ahtv-obs/20210811/d5b6f8d7-b759-243d-b8f3-906a6b8570bf.png"> </a> <br> <br>
|
2
|
+
|
3
|
+
<h1>GX Pro Admin(Ant Design Vue)</h1>
|
4
|
+
</div>
|
5
|
+
|
6
|
+
## 简介
|
7
|
+
|
8
|
+
GX Pro Admin 是一个免费开源的中后台模版。使用了最新的`vue3.0+`,`vite2`,`TypeScript`, `Ant Design Vue3.0+`等主流技术开发,开箱即用的中后台前端解决方案,也可用于学习参考。
|
9
|
+
|
10
|
+
## 特性
|
11
|
+
|
12
|
+
- **最新技术栈**:使用 Vue3/vite2 等前端前沿技术开发
|
13
|
+
- **TypeScript**: 应用程序级 JavaScript 的语言
|
14
|
+
- **主题**:可配置的主题
|
15
|
+
- **Mock 数据** 内置 Mock 数据方案
|
16
|
+
- **权限** 内置完善的动态路由权限生成方案
|
17
|
+
- **组件** 二次封装了多个常用的组件
|
18
|
+
|
19
|
+
## 预览
|
20
|
+
|
21
|
+
- [🚀 pro 版演示地址](http://121.36.16.172:9000/gx.pro.admin)
|
22
|
+
|
23
|
+
测试账号: admin/123456
|
24
|
+
|
25
|
+
## 准备
|
26
|
+
|
27
|
+
- [node](http://nodejs.org/) 和 [git](https://git-scm.com/) -项目开发环境
|
28
|
+
- [Vite](https://vitejs.dev/) - 熟悉 vite 特性
|
29
|
+
- [Vue3](https://v3.vuejs.org/) - 熟悉 Vue 基础语法
|
30
|
+
- [TypeScript](https://www.typescriptlang.org/) - 熟悉`TypeScript`基本语法
|
31
|
+
- [Es6+](http://es6.ruanyifeng.com/) - 熟悉 es6 基本语法
|
32
|
+
- [Vue-Router-Next](https://next.router.vuejs.org/) - 熟悉 vue-router 基本使用
|
33
|
+
- [Ant-Design-Vue](https://next.antdv.com/components/overview-cn/) - ui 基本使用
|
34
|
+
- [Mock.js](https://github.com/nuysoft/Mock) - mockjs 基本语法
|
35
|
+
|
36
|
+
## 安装使用
|
37
|
+
|
38
|
+
- 获取项目代码
|
39
|
+
|
40
|
+
```bash
|
41
|
+
git clone https://gitee.com/gx12358/vite-admin-pro
|
42
|
+
```
|
43
|
+
|
44
|
+
- 安装依赖
|
45
|
+
|
46
|
+
```bash
|
47
|
+
cd gx-admin-pro
|
48
|
+
|
49
|
+
yarn install
|
50
|
+
|
51
|
+
```
|
52
|
+
|
53
|
+
- 运行
|
54
|
+
|
55
|
+
```bash
|
56
|
+
yarn serve
|
57
|
+
```
|
58
|
+
|
59
|
+
- 打包
|
60
|
+
|
61
|
+
```bash
|
62
|
+
yarn build
|
63
|
+
```
|
64
|
+
|
65
|
+
## Git 贡献提交规范
|
66
|
+
|
67
|
+
- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
|
68
|
+
|
69
|
+
- `feat` 增加新功能
|
70
|
+
- `fix` 修复问题/BUG
|
71
|
+
- `style` 代码风格相关无影响运行结果的
|
72
|
+
- `perf` 优化/性能提升
|
73
|
+
- `refactor` 重构
|
74
|
+
- `revert` 撤销修改
|
75
|
+
- `test` 测试相关
|
76
|
+
- `docs` 文档/注释
|
77
|
+
- `chore` 依赖更新/脚手架配置修改等
|
78
|
+
- `workflow` 工作流改进
|
79
|
+
- `ci` 持续集成
|
80
|
+
- `types` 类型定义文件更改
|
81
|
+
- `wip` 开发中
|
82
|
+
|
83
|
+
## 浏览器支持
|
84
|
+
|
85
|
+
本地开发推荐使用`Chrome 80+` 浏览器
|
86
|
+
|
87
|
+
支持现代浏览器, 不支持 IE
|
88
|
+
|
89
|
+
## 相关仓库
|
90
|
+
|
91
|
+
如果这些插件对你有帮助,可以给一个 star 支持下
|
92
|
+
|
93
|
+
- [vite-plugin-html](https://github.com/anncwb/vite-plugin-html) - 用于 html 模版转换及压缩
|
94
|
+
- [vite-plugin-style-import](https://github.com/anncwb/vite-plugin-style-import) - 用于组件库样式按需引入
|
95
|
+
- [vite-plugin-imagemin](https://github.com/anncwb/vite-plugin-imagemin) - 用于打包压缩图片资源
|
96
|
+
- [vite-plugin-compression](https://github.com/anncwb/vite-plugin-compression) - 用于打包输出.gz|.brotil 文件
|
97
|
+
- [vite-plugin-svg-icons](https://github.com/anncwb/vite-plugin-svg-icons) - 用于快速生成 svg 雪碧图
|
98
|
+
|
99
|
+
## 维护者
|
100
|
+
|
101
|
+
[@gx12358](https://gitee.com/gx12358)
|
102
|
+
|
103
|
+
## 交流
|
104
|
+
|
105
|
+
`GX-ADMIN-PRO` 是完全开源免费的项目,在帮助开发者更方便地进行中大型管理系统开发,同时也提供 QQ 交流群使用问题欢迎在群内提问。
|
106
|
+
|
107
|
+
- QQ 群 `871430530`
|
108
|
+
|
109
|
+
## License
|
110
|
+
|
111
|
+
[MIT © gx12358-2021](./LICENSE)
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { getThemeVariables } from 'ant-design-vue/dist/theme'
|
2
|
+
import { resolve } from 'path'
|
3
|
+
import config from '../../config/config'
|
4
|
+
|
5
|
+
export function generateModifyVars(viteEnv: ViteEnv) {
|
6
|
+
const { VITE_USE_THEME } = viteEnv
|
7
|
+
|
8
|
+
const modifyVars = getThemeVariables()
|
9
|
+
|
10
|
+
const modifyVarsParams = {
|
11
|
+
...modifyVars,
|
12
|
+
hack: `${modifyVars.hack} @import (reference) "${resolve('src/design/config.less')}";`
|
13
|
+
}
|
14
|
+
|
15
|
+
if (!VITE_USE_THEME) modifyVarsParams['primary-color'] = config.theme.primaryColor
|
16
|
+
|
17
|
+
return modifyVarsParams
|
18
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/**
|
2
|
+
* Get the configuration file variable name
|
3
|
+
* @param env
|
4
|
+
*/
|
5
|
+
import config from '../config/config'
|
6
|
+
|
7
|
+
const { shortName } = config.defaultSettings
|
8
|
+
|
9
|
+
export const getConfigFileName = (_: RecordType) => {
|
10
|
+
return `__PRODUCTION__${shortName || '__APP'}__CONF__`
|
11
|
+
.toUpperCase()
|
12
|
+
.replace(/\s/g, '')
|
13
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
/**
|
2
|
+
* Generate additional configuration files when used for packaging. The file can be configured with some global variables, so that it can be changed directly externally without repackaging
|
3
|
+
*/
|
4
|
+
import { GLOB_CONFIG_FILE_NAME, OUTPUT_DIR } from '../constant'
|
5
|
+
import fs, { writeFileSync } from 'fs-extra'
|
6
|
+
import chalk from 'chalk'
|
7
|
+
|
8
|
+
import { getRootPath, getEnvConfig } from '../utils'
|
9
|
+
import { getConfigFileName } from '../getConfigFileName'
|
10
|
+
|
11
|
+
import pkg from '../../package.json'
|
12
|
+
|
13
|
+
function createConfig(
|
14
|
+
{
|
15
|
+
configName,
|
16
|
+
config,
|
17
|
+
configFileName = GLOB_CONFIG_FILE_NAME
|
18
|
+
}: { configName: string; config: any; configFileName?: string } = { configName: '', config: {} }
|
19
|
+
) {
|
20
|
+
try {
|
21
|
+
const windowConf = `window.${configName}`
|
22
|
+
// Ensure that the variable will not be modified
|
23
|
+
const configStr = `${windowConf}=${JSON.stringify(config)};
|
24
|
+
Object.freeze(${windowConf});
|
25
|
+
Object.defineProperty(window, "${configName}", {
|
26
|
+
configurable: false,
|
27
|
+
writable: false,
|
28
|
+
});
|
29
|
+
`.replace(/\s/g, '')
|
30
|
+
fs.mkdirp(getRootPath(OUTPUT_DIR))
|
31
|
+
writeFileSync(getRootPath(`${OUTPUT_DIR}/${configFileName}`), configStr)
|
32
|
+
|
33
|
+
console.log(chalk.cyan(`✨ [${pkg.name}]`) + ` - configuration file is build successfully:`)
|
34
|
+
console.log(chalk.gray(OUTPUT_DIR + '/' + chalk.green(configFileName)) + '\n')
|
35
|
+
} catch (error) {
|
36
|
+
console.log(chalk.red('configuration file configuration file failed to package:\n' + error))
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
export function runBuildConfig() {
|
41
|
+
const config = getEnvConfig()
|
42
|
+
const configFileName = getConfigFileName(config)
|
43
|
+
createConfig({ config, configName: configFileName })
|
44
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
// #!/usr/bin/env node
|
2
|
+
import chalk from 'chalk'
|
3
|
+
import reSetRootHtml from './reSetRootHtml'
|
4
|
+
import { runBuildConfig } from './buildConf'
|
5
|
+
import { wrapperEnv, getEnvConfig } from '../utils'
|
6
|
+
|
7
|
+
import pkg from '../../package.json'
|
8
|
+
|
9
|
+
export const runBuild = async () => {
|
10
|
+
try {
|
11
|
+
const argvList = process.argv.splice(2)
|
12
|
+
|
13
|
+
// Generate configuration file
|
14
|
+
if (!argvList.includes('disabled-config')) {
|
15
|
+
await runBuildConfig()
|
16
|
+
}
|
17
|
+
|
18
|
+
!wrapperEnv(getEnvConfig()).VITE_USE_THEME && reSetRootHtml('ant-design-vue')
|
19
|
+
console.log(`✨ ${chalk.cyan(`[${pkg.name}]`)}` + ' - build successfully!')
|
20
|
+
} catch (error) {
|
21
|
+
console.log(chalk.red('vite build error:\n' + error))
|
22
|
+
process.exit(1)
|
23
|
+
}
|
24
|
+
}
|
25
|
+
runBuild()
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import chalk from 'chalk'
|
2
|
+
import fs, { readFileSync } from 'fs-extra'
|
3
|
+
import { getRootPath } from '../utils'
|
4
|
+
import { OUTPUT_DIR } from '../constant'
|
5
|
+
|
6
|
+
import pkg from '../../package.json'
|
7
|
+
|
8
|
+
export default function reSetRootHtml(libName: string) {
|
9
|
+
const targetPath = getRootPath(`${OUTPUT_DIR}/index.html`)
|
10
|
+
let htmlStr = readFileSync(targetPath).toString('utf-8')
|
11
|
+
const startLen = htmlStr.lastIndexOf(`<link rel="stylesheet" href="./assets/${libName}.`)
|
12
|
+
if (startLen > 0) {
|
13
|
+
const cssLen = '<link rel="stylesheet" href="./assets/ant-design-vue.'.length + '********.css">'.length
|
14
|
+
|
15
|
+
const end = startLen + cssLen
|
16
|
+
htmlStr = htmlStr.slice(0, startLen) + htmlStr.slice(end)
|
17
|
+
fs.writeFileSync(targetPath, htmlStr)
|
18
|
+
console.log(`✨ ${chalk.cyan(`[${pkg.name}]`)}` + ' - resetHtml successfully!')
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,85 @@
|
|
1
|
+
import fs from 'fs'
|
2
|
+
import path from 'path'
|
3
|
+
import dotenv from 'dotenv'
|
4
|
+
|
5
|
+
export function isDevFn(mode: string): boolean {
|
6
|
+
return mode === 'development'
|
7
|
+
}
|
8
|
+
|
9
|
+
export function isProdFn(mode: string): boolean {
|
10
|
+
return mode === 'production'
|
11
|
+
}
|
12
|
+
|
13
|
+
/**
|
14
|
+
* Whether to generate package preview
|
15
|
+
*/
|
16
|
+
export function isReportMode(): boolean {
|
17
|
+
return process.env.REPORT === 'true'
|
18
|
+
}
|
19
|
+
|
20
|
+
// Read all environment variable configuration files to process.env
|
21
|
+
export function wrapperEnv(envConf: Recordable): ViteEnv {
|
22
|
+
const ret: any = {}
|
23
|
+
|
24
|
+
for (const envName of Object.keys(envConf)) {
|
25
|
+
let realName = envConf[envName].replace(/\\n/g, '\n')
|
26
|
+
realName = realName === 'true' ? true : realName === 'false' ? false : realName
|
27
|
+
|
28
|
+
ret[envName] = realName
|
29
|
+
process.env[envName] = realName
|
30
|
+
}
|
31
|
+
return ret
|
32
|
+
}
|
33
|
+
|
34
|
+
/**
|
35
|
+
* 获取当前环境下生效的配置文件名
|
36
|
+
*/
|
37
|
+
function getConfFiles() {
|
38
|
+
const script = process.env.npm_lifecycle_script
|
39
|
+
const reg = new RegExp('--mode ([a-z]+)')
|
40
|
+
const result = reg.exec(script as string) as any
|
41
|
+
if (result) {
|
42
|
+
const mode = result[1] as string
|
43
|
+
return [ '.env', `.env.${mode}` ]
|
44
|
+
}
|
45
|
+
return [ '.env', '.env.production' ]
|
46
|
+
}
|
47
|
+
|
48
|
+
/**
|
49
|
+
* Get the environment variables starting with the specified prefix
|
50
|
+
* @param match prefix
|
51
|
+
* @param confFiles ext
|
52
|
+
*/
|
53
|
+
export function getEnvConfig(confFiles = getConfFiles()): Partial<ViteEnv> {
|
54
|
+
let envConfig: Partial<ViteEnv> = {}
|
55
|
+
confFiles.forEach((item) => {
|
56
|
+
try {
|
57
|
+
const env = dotenv.parse(fs.readFileSync(path.resolve(process.cwd(), item)))
|
58
|
+
envConfig = { ...envConfig, ...env }
|
59
|
+
} catch (e) {
|
60
|
+
console.error(`Error in parsing ${item}`, e)
|
61
|
+
}
|
62
|
+
})
|
63
|
+
return envConfig
|
64
|
+
}
|
65
|
+
|
66
|
+
/**
|
67
|
+
* Get user root directory
|
68
|
+
* @param dir file path
|
69
|
+
*/
|
70
|
+
export function getRootPath(...dir: string[]) {
|
71
|
+
return path.resolve(process.cwd(), ...dir)
|
72
|
+
}
|
73
|
+
|
74
|
+
export function getDefaultPath(supportTs = true) {
|
75
|
+
return path.resolve(process.cwd(), `src/main.${supportTs ? 'ts' : 'js'}`)
|
76
|
+
}
|
77
|
+
|
78
|
+
export function fileExists(f: string) {
|
79
|
+
try {
|
80
|
+
fs.accessSync(f, fs.constants.W_OK)
|
81
|
+
return true
|
82
|
+
} catch (error) {
|
83
|
+
return false
|
84
|
+
}
|
85
|
+
}
|