From dc6cc6c5afe73b36bbe46ba4bafa85bc03ed9e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Fri, 6 Dec 2019 15:51:20 +0800 Subject: [PATCH] feat(cli): support locales --- .../{intro.en-US.md => home.en-US.md} | 0 .../{intro.zh-CN.md => home.zh-CN.md} | 0 packages/vant-cli/site/common/locales.js | 30 +++++ packages/vant-cli/site/desktop/App.vue | 33 ++++-- .../site/desktop/components/Header.vue | 1 + packages/vant-cli/site/desktop/main.js | 29 +---- packages/vant-cli/site/desktop/router.js | 108 +++++++++++++++--- .../site/mobile/components/DemoHome.vue | 21 +++- .../site/mobile/components/DemoHomeNav.vue | 10 +- .../site/mobile/components/DemoNav.vue | 3 +- packages/vant-cli/site/mobile/main.js | 19 +-- packages/vant-cli/site/mobile/router.js | 95 ++++++++++++--- packages/vant-cli/src/compiler/compile-sfc.ts | 16 ++- .../src/compiler/gen-site-desktop-shared.ts | 65 ++++++++--- .../src/compiler/gen-site-mobile-shared.ts | 25 +++- vant.config.js | 16 +-- 16 files changed, 336 insertions(+), 135 deletions(-) rename docs/markdown/{intro.en-US.md => home.en-US.md} (100%) rename docs/markdown/{intro.zh-CN.md => home.zh-CN.md} (100%) create mode 100644 packages/vant-cli/site/common/locales.js diff --git a/docs/markdown/intro.en-US.md b/docs/markdown/home.en-US.md similarity index 100% rename from docs/markdown/intro.en-US.md rename to docs/markdown/home.en-US.md diff --git a/docs/markdown/intro.zh-CN.md b/docs/markdown/home.zh-CN.md similarity index 100% rename from docs/markdown/intro.zh-CN.md rename to docs/markdown/home.zh-CN.md diff --git a/packages/vant-cli/site/common/locales.js b/packages/vant-cli/site/common/locales.js new file mode 100644 index 000000000..bb5661e41 --- /dev/null +++ b/packages/vant-cli/site/common/locales.js @@ -0,0 +1,30 @@ +const ZH_CN = 'zh-CN'; +const EN_US = 'en-US'; +const CACHE_KEY = 'vant-cli-lang'; + +let currentLang = ZH_CN; + +export function getLang() { + return currentLang; +} + +export function setLang(lang) { + currentLang = lang; + localStorage.setItem(CACHE_KEY, lang); +} + +export function setDefaultLang(langFromConfig) { + const cached = localStorage.getItem(CACHE_KEY); + + if (cached) { + currentLang = cached; + return; + } + + if (navigator.language && navigator.language.indexOf('zh-') !== -1) { + currentLang = ZH_CN; + return; + } + + currentLang = langFromConfig || EN_US; +} diff --git a/packages/vant-cli/site/desktop/App.vue b/packages/vant-cli/site/desktop/App.vue index a5db140fa..c61ff6d26 100644 --- a/packages/vant-cli/site/desktop/App.vue +++ b/packages/vant-cli/site/desktop/App.vue @@ -10,21 +10,38 @@ import VanDoc from './components'; import { config } from 'site-desktop-shared'; +function getPublicPath() { + const { site } = config.build || {}; + + if (process.env.NODE_ENV === 'production') { + return (site && site.publicPath) || '/'; + } + + return '/'; +} + export default { components: { VanDoc }, data() { - const { site } = config.build || {}; - const isProd = process.env.NODE_ENV === 'production'; - const prodPublicPath = (site && site.publicPath) || '/'; - const publicPath = isProd ? prodPublicPath : '/'; - return { - config: config.site, - simulator: `${publicPath}mobile.html${location.hash}` + simulator: `${getPublicPath()}mobile.html${location.hash}` }; + }, + + computed: { + config() { + const { locales } = config.site; + + if (locales) { + const { lang } = this.$route.meta; + return locales[lang]; + } + + return config.site; + } } }; @@ -32,7 +49,7 @@ export default {