mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat: 路由支持配置base & plugin-locale插件legacy默认false (#154)
* feat: 路由支持配置base & plugin-locale插件legacy默认false * docs: 修改文档
This commit is contained in:
parent
92e154e48b
commit
104571b2a4
@ -133,6 +133,10 @@ export function beforeRender(lastOpts) {
|
|||||||
|
|
||||||
patchRoutes({routes })
|
patchRoutes({routes })
|
||||||
|
|
||||||
|
:::warning
|
||||||
|
准备删除此API,推荐使用`modifyRoute`
|
||||||
|
:::
|
||||||
|
|
||||||
修改路由。
|
修改路由。
|
||||||
|
|
||||||
比如在最前面添加一个 /foo 路由:
|
比如在最前面添加一个 /foo 路由:
|
||||||
@ -150,6 +154,51 @@ export function patchRoutes({ routes }) {
|
|||||||
直接修改 `routes`, 不需要返回
|
直接修改 `routes`, 不需要返回
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
|
||||||
|
### modifyRoute
|
||||||
|
modifyRoute({base, createHistory, routes})
|
||||||
|
|
||||||
|
修改路由配置信息。
|
||||||
|
|
||||||
|
比如在最前面添加一个 /foo 路由:
|
||||||
|
|
||||||
|
```js
|
||||||
|
export function modifyRoute(memo) {
|
||||||
|
return {
|
||||||
|
...memo,
|
||||||
|
routes: [
|
||||||
|
{
|
||||||
|
path: '/foo',
|
||||||
|
component: require('@/extraRoutes/foo').default,
|
||||||
|
},
|
||||||
|
...memo.routes
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
比如修改 base:
|
||||||
|
```js
|
||||||
|
export function modifyRoute(memo) {
|
||||||
|
return {
|
||||||
|
...memo,
|
||||||
|
base: window.location.href
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
比如改为使用createMemoryHistory:
|
||||||
|
```js
|
||||||
|
export function modifyRoute(memo) {
|
||||||
|
return {
|
||||||
|
...memo,
|
||||||
|
createHistory: createMemoryHistory
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### modifyClientRenderOpts
|
### modifyClientRenderOpts
|
||||||
|
|
||||||
modifyClientRenderOpts(lastOpts)
|
modifyClientRenderOpts(lastOpts)
|
||||||
|
@ -76,7 +76,7 @@ export default {
|
|||||||
locale: 'zh-CN', // default locale
|
locale: 'zh-CN', // default locale
|
||||||
fallbackLocale: 'zh-CN', // set fallback locale
|
fallbackLocale: 'zh-CN', // set fallback locale
|
||||||
baseNavigator: true, // 开启浏览器语言检测
|
baseNavigator: true, // 开启浏览器语言检测
|
||||||
legacy: true, // 用户是否需要 Legacy API 模式
|
legacy: false, // 用户是否需要 Legacy API 模式
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@ -108,7 +108,7 @@ export default {
|
|||||||
#### legacy
|
#### legacy
|
||||||
- **类型**:`Boolean`
|
- **类型**:`Boolean`
|
||||||
|
|
||||||
- **默认值**:`true`
|
- **默认值**:`false`
|
||||||
|
|
||||||
- **详情**:用户是否需要 Legacy API 模式
|
- **详情**:用户是否需要 Legacy API 模式
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ export default (api) => {
|
|||||||
const userConfig = {
|
const userConfig = {
|
||||||
locale: 'zh-CN', // default locale
|
locale: 'zh-CN', // default locale
|
||||||
fallbackLocale: 'zh-CN', // set fallback locale
|
fallbackLocale: 'zh-CN', // set fallback locale
|
||||||
legacy: true,
|
legacy: false,
|
||||||
baseNavigator: true, // 开启浏览器语言检测
|
baseNavigator: true, // 开启浏览器语言检测
|
||||||
...api.config.locale,
|
...api.config.locale,
|
||||||
};
|
};
|
||||||
@ -49,20 +49,14 @@ export default (api) => {
|
|||||||
|
|
||||||
const locales = getLocales(localeConfigFileBasePath);
|
const locales = getLocales(localeConfigFileBasePath);
|
||||||
|
|
||||||
|
const { baseNavigator, ...otherConfig } = userConfig;
|
||||||
|
|
||||||
api.writeTmpFile({
|
api.writeTmpFile({
|
||||||
path: absoluteFilePath,
|
path: absoluteFilePath,
|
||||||
content: Mustache.render(readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), {
|
content: Mustache.render(readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), {
|
||||||
REPLACE_LOCALES: locales,
|
REPLACE_LOCALES: locales,
|
||||||
REPLACE_DEFAULT_OPTIONS: JSON.stringify(
|
REPLACE_DEFAULT_OPTIONS: JSON.stringify(otherConfig, null, 2),
|
||||||
{
|
BASE_NAVIGATOR: baseNavigator,
|
||||||
locale: userConfig.locale,
|
|
||||||
fallbackLocale: userConfig.fallbackLocale,
|
|
||||||
legacy: userConfig.legacy,
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
2,
|
|
||||||
),
|
|
||||||
BASE_NAVIGATOR: userConfig.baseNavigator,
|
|
||||||
VUE_I18N_PATH: 'vue-i18n',
|
VUE_I18N_PATH: 'vue-i18n',
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
@ -3,312 +3,312 @@ export default {
|
|||||||
lang: 'ar-EG',
|
lang: 'ar-EG',
|
||||||
label: 'العربية',
|
label: 'العربية',
|
||||||
icon: '🇪🇬',
|
icon: '🇪🇬',
|
||||||
title: 'لغة'
|
title: 'لغة',
|
||||||
},
|
},
|
||||||
'az-AZ': {
|
'az-AZ': {
|
||||||
lang: 'az-AZ',
|
lang: 'az-AZ',
|
||||||
label: 'Azərbaycan dili',
|
label: 'Azərbaycan dili',
|
||||||
icon: '🇦🇿',
|
icon: '🇦🇿',
|
||||||
title: 'Dil'
|
title: 'Dil',
|
||||||
},
|
},
|
||||||
'bg-BG': {
|
'bg-BG': {
|
||||||
lang: 'bg-BG',
|
lang: 'bg-BG',
|
||||||
label: 'Български език',
|
label: 'Български език',
|
||||||
icon: '🇧🇬',
|
icon: '🇧🇬',
|
||||||
title: 'език'
|
title: 'език',
|
||||||
},
|
},
|
||||||
'ca-ES': {
|
'ca-ES': {
|
||||||
lang: 'ca-ES',
|
lang: 'ca-ES',
|
||||||
label: 'Catalá',
|
label: 'Catalá',
|
||||||
icon: '🇨🇦',
|
icon: '🇨🇦',
|
||||||
title: 'llengua'
|
title: 'llengua',
|
||||||
},
|
},
|
||||||
'cs-CZ': {
|
'cs-CZ': {
|
||||||
lang: 'cs-CZ',
|
lang: 'cs-CZ',
|
||||||
label: 'Čeština',
|
label: 'Čeština',
|
||||||
icon: '🇨🇿',
|
icon: '🇨🇿',
|
||||||
title: 'Jazyk'
|
title: 'Jazyk',
|
||||||
},
|
},
|
||||||
'da-DK': {
|
'da-DK': {
|
||||||
lang: 'da-DK',
|
lang: 'da-DK',
|
||||||
label: 'Dansk',
|
label: 'Dansk',
|
||||||
icon: '🇩🇰',
|
icon: '🇩🇰',
|
||||||
title: 'Sprog'
|
title: 'Sprog',
|
||||||
},
|
},
|
||||||
'de-DE': {
|
'de-DE': {
|
||||||
lang: 'de-DE',
|
lang: 'de-DE',
|
||||||
label: 'Deutsch',
|
label: 'Deutsch',
|
||||||
icon: '🇩🇪',
|
icon: '🇩🇪',
|
||||||
title: 'Sprache'
|
title: 'Sprache',
|
||||||
},
|
},
|
||||||
'el-GR': {
|
'el-GR': {
|
||||||
lang: 'el-GR',
|
lang: 'el-GR',
|
||||||
label: 'Ελληνικά',
|
label: 'Ελληνικά',
|
||||||
icon: '🇬🇷',
|
icon: '🇬🇷',
|
||||||
title: 'Γλώσσα'
|
title: 'Γλώσσα',
|
||||||
},
|
},
|
||||||
'en-GB': {
|
'en-GB': {
|
||||||
lang: 'en-GB',
|
lang: 'en-GB',
|
||||||
label: 'English',
|
label: 'English',
|
||||||
icon: '🇬🇧',
|
icon: '🇬🇧',
|
||||||
title: 'Language'
|
title: 'Language',
|
||||||
},
|
},
|
||||||
'en-US': {
|
'en-US': {
|
||||||
lang: 'en-US',
|
lang: 'en-US',
|
||||||
label: 'English',
|
label: 'English',
|
||||||
icon: '🇺🇸',
|
icon: '🇺🇸',
|
||||||
title: 'Language'
|
title: 'Language',
|
||||||
},
|
},
|
||||||
'es-ES': {
|
'es-ES': {
|
||||||
lang: 'es-ES',
|
lang: 'es-ES',
|
||||||
label: 'Español',
|
label: 'Español',
|
||||||
icon: '🇪🇸',
|
icon: '🇪🇸',
|
||||||
title: 'Idioma'
|
title: 'Idioma',
|
||||||
},
|
},
|
||||||
'et-EE': {
|
'et-EE': {
|
||||||
lang: 'et-EE',
|
lang: 'et-EE',
|
||||||
label: 'Eesti',
|
label: 'Eesti',
|
||||||
icon: '🇪🇪',
|
icon: '🇪🇪',
|
||||||
title: 'Keel'
|
title: 'Keel',
|
||||||
},
|
},
|
||||||
'fa-IR': {
|
'fa-IR': {
|
||||||
lang: 'fa-IR',
|
lang: 'fa-IR',
|
||||||
label: 'فارسی',
|
label: 'فارسی',
|
||||||
icon: '🇮🇷',
|
icon: '🇮🇷',
|
||||||
title: 'زبان'
|
title: 'زبان',
|
||||||
},
|
},
|
||||||
'fi-FI': {
|
'fi-FI': {
|
||||||
lang: 'fi-FI',
|
lang: 'fi-FI',
|
||||||
label: 'Suomi',
|
label: 'Suomi',
|
||||||
icon: '🇫🇮',
|
icon: '🇫🇮',
|
||||||
title: 'Kieli'
|
title: 'Kieli',
|
||||||
},
|
},
|
||||||
'fr-BE': {
|
'fr-BE': {
|
||||||
lang: 'fr-BE',
|
lang: 'fr-BE',
|
||||||
label: 'Français',
|
label: 'Français',
|
||||||
icon: '🇧🇪',
|
icon: '🇧🇪',
|
||||||
title: 'Langue'
|
title: 'Langue',
|
||||||
},
|
},
|
||||||
'fr-FR': {
|
'fr-FR': {
|
||||||
lang: 'fr-FR',
|
lang: 'fr-FR',
|
||||||
label: 'Français',
|
label: 'Français',
|
||||||
icon: '🇫🇷',
|
icon: '🇫🇷',
|
||||||
title: 'Langue'
|
title: 'Langue',
|
||||||
},
|
},
|
||||||
'ga-IE': {
|
'ga-IE': {
|
||||||
lang: 'ga-IE',
|
lang: 'ga-IE',
|
||||||
label: 'Gaeilge',
|
label: 'Gaeilge',
|
||||||
icon: '🇮🇪',
|
icon: '🇮🇪',
|
||||||
title: 'Teanga'
|
title: 'Teanga',
|
||||||
},
|
},
|
||||||
'he-IL': {
|
'he-IL': {
|
||||||
lang: 'he-IL',
|
lang: 'he-IL',
|
||||||
label: 'עברית',
|
label: 'עברית',
|
||||||
icon: '🇮🇱',
|
icon: '🇮🇱',
|
||||||
title: 'שפה'
|
title: 'שפה',
|
||||||
},
|
},
|
||||||
'hi-IN': {
|
'hi-IN': {
|
||||||
lang: 'hi-IN',
|
lang: 'hi-IN',
|
||||||
label: 'हिन्दी, हिंदी',
|
label: 'हिन्दी, हिंदी',
|
||||||
icon: '🇮🇳',
|
icon: '🇮🇳',
|
||||||
title: 'भाषा: हिन्दी'
|
title: 'भाषा: हिन्दी',
|
||||||
},
|
},
|
||||||
'hr-HR': {
|
'hr-HR': {
|
||||||
lang: 'hr-HR',
|
lang: 'hr-HR',
|
||||||
label: 'Hrvatski jezik',
|
label: 'Hrvatski jezik',
|
||||||
icon: '🇭🇷',
|
icon: '🇭🇷',
|
||||||
title: 'Jezik'
|
title: 'Jezik',
|
||||||
},
|
},
|
||||||
'hu-HU': {
|
'hu-HU': {
|
||||||
lang: 'hu-HU',
|
lang: 'hu-HU',
|
||||||
label: 'Magyar',
|
label: 'Magyar',
|
||||||
icon: '🇭🇺',
|
icon: '🇭🇺',
|
||||||
title: 'Nyelv'
|
title: 'Nyelv',
|
||||||
},
|
},
|
||||||
'hy-AM': {
|
'hy-AM': {
|
||||||
lang: 'hu-HU',
|
lang: 'hu-HU',
|
||||||
label: 'Հայերեն',
|
label: 'Հայերեն',
|
||||||
icon: '🇦🇲',
|
icon: '🇦🇲',
|
||||||
title: 'Լեզու'
|
title: 'Լեզու',
|
||||||
},
|
},
|
||||||
'id-ID': {
|
'id-ID': {
|
||||||
lang: 'id-ID',
|
lang: 'id-ID',
|
||||||
label: 'Bahasa Indonesia',
|
label: 'Bahasa Indonesia',
|
||||||
icon: '🇮🇩',
|
icon: '🇮🇩',
|
||||||
title: 'Bahasa'
|
title: 'Bahasa',
|
||||||
},
|
},
|
||||||
'it-IT': {
|
'it-IT': {
|
||||||
lang: 'it-IT',
|
lang: 'it-IT',
|
||||||
label: 'Italiano',
|
label: 'Italiano',
|
||||||
icon: '🇮🇹',
|
icon: '🇮🇹',
|
||||||
title: 'Linguaggio'
|
title: 'Linguaggio',
|
||||||
},
|
},
|
||||||
'is-IS': {
|
'is-IS': {
|
||||||
lang: 'is-IS',
|
lang: 'is-IS',
|
||||||
label: 'Íslenska',
|
label: 'Íslenska',
|
||||||
icon: '🇮🇸',
|
icon: '🇮🇸',
|
||||||
title: 'Tungumál'
|
title: 'Tungumál',
|
||||||
},
|
},
|
||||||
'ja-JP': {
|
'ja-JP': {
|
||||||
lang: 'ja-JP',
|
lang: 'ja-JP',
|
||||||
label: '日本語',
|
label: '日本語',
|
||||||
icon: '🇯🇵',
|
icon: '🇯🇵',
|
||||||
title: '言語'
|
title: '言語',
|
||||||
},
|
},
|
||||||
'ku-IQ': {
|
'ku-IQ': {
|
||||||
lang: 'ku-IQ',
|
lang: 'ku-IQ',
|
||||||
label: 'کوردی',
|
label: 'کوردی',
|
||||||
icon: '🇮🇶',
|
icon: '🇮🇶',
|
||||||
title: 'Ziman'
|
title: 'Ziman',
|
||||||
},
|
},
|
||||||
'kn-IN': {
|
'kn-IN': {
|
||||||
lang: 'zh-TW',
|
lang: 'zh-TW',
|
||||||
label: 'ಕನ್ನಡ',
|
label: 'ಕನ್ನಡ',
|
||||||
icon: '🇮🇳',
|
icon: '🇮🇳',
|
||||||
title: 'ಭಾಷೆ'
|
title: 'ಭಾಷೆ',
|
||||||
},
|
},
|
||||||
'ko-KR': {
|
'ko-KR': {
|
||||||
lang: 'ko-KR',
|
lang: 'ko-KR',
|
||||||
label: '한국어',
|
label: '한국어',
|
||||||
icon: '🇰🇷',
|
icon: '🇰🇷',
|
||||||
title: '언어'
|
title: '언어',
|
||||||
},
|
},
|
||||||
'lv-LV': {
|
'lv-LV': {
|
||||||
lang: 'lv-LV',
|
lang: 'lv-LV',
|
||||||
label: 'Latviešu valoda',
|
label: 'Latviešu valoda',
|
||||||
icon: '🇱🇮',
|
icon: '🇱🇮',
|
||||||
title: 'Kalba'
|
title: 'Kalba',
|
||||||
},
|
},
|
||||||
'mk-MK': {
|
'mk-MK': {
|
||||||
lang: 'mk-MK',
|
lang: 'mk-MK',
|
||||||
label: 'македонски јазик',
|
label: 'македонски јазик',
|
||||||
icon: '🇲🇰',
|
icon: '🇲🇰',
|
||||||
title: 'Јазик'
|
title: 'Јазик',
|
||||||
},
|
},
|
||||||
'mn-MN': {
|
'mn-MN': {
|
||||||
lang: 'mn-MN',
|
lang: 'mn-MN',
|
||||||
label: 'Монгол хэл',
|
label: 'Монгол хэл',
|
||||||
icon: '🇲🇳',
|
icon: '🇲🇳',
|
||||||
title: 'Хэл'
|
title: 'Хэл',
|
||||||
},
|
},
|
||||||
'ms-MY': {
|
'ms-MY': {
|
||||||
lang: 'ms-MY',
|
lang: 'ms-MY',
|
||||||
label: 'بهاس ملايو',
|
label: 'بهاس ملايو',
|
||||||
icon: '🇲🇾',
|
icon: '🇲🇾',
|
||||||
title: 'Bahasa'
|
title: 'Bahasa',
|
||||||
},
|
},
|
||||||
'nb-NO': {
|
'nb-NO': {
|
||||||
lang: 'nb-NO',
|
lang: 'nb-NO',
|
||||||
label: 'Norsk',
|
label: 'Norsk',
|
||||||
icon: '🇳🇴',
|
icon: '🇳🇴',
|
||||||
title: 'Språk'
|
title: 'Språk',
|
||||||
},
|
},
|
||||||
'ne-NP': {
|
'ne-NP': {
|
||||||
lang: 'ne-NP',
|
lang: 'ne-NP',
|
||||||
label: 'नेपाली',
|
label: 'नेपाली',
|
||||||
icon: '🇳🇵',
|
icon: '🇳🇵',
|
||||||
title: 'भाषा'
|
title: 'भाषा',
|
||||||
},
|
},
|
||||||
'nl-BE': {
|
'nl-BE': {
|
||||||
lang: 'nl-BE',
|
lang: 'nl-BE',
|
||||||
label: 'Vlaams',
|
label: 'Vlaams',
|
||||||
icon: '🇧🇪',
|
icon: '🇧🇪',
|
||||||
title: 'Taal'
|
title: 'Taal',
|
||||||
},
|
},
|
||||||
'nl-NL': {
|
'nl-NL': {
|
||||||
lang: 'nl-NL',
|
lang: 'nl-NL',
|
||||||
label: 'Vlaams',
|
label: 'Vlaams',
|
||||||
icon: '🇳🇱',
|
icon: '🇳🇱',
|
||||||
title: 'Taal'
|
title: 'Taal',
|
||||||
},
|
},
|
||||||
'pt-BR': {
|
'pt-BR': {
|
||||||
lang: 'pt-BR',
|
lang: 'pt-BR',
|
||||||
label: 'Português',
|
label: 'Português',
|
||||||
icon: '🇧🇷',
|
icon: '🇧🇷',
|
||||||
title: 'Idiomas'
|
title: 'Idiomas',
|
||||||
},
|
},
|
||||||
'pt-PT': {
|
'pt-PT': {
|
||||||
lang: 'pt-PT',
|
lang: 'pt-PT',
|
||||||
label: 'Português',
|
label: 'Português',
|
||||||
icon: '🇵🇹',
|
icon: '🇵🇹',
|
||||||
title: 'Idiomas'
|
title: 'Idiomas',
|
||||||
},
|
},
|
||||||
'ro-RO': {
|
'ro-RO': {
|
||||||
lang: 'ro-RO',
|
lang: 'ro-RO',
|
||||||
label: 'Română',
|
label: 'Română',
|
||||||
icon: '🇷🇴',
|
icon: '🇷🇴',
|
||||||
title: 'Limba'
|
title: 'Limba',
|
||||||
},
|
},
|
||||||
'ru-RU': {
|
'ru-RU': {
|
||||||
lang: 'ru-RU',
|
lang: 'ru-RU',
|
||||||
label: 'русский',
|
label: 'русский',
|
||||||
icon: '🇷🇺',
|
icon: '🇷🇺',
|
||||||
title: 'язык'
|
title: 'язык',
|
||||||
},
|
},
|
||||||
'sk-SK': {
|
'sk-SK': {
|
||||||
lang: 'sk-SK',
|
lang: 'sk-SK',
|
||||||
label: 'Slovenčina',
|
label: 'Slovenčina',
|
||||||
icon: '🇸🇰',
|
icon: '🇸🇰',
|
||||||
title: 'Jazyk'
|
title: 'Jazyk',
|
||||||
},
|
},
|
||||||
'sr-RS': {
|
'sr-RS': {
|
||||||
lang: 'sr-RS',
|
lang: 'sr-RS',
|
||||||
label: 'српски језик',
|
label: 'српски језик',
|
||||||
icon: '🇸🇷',
|
icon: '🇸🇷',
|
||||||
title: 'Језик'
|
title: 'Језик',
|
||||||
},
|
},
|
||||||
'sl-SI': {
|
'sl-SI': {
|
||||||
lang: 'sl-SI',
|
lang: 'sl-SI',
|
||||||
label: 'Slovenščina',
|
label: 'Slovenščina',
|
||||||
icon: '🇸🇱',
|
icon: '🇸🇱',
|
||||||
title: 'Jezik'
|
title: 'Jezik',
|
||||||
},
|
},
|
||||||
'sv-SE': {
|
'sv-SE': {
|
||||||
lang: 'sv-SE',
|
lang: 'sv-SE',
|
||||||
label: 'Svenska',
|
label: 'Svenska',
|
||||||
icon: '🇸🇪',
|
icon: '🇸🇪',
|
||||||
title: 'Språk'
|
title: 'Språk',
|
||||||
},
|
},
|
||||||
'ta-IN': {
|
'ta-IN': {
|
||||||
lang: 'ta-IN',
|
lang: 'ta-IN',
|
||||||
label: 'தமிழ்',
|
label: 'தமிழ்',
|
||||||
icon: '🇮🇳',
|
icon: '🇮🇳',
|
||||||
title: 'மொழி'
|
title: 'மொழி',
|
||||||
},
|
},
|
||||||
'th-TH': {
|
'th-TH': {
|
||||||
lang: 'th-TH',
|
lang: 'th-TH',
|
||||||
label: 'ไทย',
|
label: 'ไทย',
|
||||||
icon: '🇹🇭',
|
icon: '🇹🇭',
|
||||||
title: 'ภาษา'
|
title: 'ภาษา',
|
||||||
},
|
},
|
||||||
'tr-TR': {
|
'tr-TR': {
|
||||||
lang: 'tr-TR',
|
lang: 'tr-TR',
|
||||||
label: 'Türkçe',
|
label: 'Türkçe',
|
||||||
icon: '🇹🇷',
|
icon: '🇹🇷',
|
||||||
title: 'Dil'
|
title: 'Dil',
|
||||||
},
|
},
|
||||||
'uk-UA': {
|
'uk-UA': {
|
||||||
lang: 'uk-UA',
|
lang: 'uk-UA',
|
||||||
label: 'Українська',
|
label: 'Українська',
|
||||||
icon: '🇺🇰',
|
icon: '🇺🇰',
|
||||||
title: 'Мова'
|
title: 'Мова',
|
||||||
},
|
},
|
||||||
'vi-VN': {
|
'vi-VN': {
|
||||||
lang: 'vi-VN',
|
lang: 'vi-VN',
|
||||||
label: 'Tiếng Việt',
|
label: 'Tiếng Việt',
|
||||||
icon: '🇻🇳',
|
icon: '🇻🇳',
|
||||||
title: 'Ngôn ngữ'
|
title: 'Ngôn ngữ',
|
||||||
},
|
},
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
lang: 'zh-CN',
|
lang: 'zh-CN',
|
||||||
label: '简体中文',
|
label: '简体中文',
|
||||||
icon: '🇨🇳',
|
icon: '🇨🇳',
|
||||||
title: '语言'
|
title: '语言',
|
||||||
},
|
},
|
||||||
'zh-TW': {
|
'zh-TW': {
|
||||||
lang: 'zh-TW',
|
lang: 'zh-TW',
|
||||||
label: '繁体中文',
|
label: '繁体中文',
|
||||||
icon: '🇭🇰',
|
icon: '🇭🇰',
|
||||||
title: '語言'
|
title: '語言',
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
@ -27,8 +27,10 @@ export default function (api) {
|
|||||||
'render',
|
'render',
|
||||||
// 修改路由
|
// 修改路由
|
||||||
'patchRoutes',
|
'patchRoutes',
|
||||||
// 修改history
|
// 修改创建history API
|
||||||
'modifyCreateHistory',
|
'modifyCreateHistory',
|
||||||
|
// 修改路由配置
|
||||||
|
'modifyRoute',
|
||||||
// 生成router时触发
|
// 生成router时触发
|
||||||
'onRouterCreated',
|
'onRouterCreated',
|
||||||
],
|
],
|
||||||
|
@ -309,7 +309,6 @@ export default function (api) {
|
|||||||
|
|
||||||
const absCoreFilePath = join(namespace, 'routes.js');
|
const absCoreFilePath = join(namespace, 'routes.js');
|
||||||
const absExportsFilePath = join(namespace, 'routeExports.js');
|
const absExportsFilePath = join(namespace, 'routeExports.js');
|
||||||
|
|
||||||
const absRuntimeFilePath = join(namespace, 'runtime.js');
|
const absRuntimeFilePath = join(namespace, 'runtime.js');
|
||||||
|
|
||||||
const historyType = {
|
const historyType = {
|
||||||
@ -334,7 +333,6 @@ export default function (api) {
|
|||||||
path: absExportsFilePath,
|
path: absExportsFilePath,
|
||||||
content: Mustache.render(routeExportsTpl, {
|
content: Mustache.render(routeExportsTpl, {
|
||||||
runtimePath,
|
runtimePath,
|
||||||
config: api.config,
|
|
||||||
routerBase: api.config.router?.base,
|
routerBase: api.config.router?.base,
|
||||||
CREATE_HISTORY: historyType[api.config.router.mode] || 'createWebHashHistory',
|
CREATE_HISTORY: historyType[api.config.router.mode] || 'createWebHashHistory',
|
||||||
}),
|
}),
|
||||||
|
@ -13,16 +13,25 @@ export const createRouter = (routes) => {
|
|||||||
},
|
},
|
||||||
initialValue: {{{ CREATE_HISTORY }}},
|
initialValue: {{{ CREATE_HISTORY }}},
|
||||||
});
|
});
|
||||||
history = createHistory(ROUTER_BASE);
|
|
||||||
// 修改routes
|
// 修改routes
|
||||||
plugin.applyPlugins({
|
plugin.applyPlugins({
|
||||||
key: 'patchRoutes',
|
key: 'patchRoutes',
|
||||||
type: ApplyPluginsType.event,
|
type: ApplyPluginsType.event,
|
||||||
args: { routes },
|
args: { routes },
|
||||||
});
|
});
|
||||||
|
const route = plugin.applyPlugins({
|
||||||
|
key: 'modifyRoute',
|
||||||
|
type: ApplyPluginsType.modify,
|
||||||
|
initialValue: {
|
||||||
|
base: ROUTER_BASE,
|
||||||
|
routes: routes,
|
||||||
|
createHistory: createHistory
|
||||||
|
},
|
||||||
|
});
|
||||||
|
history = route['createHistory']?.(route.base);
|
||||||
router = createVueRouter({
|
router = createVueRouter({
|
||||||
history,
|
history,
|
||||||
routes
|
routes: route.routes
|
||||||
});
|
});
|
||||||
|
|
||||||
plugin.applyPlugins({
|
plugin.applyPlugins({
|
||||||
|
8
packages/fes-preset-built-in/types.d.ts
vendored
8
packages/fes-preset-built-in/types.d.ts
vendored
@ -1,5 +1,5 @@
|
|||||||
import { Component, DefineComponent, App } from 'vue';
|
import { Component, DefineComponent, App } from 'vue';
|
||||||
import { RouteRecordRaw, Router, RouterHistory } from 'vue-router';
|
import { RouteRecordRaw, Router, RouterHistory, createMemoryHistory, createWebHashHistory, createWebHistory } from 'vue-router';
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import { Plugin } from '@fesjs/runtime';
|
import { Plugin } from '@fesjs/runtime';
|
||||||
@ -18,6 +18,11 @@ interface ClientRenderOption {
|
|||||||
|
|
||||||
type RenderFunc = () => Promise<App>
|
type RenderFunc = () => Promise<App>
|
||||||
|
|
||||||
|
interface Route {
|
||||||
|
base: string;
|
||||||
|
mode:string;
|
||||||
|
createHistory: createMemoryHistory | createWebHashHistory | createWebHistory;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export function getRouter(): Router;
|
export function getRouter(): Router;
|
||||||
@ -28,6 +33,7 @@ declare module '@fesjs/fes' {
|
|||||||
interface PluginRuntimeConfig {
|
interface PluginRuntimeConfig {
|
||||||
beforeRender?: (option: BeforeRenderConfig) => BeforeRenderConfig;
|
beforeRender?: (option: BeforeRenderConfig) => BeforeRenderConfig;
|
||||||
patchRoutes?: ({ routes }: { routes: RouteRecordRaw[] }) => void;
|
patchRoutes?: ({ routes }: { routes: RouteRecordRaw[] }) => void;
|
||||||
|
modifyRoute?: ({base, mode, createHistory }: Route) => Route;
|
||||||
modifyClientRenderOpts?: (option: ClientRenderOption) => ClientRenderOption;
|
modifyClientRenderOpts?: (option: ClientRenderOption) => ClientRenderOption;
|
||||||
rootContainer?: (component: DefineComponent, option: { routes: RouteRecordRaw[], plugin: Plugin }) => Component;
|
rootContainer?: (component: DefineComponent, option: { routes: RouteRecordRaw[], plugin: Plugin }) => Component;
|
||||||
onAppCreated?: ({ app, routes }: { app: App, routes: RouteRecordRaw[] }) => void;
|
onAppCreated?: ({ app, routes }: { app: App, routes: RouteRecordRaw[] }) => void;
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { defineBuildConfig } from "@fesjs/fes";
|
import { defineBuildConfig } from "@fesjs/fes";
|
||||||
|
|
||||||
export default defineBuildConfig({
|
export default defineBuildConfig({
|
||||||
// exportStatic: {},
|
|
||||||
define: {
|
define: {
|
||||||
__DEV__: false
|
__DEV__: false
|
||||||
},
|
},
|
||||||
@ -33,7 +32,6 @@ export default defineBuildConfig({
|
|||||||
menus: [
|
menus: [
|
||||||
{
|
{
|
||||||
name: 'index',
|
name: 'index',
|
||||||
|
|
||||||
icon: '/wine-outline.svg',
|
icon: '/wine-outline.svg',
|
||||||
match: ['/route/*']
|
match: ['/route/*']
|
||||||
},
|
},
|
||||||
@ -69,9 +67,6 @@ export default defineBuildConfig({
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
locale: {
|
|
||||||
legacy: false
|
|
||||||
},
|
|
||||||
enums: {
|
enums: {
|
||||||
status: [
|
status: [
|
||||||
['0', '无效的'],
|
['0', '无效的'],
|
||||||
|
@ -11,6 +11,8 @@ import { useI18n, defineRouteMeta } from '@fesjs/fes';
|
|||||||
import { FButton } from '@fesjs/fes-design';
|
import { FButton } from '@fesjs/fes-design';
|
||||||
|
|
||||||
defineRouteMeta({
|
defineRouteMeta({
|
||||||
|
name: 'index',
|
||||||
|
title: '$home',
|
||||||
'keep-alive': true,
|
'keep-alive': true,
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -20,9 +22,7 @@ export default {
|
|||||||
},
|
},
|
||||||
setup() {
|
setup() {
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const a = 'aa'.replaceAll('a', 1);
|
|
||||||
return {
|
return {
|
||||||
a,
|
|
||||||
t,
|
t,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import { defineBuildConfig } from '@fesjs/fes'
|
import { defineBuildConfig } from '@fesjs/fes'
|
||||||
export default defineBuildConfig({
|
export default defineBuildConfig({
|
||||||
// exportStatic: {},
|
|
||||||
define: {
|
define: {
|
||||||
__DEV__: false
|
__DEV__: false
|
||||||
},
|
},
|
||||||
@ -75,9 +74,6 @@ export default defineBuildConfig({
|
|||||||
defaultExpandAll: false
|
defaultExpandAll: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
locale: {
|
|
||||||
legacy: true
|
|
||||||
},
|
|
||||||
devServer: {
|
devServer: {
|
||||||
port: 8080
|
port: 8080
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user