From d23f22f631a0aca8036d5397af5ad09bf225abb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=87=E7=BA=AF?= Date: Mon, 4 Jan 2021 10:18:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=20plugin-layout=E5=9C=A8=E6=9C=89local?= =?UTF-8?q?e=E6=97=B6=E6=98=BE=E7=A4=BA=E8=AF=AD=E8=A8=80=E9=80=89?= =?UTF-8?q?=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-layout/src/index.js | 3 +- .../src/template/runtime.tpl | 23 +- .../src/views/BaseLayout.vue | 7 +- packages/fes-plugin-layout/src/views/Menu.vue | 2 +- packages/fes-plugin-locale/src/index.js | 4 +- .../fes-plugin-locale/src/template/core.tpl | 324 +----------------- packages/fes-runtime/src/plugin/index.js | 12 +- packages/fes-template/.fes.js | 4 - packages/fes-template/src/app.js | 2 + 9 files changed, 44 insertions(+), 337 deletions(-) diff --git a/packages/fes-plugin-layout/src/index.js b/packages/fes-plugin-layout/src/index.js index 1e7eda2b..bc308c79 100644 --- a/packages/fes-plugin-layout/src/index.js +++ b/packages/fes-plugin-layout/src/index.js @@ -29,7 +29,8 @@ export default (api) => { content: Mustache.render( readFileSync(join(__dirname, 'template/runtime.tpl'), 'utf-8'), { - REPLACE_USER_CONFIG: JSON.stringify(userConfig) + REPLACE_USER_CONFIG: JSON.stringify(userConfig), + HAS_LOCALE: api.pkg.dependencies?.['@webank/fes-plugin-locale'] } ) }); diff --git a/packages/fes-plugin-layout/src/template/runtime.tpl b/packages/fes-plugin-layout/src/template/runtime.tpl index 34817e1c..eae7324c 100644 --- a/packages/fes-plugin-layout/src/template/runtime.tpl +++ b/packages/fes-plugin-layout/src/template/runtime.tpl @@ -1,9 +1,13 @@ -import { reactive, toRefs } from "vue"; +import { reactive, ref } from "vue"; import { getRoutes, plugin, ApplyPluginsType } from "@@/core/coreExports"; import BaseLayout from "./views/BaseLayout.vue"; import { fillMenuData } from "./helpers"; const userConfig = reactive({{{REPLACE_USER_CONFIG}}}); +const langConfig = { + localInited: ref(false), + component: null +}; export function rootContainer(childComponent, args) { const runtimeConfig = plugin.applyPlugins({ key: "layout", @@ -19,7 +23,13 @@ export function rootContainer(childComponent, args) { if(runtimeConfig.userCenter){ return } - return <> + return
+ }, + lang: () => { + if(langConfig.localInited.value){ + return + } + return
} }; return ( @@ -27,4 +37,11 @@ export function rootContainer(childComponent, args) { ); }; -} \ No newline at end of file +} + +{{#HAS_LOCALE}} +export function onLocaleReady({ i18n, SelectLang }){ + langConfig.localInited.value = true; + langConfig.component = SelectLang; +} +{{/HAS_LOCALE}} \ No newline at end of file diff --git a/packages/fes-plugin-layout/src/views/BaseLayout.vue b/packages/fes-plugin-layout/src/views/BaseLayout.vue index 3ed3a242..82be0015 100644 --- a/packages/fes-plugin-layout/src/views/BaseLayout.vue +++ b/packages/fes-plugin-layout/src/views/BaseLayout.vue @@ -20,7 +20,7 @@
- + @@ -34,7 +34,7 @@