mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat: layout的title支持国际化
This commit is contained in:
parent
db358576e8
commit
9b072f828a
@ -233,7 +233,7 @@ export function layout(layoutConfig, { initialState }) {
|
|||||||
- **类型**:`String`
|
- **类型**:`String`
|
||||||
- **默认值**:默认为 [编译时配置 title](../../../reference/config/#title)
|
- **默认值**:默认为 [编译时配置 title](../../../reference/config/#title)
|
||||||
|
|
||||||
- **详情**:产品名。
|
- **详情**:产品名,当配置为"$"开头时,开启国际化,使用`$`后面的内容去匹配语言设置。
|
||||||
|
|
||||||
### logo
|
### logo
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
>
|
>
|
||||||
<div class="layout-logo">
|
<div class="layout-logo">
|
||||||
<img v-if="logo" :src="logo" class="logo-img">
|
<img v-if="logo" :src="logo" class="logo-img">
|
||||||
<div v-if="title" class="logo-name">
|
<div v-if="transformedTitle" class="logo-name">
|
||||||
{{ title }}
|
{{ transformedTitle }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<LayoutMenu
|
<LayoutMenu
|
||||||
@ -58,8 +58,8 @@
|
|||||||
<div>
|
<div>
|
||||||
<div class="layout-logo">
|
<div class="layout-logo">
|
||||||
<img v-if="logo" :src="logo" class="logo-img">
|
<img v-if="logo" :src="logo" class="logo-img">
|
||||||
<div v-if="title" class="logo-name">
|
<div v-if="transformedTitle" class="logo-name">
|
||||||
{{ title }}
|
{{ transformedTitle }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<LayoutMenu
|
<LayoutMenu
|
||||||
@ -98,8 +98,8 @@
|
|||||||
<FHeader ref="headerRef" class="layout-header" :inverted="theme === 'dark'" :fixed="currentFixedHeaderRef">
|
<FHeader ref="headerRef" class="layout-header" :inverted="theme === 'dark'" :fixed="currentFixedHeaderRef">
|
||||||
<div class="layout-logo">
|
<div class="layout-logo">
|
||||||
<img v-if="logo" :src="logo" class="logo-img">
|
<img v-if="logo" :src="logo" class="logo-img">
|
||||||
<div v-if="title" class="logo-name">
|
<div v-if="transformedTitle" class="logo-name">
|
||||||
{{ title }}
|
{{ transformedTitle }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<LayoutMenu
|
<LayoutMenu
|
||||||
@ -131,8 +131,8 @@
|
|||||||
<FHeader ref="headerRef" class="layout-header" :inverted="theme === 'dark'" :fixed="currentFixedHeaderRef">
|
<FHeader ref="headerRef" class="layout-header" :inverted="theme === 'dark'" :fixed="currentFixedHeaderRef">
|
||||||
<div class="layout-logo">
|
<div class="layout-logo">
|
||||||
<img v-if="logo" :src="logo" class="logo-img">
|
<img v-if="logo" :src="logo" class="logo-img">
|
||||||
<div v-if="title" class="logo-name">
|
<div v-if="transformedTitle" class="logo-name">
|
||||||
{{ title }}
|
{{ transformedTitle }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<LayoutMenu
|
<LayoutMenu
|
||||||
@ -184,8 +184,8 @@
|
|||||||
<FHeader ref="headerRef" class="layout-header" :fixed="currentFixedHeaderRef" :inverted="theme === 'dark'">
|
<FHeader ref="headerRef" class="layout-header" :fixed="currentFixedHeaderRef" :inverted="theme === 'dark'">
|
||||||
<div class="layout-logo">
|
<div class="layout-logo">
|
||||||
<img v-if="logo" :src="logo" class="logo-img">
|
<img v-if="logo" :src="logo" class="logo-img">
|
||||||
<div v-if="title" class="logo-name">
|
<div v-if="transformedTitle" class="logo-name">
|
||||||
{{ title }}
|
{{ transformedTitle }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layout-header-custom">
|
<div class="layout-header-custom">
|
||||||
@ -231,6 +231,7 @@ import { FAside, FFooter, FHeader, FLayout, FMain } from '@fesjs/fes-design';
|
|||||||
import { computed, nextTick, ref, watch } from 'vue';
|
import { computed, nextTick, ref, watch } from 'vue';
|
||||||
import defaultLogo from '../assets/logo.png';
|
import defaultLogo from '../assets/logo.png';
|
||||||
import { flatNodes } from '../helpers/utils';
|
import { flatNodes } from '../helpers/utils';
|
||||||
|
import { transTitle } from '../helpers/pluginLocale';
|
||||||
import LayoutMenu from './Menu.vue';
|
import LayoutMenu from './Menu.vue';
|
||||||
import MultiTabProvider from './MultiTabProvider.vue';
|
import MultiTabProvider from './MultiTabProvider.vue';
|
||||||
|
|
||||||
@ -302,6 +303,10 @@ export default {
|
|||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
|
const transformedTitle = computed(() => {
|
||||||
|
return transTitle(props.title);
|
||||||
|
});
|
||||||
|
|
||||||
const currentNavigation = computed(() => {
|
const currentNavigation = computed(() => {
|
||||||
if (route.meta.layout && route.meta.layout.navigation !== undefined) {
|
if (route.meta.layout && route.meta.layout.navigation !== undefined) {
|
||||||
return route.meta.layout.navigation;
|
return route.meta.layout.navigation;
|
||||||
@ -397,6 +402,7 @@ export default {
|
|||||||
currentNavigation,
|
currentNavigation,
|
||||||
rootMenus,
|
rootMenus,
|
||||||
activeSubMenus,
|
activeSubMenus,
|
||||||
|
transformedTitle,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -62,6 +62,9 @@ export default (api) => {
|
|||||||
|
|
||||||
const { baseNavigator, ...otherConfig } = userConfig;
|
const { baseNavigator, ...otherConfig } = userConfig;
|
||||||
|
|
||||||
|
const title = api.config.title || 'fes.js';
|
||||||
|
const isLocaleTitle = title.startsWith('$');
|
||||||
|
|
||||||
api.writeTmpFile({
|
api.writeTmpFile({
|
||||||
path: join(namespace, 'locales.js'),
|
path: join(namespace, 'locales.js'),
|
||||||
content: Mustache.render(readFileSync(join(__dirname, 'runtime/locales.js.tpl'), 'utf-8'), {
|
content: Mustache.render(readFileSync(join(__dirname, 'runtime/locales.js.tpl'), 'utf-8'), {
|
||||||
@ -79,6 +82,8 @@ export default (api) => {
|
|||||||
REPLACE_DEFAULT_OPTIONS: JSON.stringify(otherConfig, null, 2),
|
REPLACE_DEFAULT_OPTIONS: JSON.stringify(otherConfig, null, 2),
|
||||||
BASE_NAVIGATOR: baseNavigator,
|
BASE_NAVIGATOR: baseNavigator,
|
||||||
VUE_I18N_PATH: 'vue-i18n',
|
VUE_I18N_PATH: 'vue-i18n',
|
||||||
|
TITLE: title.slice(1),
|
||||||
|
IS_LOCALE_TITle: isLocaleTitle,
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ const locale = {
|
|||||||
addLocale,
|
addLocale,
|
||||||
getAllLocales,
|
getAllLocales,
|
||||||
messages,
|
messages,
|
||||||
t
|
t,
|
||||||
};
|
};
|
||||||
|
|
||||||
export { useI18n, locale, install };
|
export { useI18n, locale, install };
|
||||||
|
@ -33,7 +33,7 @@ export default defineBuildConfig({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
layout: {
|
layout: {
|
||||||
title: 'Fes.js',
|
title: '$home',
|
||||||
footer: 'Created by MumbleFE',
|
footer: 'Created by MumbleFE',
|
||||||
multiTabs: true,
|
multiTabs: true,
|
||||||
navigation: 'mixin',
|
navigation: 'mixin',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user