diff --git a/packages/fes-plugin-icon/src/optimizeSvg.js b/packages/fes-plugin-icon/src/optimizeSvg.js index a945e31b..545a6885 100644 --- a/packages/fes-plugin-icon/src/optimizeSvg.js +++ b/packages/fes-plugin-icon/src/optimizeSvg.js @@ -4,14 +4,9 @@ import { optimize } from 'svgo'; const presetDefault = [ { - name: 'preset-default', - params: { - overrides: { - sortAttrs: true, - removeDimensions: true - } - } + name: 'preset-default' }, + 'cleanupListOfValues', { name: 'removeAttrs', params: { diff --git a/packages/fes-plugin-windicss/package.json b/packages/fes-plugin-windicss/package.json index 6077f278..9017555f 100644 --- a/packages/fes-plugin-windicss/package.json +++ b/packages/fes-plugin-windicss/package.json @@ -31,6 +31,7 @@ "vue": "^3.0.5" }, "dependencies": { - "windicss-webpack-plugin": "^1.5.8" + "qs": "^6.10.2", + "windicss-webpack-plugin": "^1.6.0" } -} +} \ No newline at end of file diff --git a/packages/fes-plugin-windicss/src/index.js b/packages/fes-plugin-windicss/src/index.js index 2625fddb..e522b43b 100644 --- a/packages/fes-plugin-windicss/src/index.js +++ b/packages/fes-plugin-windicss/src/index.js @@ -1,7 +1,7 @@ import WindiCSSWebpackPlugin from 'windicss-webpack-plugin'; import { resolve } from 'path'; - +import qs from 'qs'; export default (api) => { api.describe({ @@ -23,6 +23,15 @@ export default (api) => { ...api.config.windicss } ]); + memo.module + .rule('vue-custom') + .resourceQuery((query) => { + if (!query) { + return false; + } + const parsed = qs.parse(query.slice(1)); + return parsed.vue != null; + }).use('vue-custom-loader').loader(require.resolve('./pitcher')); return memo; }); }; diff --git a/packages/fes-plugin-windicss/src/pitcher.js b/packages/fes-plugin-windicss/src/pitcher.js new file mode 100644 index 00000000..1f944b43 --- /dev/null +++ b/packages/fes-plugin-windicss/src/pitcher.js @@ -0,0 +1,13 @@ +import qs from 'qs'; + +const pitcher = code => code; + +export const pitch = function () { + const context = this; + const query = qs.parse(context.resourceQuery.slice(1)); + if (query.type === 'custom' && query.blockType === 'config') { + return ''; + } +}; + +export default pitcher; diff --git a/packages/fes-preset-built-in/src/plugins/misc/route/index.js b/packages/fes-preset-built-in/src/plugins/misc/route/index.js index afb367a9..272d662e 100644 --- a/packages/fes-preset-built-in/src/plugins/misc/route/index.js +++ b/packages/fes-preset-built-in/src/plugins/misc/route/index.js @@ -4,8 +4,11 @@ import { } from 'path'; import { lodash } from '@fesjs/utils'; import { parse } from '@vue/compiler-sfc'; +import { Logger } from '@fesjs/compiler'; import { runtimePath } from '../../../utils/constants'; +const logger = new Logger('fes:router'); + // pages // ├── index.vue # 根路由页面 路径 / // ├── *.vue # 模糊匹配 路径 * @@ -18,7 +21,7 @@ import { runtimePath } from '../../../utils/constants'; const isProcessFile = function (path) { const ext = extname(path); - return statSync(path).isFile() && ['.vue'].includes(ext); + return statSync(path).isFile() && ['.vue', '.jsx'].includes(ext); }; const isProcessDirectory = function (path, item) { @@ -68,6 +71,8 @@ const getRoutePath = function (parentRoutePath, fileName) { return posix.join(parentRoutePath, fileName); }; +let cacheGenRoutes = {}; + // TODO 约定 layout 目录作为布局文件夹, const genRoutes = function (parentRoutes, path, parentRoutePath, config) { const dirList = readdirSync(path); @@ -91,6 +96,12 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) { const fileName = basename(item, ext); // 路由的path const routePath = getRoutePath(parentRoutePath, fileName); + if (cacheGenRoutes[routePath]) { + logger.warn(`[WARNING]: The file path: ${routePath}(.jsx/.vue) conflict in router,will only use ${routePath}.jsx,please remove one of.`); + return; + } + cacheGenRoutes[routePath] = true; + // 路由名称 const routeName = getRouteName(parentRoutePath, fileName); const componentPath = getComponentPath(parentRoutePath, fileName, config); @@ -172,6 +183,7 @@ const getRoutes = function ({ config, absPagesPath }) { if (configRoutes && configRoutes.length > 0) return configRoutes; const routes = []; + cacheGenRoutes = {}; genRoutes(routes, absPagesPath, '/', config); rank(routes); return routes; diff --git a/packages/fes-template-h5/package.json b/packages/fes-template-h5/package.json index 110d98f4..180328e0 100644 --- a/packages/fes-template-h5/package.json +++ b/packages/fes-template-h5/package.json @@ -48,6 +48,7 @@ "@fesjs/fes": "^2.0.0", "@fesjs/plugin-icon": "^2.0.0", "@fesjs/plugin-request": "^2.0.0", + "@fesjs/plugin-windicss": "^2.0.0", "vue": "3.2.2" }, "private": true diff --git a/packages/fes-template-h5/src/pages/abc/test.jsx b/packages/fes-template-h5/src/pages/abc/test.jsx new file mode 100644 index 00000000..84472aed --- /dev/null +++ b/packages/fes-template-h5/src/pages/abc/test.jsx @@ -0,0 +1,7 @@ +import { defineComponent } from 'vue'; + +export default defineComponent({ + setup() { + return () =>