From 32dbd1ecf9df2e25bca8f082231f697e685256a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=AC=E6=B5=B7?= <445436867@qq.com> Date: Wed, 23 Oct 2024 18:58:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=20=E6=9A=B4=E9=9C=B2=E8=AF=AD=E8=A8=80?= =?UTF-8?q?=E5=8F=98=E5=8C=96=E4=BA=8B=E4=BB=B6=20&=20layout=E7=9A=84title?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E9=85=8D=E7=BD=AE=E5=9B=BD=E9=99=85=E5=8C=96?= =?UTF-8?q?=20(#255)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: layout的title支持国际化 * feat: locale插件暴漏onLocaleChange事件 * chore: change docs * fix: 去掉无用代码 --------- Co-authored-by: winixt --- docs/guide/upgrade3.md | 2 +- docs/reference/plugin/plugins/layout.md | 2 +- docs/reference/plugin/plugins/locale.md | 77 +++++++++++-------- .../src/runtime/views/BaseLayout.vue | 26 ++++--- packages/fes-plugin-locale/src/index.js | 2 + .../fes-plugin-locale/src/runtime/core.js.tpl | 18 ++++- packages/fes-plugin-locale/types.d.ts | 3 + packages/fes-template/.fes.js | 2 +- packages/fes-template/src/app.jsx | 5 ++ 9 files changed, 87 insertions(+), 50 deletions(-) diff --git a/docs/guide/upgrade3.md b/docs/guide/upgrade3.md index 46a56c3d..bee861db 100644 --- a/docs/guide/upgrade3.md +++ b/docs/guide/upgrade3.md @@ -11,7 +11,7 @@ 1. 添加 Webpack 构建依赖包: `npm i @fesjs/builder-webpack -D`。 2. 如果设置了 `publicPath: './'`,请更改为 `publicPath: ''` -3. 如果有,将 `public/index.html` 文件挪到项目根目录,移除 [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) 相关配置,具体模版变量使用请查看[HTML 模版](../guide/template.html)。 +3. 将 html 模版文件从 `public/index.html` 文件挪到项目根目录,移除 [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) 相关配置,具体模版变量使用请查看[HTML 模版](../guide/template.html)。 ## 换成 Vite diff --git a/docs/reference/plugin/plugins/layout.md b/docs/reference/plugin/plugins/layout.md index 9da4e372..404539e4 100644 --- a/docs/reference/plugin/plugins/layout.md +++ b/docs/reference/plugin/plugins/layout.md @@ -233,7 +233,7 @@ export function layout(layoutConfig, { initialState }) { - **类型**:`String` - **默认值**:默认为 [编译时配置 title](../../../reference/config/#title) -- **详情**:产品名。 +- **详情**:产品名,当配置为"$"开头时,开启国际化,使用`$`后面的内容去匹配语言设置。 ### logo diff --git a/docs/reference/plugin/plugins/locale.md b/docs/reference/plugin/plugins/locale.md index ffde2fcb..59bbb081 100644 --- a/docs/reference/plugin/plugins/locale.md +++ b/docs/reference/plugin/plugins/locale.md @@ -69,11 +69,9 @@ export default { 想了解更多语言信息配置、匹配规则,请参考 [Vue I18n](https://vue-i18n.intlify.dev/guide/essentials/syntax.html) 文档。 - ### 多层配置 -如果国际化内容较多,希望模块化配置,则可以这样: -``` +如果国际化内容较多,希望模块化配置,则可以这样: src ├── locales │ ├── zh-CN.js @@ -84,6 +82,7 @@ src └── pages │ └── index.vue └── app.js + ``` 插件会把相同语言的配置合并在一起! @@ -115,37 +114,49 @@ export default { #### locale -- **类型**:`String` -- **默认值**:`zh-CN` +- **类型**:`String` +- **默认值**:`zh-CN` -- **详情**:当前的语言。 +- **详情**:当前的语言。 #### fallbackLocale -- **类型**:`String` -- **默认值**:`zh-CN` +- **类型**:`String` +- **默认值**:`zh-CN` -- **详情**:兜底的语言,如果当前语言找不到配置,则使用默认语言,需要保证默认语言配置文件存在。 +- **详情**:兜底的语言,如果当前语言找不到配置,则使用默认语言,需要保证默认语言配置文件存在。 #### baseNavigator -- **类型**:`Boolean` -- **默认值**:`true` +- **类型**:`Boolean` +- **默认值**:`true` -- **详情**:开启浏览器语言检测。 +- **详情**:开启浏览器语言检测。 默认情况下,当前语言环境的识别按照:`localStorage` 中 `fes_locale` 值 > 浏览器检测 > `default` 设置的默认语言 > `zh-CN` 中文。 #### legacy -- **类型**:`Boolean` -- **默认值**:`false` +- **类型**:`Boolean` +- **默认值**:`false` -- **详情**:用户是否需要 Legacy API 模式 +- **详情**:用户是否需要 Legacy API 模式 ### 运行时配置 -暂无。 +## onLocaleChange + +当语言环境发生变化时,会触发此函数。 + +```js +import { defineRuntimeConfig } from '@fesjs/fes'; + +export default defineRuntimeConfig({ + onLocaleChange: ({ t, locale }) => { + + } +}); +``` ## API @@ -159,16 +170,16 @@ import { locale } from '@fesjs/fes'; #### locale.messages -- **类型**:`Object` -- **详情**:当前的配置的语言信息。 +- **类型**:`Object` +- **详情**:当前的配置的语言信息。 #### locale.setLocale -- **类型**:`Function` -- **详情**:设置当前的语言。 -- **参数**: - - locale,语言的名称,应该是符合 `-` 规范的名称。 -- **返回值**:`null` +- **类型**:`Function` +- **详情**:设置当前的语言。 +- **参数**: + - locale,语言的名称,应该是符合 `-` 规范的名称。 +- **返回值**:`null` ```js import { locale } from '@fesjs/fes'; @@ -177,12 +188,12 @@ locale.setLocale({ locale: 'en-US' }); #### locale.addLocale -- **类型**:`Function` -- **详情**:手动添加语言配置。 -- **参数**: - - locale,语言的名称,符合 `-` 规范的名称。 - - messages, 语言信息。 -- **返回值**:`null` +- **类型**:`Function` +- **详情**:手动添加语言配置。 +- **参数**: + - locale,语言的名称,符合 `-` 规范的名称。 + - messages, 语言信息。 +- **返回值**:`null` ```js import { locale } from '@fesjs/fes'; @@ -191,10 +202,10 @@ locale.addLocale({ locale: 'ja-JP', messages: { test: 'テスト' } }); #### locale.getAllLocales -- **类型**:`Function` -- **详情**:获取当前获得所有国际化文件的列表,默认会在 locales 文件夹下寻找类似 `en-US.js` 文件。 -- **参数**:null -- **返回值**:`Array` +- **类型**:`Function` +- **详情**:获取当前获得所有国际化文件的列表,默认会在 locales 文件夹下寻找类似 `en-US.js` 文件。 +- **参数**:null +- **返回值**:`Array` ```js import { locale } from '@fesjs/fes'; diff --git a/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue b/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue index 5020986b..ff558f0e 100644 --- a/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue +++ b/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue @@ -11,8 +11,8 @@ >