refactor: optimize language switcher and header layout

- Extracts language switcher into separate component
- Updates locale display to use country flag emojis
- Improves header responsiveness and spacing
- Removes embedded i18n logic for better separation of concerns
- Adjusts menu items alignment and margins for better visual balance
This commit is contained in:
ccbikai 2025-03-16 11:17:32 +08:00
parent 17c1c8747e
commit e7b22a497b
3 changed files with 48 additions and 29 deletions

View file

@ -0,0 +1,39 @@
<script setup>
import { Languages } from 'lucide-vue-next'
const nuxtApp = useNuxtApp()
const i18n = nuxtApp.$i18n
const { setLocale, locales } = useI18n()
const currentLocale = ref(i18n.locale.value)
watch(currentLocale, (newLocale) => {
setLocale(newLocale)
})
</script>
<template>
<DropdownMenu>
<DropdownMenuTrigger as-child>
<Button variant="ghost">
<Languages class="w-5 h-5" />
<span class="sr-only">{{ $t('theme.toggle') }}</span>
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent
align="end"
class="min-w-min"
>
<DropdownMenuItem
v-for="locale in locales"
:key="locale.code"
class="cursor-pointer"
@click="setLocale(locale.code)"
>
<span class="mr-1">
{{ locale.emoji }}
</span>
{{ locale.name }}
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</template>

View file

@ -1,19 +1,9 @@
<script setup> <script setup>
import { Ellipsis, X } from 'lucide-vue-next' import { Ellipsis, X } from 'lucide-vue-next'
import { GitHubIcon } from 'vue3-simple-icons' import { GitHubIcon } from 'vue3-simple-icons'
import SwitchTheme from '../SwitchTheme.vue'
const showMenu = ref(false) const showMenu = ref(false)
const { title, github } = useAppConfig() const { title, github } = useAppConfig()
const nuxtApp = useNuxtApp()
const i18n = nuxtApp.$i18n
const { setLocale, locales } = useI18n()
const currentLocale = ref(i18n.locale.value)
watch(currentLocale, (newLocale) => {
setLocale(newLocale)
})
</script> </script>
<template> <template>
@ -65,9 +55,9 @@ watch(currentLocale, (newLocale) => {
</span> </span>
<span class="mx-2">{{ title }}</span> <span class="mx-2">{{ title }}</span>
</a> </a>
<div class="w-full mx-4" /> <div class="w-auto mx-4" />
<div <div
class="flex flex-col items-start justify-end w-full pt-4 md:items-center md:w-3/5 md:flex-row md:py-0" class="flex flex-col items-start justify-end w-full pt-4 md:items-center md:flex-row md:py-0"
> >
<a <a
class="w-full px-6 py-2 mr-0 text-gray-700 cursor-pointer dark:text-gray-300 md:px-3 md:mr-2 lg:mr-3 md:w-auto" class="w-full px-6 py-2 mr-0 text-gray-700 cursor-pointer dark:text-gray-300 md:px-3 md:mr-2 lg:mr-3 md:w-auto"
@ -78,26 +68,16 @@ watch(currentLocale, (newLocale) => {
:href="github" :href="github"
target="_blank" target="_blank"
title="Github" title="Github"
class="inline-flex items-center w-full px-6 py-3 text-sm font-medium leading-4 text-white bg-gray-900 md:px-3 md:w-auto md:rounded-full hover:bg-gray-800 focus:outline-none md:focus:ring-2 focus:ring-0 focus:ring-offset-2 focus:ring-gray-800" class="inline-flex items-center w-full px-6 py-3 text-sm font-medium leading-4 text-white bg-gray-900 md:px-3 md:w-auto md:rounded-full hover:bg-gray-800 focus:outline-none md:focus:ring-2 focus:ring-0 focus:ring-offset-2 focus:ring-gray-800 mr-2"
> >
<GitHubIcon <GitHubIcon
class="w-5 h-5 mr-1" class="w-5 h-5 mr-1"
/> />
GitHub</a> GitHub</a>
<Tabs v-model="currentLocale" class="md:ml-2 lg:ml-3">
<TabsList> <SwitchLanguage />
<TabsTrigger
v-for="locale in locales" <SwitchTheme />
:key="locale.code"
:value="locale.code"
>
{{ locale.language }}
</TabsTrigger>
</TabsList>
</Tabs>
<span class="ml-1">
<SwitchTheme />
</span>
</div> </div>
</div> </div>
</div> </div>

View file

@ -5,13 +5,13 @@ const locales: LocaleObject[] = [
code: 'zh-CN', code: 'zh-CN',
file: 'zh-CN.json', file: 'zh-CN.json',
name: '简体中文', name: '简体中文',
language: '简', emoji: '🇨🇳',
}, },
{ {
code: 'en-US', code: 'en-US',
file: 'en-US.json', file: 'en-US.json',
name: 'English', name: 'English',
language: 'En', emoji: '🇺🇸',
}, },
] ]