From c91d0b5845bec96aa057f06d5913c4dbfa2ade14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=87=E7=BA=AF?= Date: Tue, 12 Jan 2021 20:19:14 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=20=E6=B7=BB=E5=8A=A0api.copyTmpFiles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit plugin建议把运行时代码写在runtime目录,然后通过api.copyTmpFiles复制至项目的.fes/plugin-name目录 --- packages/fes-plugin-access/src/index.js | 4 +- .../src/{template => runtime}/core.tpl | 0 .../src/{template => runtime}/runtime.tpl | 0 packages/fes-plugin-icon/src/index.js | 34 +++++--------- .../src/{ => runtime}/Icon/Icon.vue | 2 +- .../src/{ => runtime}/Icon/icon.less | 0 .../src/{ => runtime}/Icon/index.js | 0 .../src/{ => runtime}/icons.tpl | 0 .../src/{ => runtime}/runtime.tpl | 2 +- packages/fes-plugin-layout/src/index.js | 31 ++++--------- .../src/{ => runtime}/assets/logo.png | Bin .../src/{ => runtime}/helpers/addAccessTag.js | 0 .../src/{ => runtime}/helpers/index.js | 0 .../src/{template => runtime}/index.tpl | 0 .../src/{ => runtime}/views/BaseLayout.vue | 0 .../src/{ => runtime}/views/Menu.vue | 0 .../{ => runtime}/views/MultiTabProvider.vue | 0 packages/fes-plugin-locale/README.md | 13 ++++++ packages/fes-plugin-locale/src/index.js | 26 +++-------- .../src/{template => runtime}/core.tpl | 2 +- .../{template => runtime}/langUConfigMap.js | 0 .../src/{template => runtime}/runtime.tpl | 0 .../src/{ => runtime}/views/SelectLang.vue | 0 packages/fes-plugin-model/src/index.js | 6 +-- .../src/{template => runtime}/core.tpl | 0 .../src/{ => runtime}/models/initialState.tpl | 0 .../src/{template => runtime}/runtime.tpl | 0 packages/fes-plugin-request/src/index.js | 20 ++------ .../src/plugins/registerMethods.js | 43 +++++++++++++++++- 29 files changed, 93 insertions(+), 90 deletions(-) rename packages/fes-plugin-access/src/{template => runtime}/core.tpl (100%) rename packages/fes-plugin-access/src/{template => runtime}/runtime.tpl (100%) rename packages/fes-plugin-icon/src/{ => runtime}/Icon/Icon.vue (97%) rename packages/fes-plugin-icon/src/{ => runtime}/Icon/icon.less (100%) rename packages/fes-plugin-icon/src/{ => runtime}/Icon/index.js (100%) rename packages/fes-plugin-icon/src/{ => runtime}/icons.tpl (100%) rename packages/fes-plugin-icon/src/{ => runtime}/runtime.tpl (74%) rename packages/fes-plugin-layout/src/{ => runtime}/assets/logo.png (100%) rename packages/fes-plugin-layout/src/{ => runtime}/helpers/addAccessTag.js (100%) rename packages/fes-plugin-layout/src/{ => runtime}/helpers/index.js (100%) rename packages/fes-plugin-layout/src/{template => runtime}/index.tpl (100%) rename packages/fes-plugin-layout/src/{ => runtime}/views/BaseLayout.vue (100%) rename packages/fes-plugin-layout/src/{ => runtime}/views/Menu.vue (100%) rename packages/fes-plugin-layout/src/{ => runtime}/views/MultiTabProvider.vue (100%) create mode 100644 packages/fes-plugin-locale/README.md rename packages/fes-plugin-locale/src/{template => runtime}/core.tpl (95%) rename packages/fes-plugin-locale/src/{template => runtime}/langUConfigMap.js (100%) rename packages/fes-plugin-locale/src/{template => runtime}/runtime.tpl (100%) rename packages/fes-plugin-locale/src/{ => runtime}/views/SelectLang.vue (100%) rename packages/fes-plugin-model/src/{template => runtime}/core.tpl (100%) rename packages/fes-plugin-model/src/{ => runtime}/models/initialState.tpl (100%) rename packages/fes-plugin-model/src/{template => runtime}/runtime.tpl (100%) diff --git a/packages/fes-plugin-access/src/index.js b/packages/fes-plugin-access/src/index.js index c7f8f77e..aeb3b601 100644 --- a/packages/fes-plugin-access/src/index.js +++ b/packages/fes-plugin-access/src/index.js @@ -30,7 +30,7 @@ export default (api) => { api.writeTmpFile({ path: absoluteFilePath, content: Mustache.render( - readFileSync(join(__dirname, 'template/core.tpl'), 'utf-8'), + readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), { REPLACE_ROLES: JSON.stringify(roles) } @@ -40,7 +40,7 @@ export default (api) => { api.writeTmpFile({ path: absRuntimeFilePath, content: readFileSync( - join(__dirname, 'template/runtime.tpl'), + join(__dirname, 'runtime/runtime.tpl'), 'utf-8' ) }); diff --git a/packages/fes-plugin-access/src/template/core.tpl b/packages/fes-plugin-access/src/runtime/core.tpl similarity index 100% rename from packages/fes-plugin-access/src/template/core.tpl rename to packages/fes-plugin-access/src/runtime/core.tpl diff --git a/packages/fes-plugin-access/src/template/runtime.tpl b/packages/fes-plugin-access/src/runtime/runtime.tpl similarity index 100% rename from packages/fes-plugin-access/src/template/runtime.tpl rename to packages/fes-plugin-access/src/runtime/runtime.tpl diff --git a/packages/fes-plugin-icon/src/index.js b/packages/fes-plugin-icon/src/index.js index 6decb2a6..244b6d4c 100644 --- a/packages/fes-plugin-icon/src/index.js +++ b/packages/fes-plugin-icon/src/index.js @@ -1,4 +1,4 @@ -import { readFileSync, copyFileSync, statSync } from 'fs'; +import { readFileSync } from 'fs'; import { join, basename } from 'path'; import optimizeSvg from './optimizeSvg'; @@ -20,6 +20,7 @@ export default (api) => { // 监听 icons 文件变更,重新生成文件 api.addTmpGenerateWatcherPaths(() => join(api.paths.absSrcPath, 'icons')); + let generatedOnce = false; api.onGenerateFiles(async () => { const base = join(api.paths.absSrcPath, 'icons'); const iconFiles = api.utils.glob.sync('**/*', { @@ -40,7 +41,7 @@ export default (api) => { api.writeTmpFile({ path: `${namespace}/icons.js`, content: api.utils.Mustache.render( - readFileSync(join(__dirname, './icons.tpl'), 'utf-8'), + readFileSync(join(__dirname, 'runtime/icons.tpl'), 'utf-8'), { ICON_NAMES: iconNames } @@ -49,29 +50,18 @@ export default (api) => { api.writeTmpFile({ path: absRuntimeFilePath, - content: api.utils.Mustache.render(readFileSync(join(__dirname, 'runtime.tpl'), 'utf-8'), { + content: api.utils.Mustache.render(readFileSync(join(__dirname, 'runtime/runtime.tpl'), 'utf-8'), { }) }); - }); - let generatedOnce = false; - api.onGenerateFiles(() => { - if (generatedOnce) return; - generatedOnce = true; - const cwd = join(__dirname, './Icon'); - const files = api.utils.glob.sync('**/*', { - cwd - }); - const base = join(api.paths.absTmpPath, namespace); - files.forEach((file) => { - const source = join(cwd, file); - const target = join(base, file); - if (statSync(source).isDirectory()) { - api.utils.mkdirp.sync(target); - } else { - copyFileSync(source, target); - } - }); + if (!generatedOnce) { + generatedOnce = true; + api.copyTmpFiles({ + namespace, + path: join(__dirname, 'runtime'), + ignore: ['.tpl'] + }); + } }); api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`); diff --git a/packages/fes-plugin-icon/src/Icon/Icon.vue b/packages/fes-plugin-icon/src/runtime/Icon/Icon.vue similarity index 97% rename from packages/fes-plugin-icon/src/Icon/Icon.vue rename to packages/fes-plugin-icon/src/runtime/Icon/Icon.vue index 86907d41..6789ba47 100644 --- a/packages/fes-plugin-icon/src/Icon/Icon.vue +++ b/packages/fes-plugin-icon/src/runtime/Icon/Icon.vue @@ -1,7 +1,7 @@