fix: naive i18n

This commit is contained in:
chansee97 2024-04-06 00:55:19 +08:00
parent 446d67e6d8
commit a8b6e69714
20 changed files with 53 additions and 71 deletions

View File

@ -66,8 +66,7 @@
"yaml", "yaml",
"toml" "toml"
], ],
"i18n-ally.displayLanguage": "zh", "i18n-ally.displayLanguage": "zhCN",
// "i18n-ally.enabledParsers": ["ts"],
"i18n-ally.enabledFrameworks": ["vue"], "i18n-ally.enabledFrameworks": ["vue"],
"i18n-ally.editor.preferEditor": true, "i18n-ally.editor.preferEditor": true,
"i18n-ally.keystyle": "nested", "i18n-ally.keystyle": "nested",

View File

@ -50,7 +50,8 @@
"closeOther": "Close other", "closeOther": "Close other",
"closeAll": "Close all", "closeAll": "Close all",
"closeLeft": "Close left", "closeLeft": "Close left",
"closeRight": "Close right" "closeRight": "Close right",
"backHome": "Back to the homepage"
}, },
"login": { "login": {
"signInTitle": "Login", "signInTitle": "Login",

View File

@ -50,7 +50,8 @@
"closeOther": "关闭其他", "closeOther": "关闭其他",
"closeLeft": "关闭左侧", "closeLeft": "关闭左侧",
"closeRight": "关闭右侧", "closeRight": "关闭右侧",
"closeAll": "全部关闭" "closeAll": "全部关闭",
"backHome": "回到首页"
}, },
"login": { "login": {
"signInTitle": "登录", "signInTitle": "登录",

View File

@ -1,16 +1,17 @@
<script setup lang="ts"> <script setup lang="ts">
import { darkTheme, dateZhCN, zhCN } from 'naive-ui' import { darkTheme } from 'naive-ui'
import { useAppStore } from './store' import { useAppStore } from './store'
import { naiveI18nOptions } from '@/utils'
const locale = zhCN
const dateLocale = dateZhCN
const appStore = useAppStore() const appStore = useAppStore()
const naiveLocale = computed(() => naiveI18nOptions[appStore.lang])
</script> </script>
<template> <template>
<n-config-provider <n-config-provider
class="wh-full" inline-theme-disabled :theme="appStore.colorMode === 'dark' ? darkTheme : null" class="wh-full" inline-theme-disabled :theme="appStore.colorMode === 'dark' ? darkTheme : null"
:locale="locale" :date-locale="dateLocale" :theme-overrides="appStore.theme" :locale="naiveLocale.locale" :date-locale="naiveLocale.dateLocale" :theme-overrides="appStore.theme"
> >
<naive-provider> <naive-provider>
<router-view /> <router-view />

View File

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { NFlex, NText } from 'naive-ui' import { NFlex } from 'naive-ui'
import { useAppStore } from '@/store' import { useAppStore } from '@/store'
import { renderIcon } from '@/utils' import { renderIcon } from '@/utils'

View File

@ -30,7 +30,7 @@ const router = useRouter()
type="primary" type="primary"
@click="router.push('/')" @click="router.push('/')"
> >
回到首页 {{ $t('app.backHome') }}
</n-button> </n-button>
</div> </div>
</template> </template>

View File

@ -5,11 +5,11 @@ const appStore = useAppStore()
const options = [ const options = [
{ {
label: 'English', label: 'English',
value: 'en', value: 'enUS',
}, },
{ {
label: '中文', label: '中文',
value: 'zh', value: 'zhCN',
}, },
] ]
</script> </script>

View File

@ -1,31 +1,17 @@
<script setup lang="ts"> <script setup lang="ts">
const props = defineProps<{ const props = defineProps<{
modelValue: string
maxLength?: string maxLength?: string
}>() }>()
const emit = defineEmits(['update:modelValue']) const modelValue = defineModel<string>()
const text = useVModel(props, 'modelValue', emit)
</script> </script>
<template> <template>
<div v-if="text" class="copy-wrap"> <div v-if="modelValue" class="inline-flex items-center gap-0.5em">
<n-ellipsis :style="{ 'max-width': maxLength || '12em' }"> <n-ellipsis :style="{ 'max-width': props.maxLength || '12em' }">
{{ text }} {{ modelValue }}
</n-ellipsis> </n-ellipsis>
<span v-copy="text" class="copy_icon"> <span v-copy="modelValue" class="cursor-pointer">
<icon-park-outline-copy /> <icon-park-outline-copy />
</span> </span>
</div> </div>
</template> </template>
<style scoped>
.copy-wrap{
display: inline-flex;
align-items: center;
gap:0.5em;
}
.copy_icon{
cursor: pointer;
}
</style>

View File

@ -36,7 +36,7 @@ function handleSelectIcon(icon: string) {
<nova-icon :icon="item" :size="24" /> <nova-icon :icon="item" :size="24" />
</div> </div>
</div> </div>
<n-empty v-else class="w-full" description="没有符合条件的图标" /> <n-empty v-else class="w-full" />
</div> </div>
</n-popover> </n-popover>
</template> </template>

View File

@ -9,24 +9,6 @@ const emit = defineEmits(['change'])
const page = ref(1) const page = ref(1)
const pageSize = ref(10) const pageSize = ref(10)
const displayOrder: Array<'pages' | 'size-picker' | 'quick-jumper'> = ['size-picker', 'pages'] const displayOrder: Array<'pages' | 'size-picker' | 'quick-jumper'> = ['size-picker', 'pages']
const pageSizes = [
{
label: '10 每页',
value: 10,
},
{
label: '20 每页',
value: 20,
},
{
label: '30 每页',
value: 30,
},
{
label: '50 每页',
value: 50,
},
]
function changePage() { function changePage() {
emit('change', page.value, pageSize.value) emit('change', page.value, pageSize.value)
@ -41,7 +23,6 @@ function changePage() {
:item-count="props.count" :item-count="props.count"
:display-order="displayOrder" :display-order="displayOrder"
show-size-picker show-size-picker
:page-sizes="pageSizes"
@update-page="changePage" @update-page="changePage"
@update-page-size="changePage" @update-page-size="changePage"
/> />

View File

@ -1,16 +1,16 @@
import { createI18n } from 'vue-i18n' import { createI18n } from 'vue-i18n'
import type { App } from 'vue' import type { App } from 'vue'
import en from '../../locales/en.json' import enUS from '../../locales/enUS.json'
import zh from '../../locales/zh.json' import zhCN from '../../locales/zhCN.json'
import { local } from '@/utils' import { local } from '@/utils'
export const i18n = createI18n({ export const i18n = createI18n({
legacy: false, legacy: false,
locale: local.get('lang') || 'zh', // 默认显示语言 locale: local.get('lang') || 'zhCN', // 默认显示语言
fallbackLocale: 'en', fallbackLocale: 'enUS',
messages: { messages: {
zh, zhCN,
en, enUS,
}, },
}) })

View File

@ -8,7 +8,7 @@ export const DEFAULT_ALOVA_OPTIONS = {
export const DEFAULT_BACKEND_OPTIONS = { export const DEFAULT_BACKEND_OPTIONS = {
codeKey: 'code', codeKey: 'code',
dataKey: 'data', dataKey: 'data',
msgKey: 'msg', msgKey: 'message',
successCode: 200, successCode: 200,
} }

View File

@ -17,12 +17,12 @@ export function handleResponseError(response: Response) {
const error: Service.RequestError = { const error: Service.RequestError = {
errorType: 'Response Error', errorType: 'Response Error',
code: 0, code: 0,
msg: ERROR_STATUS.default, message: ERROR_STATUS.default,
data: null, data: null,
} }
const errorCode: ErrorStatus = response.status as ErrorStatus const errorCode: ErrorStatus = response.status as ErrorStatus
const msg = ERROR_STATUS[errorCode] || ERROR_STATUS.default const message = ERROR_STATUS[errorCode] || ERROR_STATUS.default
Object.assign(error, { code: errorCode, msg }) Object.assign(error, { code: errorCode, message })
showError(error) showError(error)
@ -40,7 +40,7 @@ export function handleBusinessError(data: Record<string, any>, config: Required<
const error: Service.RequestError = { const error: Service.RequestError = {
errorType: 'Business Error', errorType: 'Business Error',
code: data[codeKey], code: data[codeKey],
msg: data[msgKey], message: data[msgKey],
data: data.data, data: data.data,
} }
@ -87,5 +87,5 @@ export function showError(error: Service.RequestError) {
if (ERROR_NO_TIP_STATUS.includes(code)) if (ERROR_NO_TIP_STATUS.includes(code))
return return
window.$message.error(error.msg) window.$message.error(error.message)
} }

View File

@ -18,7 +18,7 @@ export const useAppStore = defineStore('app-store', {
state: () => { state: () => {
return { return {
footerText: 'Copyright © 2024 chansee97', footerText: 'Copyright © 2024 chansee97',
lang: 'zh', lang: 'enUS' as App.lang,
theme: themeConfig as GlobalThemeOverrides, theme: themeConfig as GlobalThemeOverrides,
primaryColor: themeConfig.common.primaryColor, primaryColor: themeConfig.common.primaryColor,
collapsed: false, collapsed: false,

View File

@ -54,10 +54,8 @@ export const useAuthStore = defineStore('auth-store', {
/* 用户登录 */ /* 用户登录 */
async login(userName: string, password: string) { async login(userName: string, password: string) {
const { isSuccess, data } = await fetchLogin({ userName, password }) const { isSuccess, data } = await fetchLogin({ userName, password })
if (!isSuccess) { if (!isSuccess)
window.$message.error('登录失败,请检查用户名和密码')
return return
}
// 处理登录信息 // 处理登录信息
await this.handleAfterLogin(data) await this.handleAfterLogin(data)

View File

@ -1,7 +1,7 @@
import type { MenuOption } from 'naive-ui' import type { MenuOption } from 'naive-ui'
import { RouterLink } from 'vue-router' import { RouterLink } from 'vue-router'
import { h } from 'vue' import { h } from 'vue'
import { clone, construct, min } from 'radash' import { clone, construct } from 'radash'
import type { RouteRecordRaw } from 'vue-router' import type { RouteRecordRaw } from 'vue-router'
import { $t, arrayToTree, local, renderIcon } from '@/utils' import { $t, arrayToTree, local, renderIcon } from '@/utils'
import { router } from '@/router' import { router } from '@/router'

View File

@ -46,5 +46,5 @@ declare namespace Storage {
} }
declare namespace App { declare namespace App {
type lang = 'zh' | 'en' type lang = 'zhCN' | 'enUS'
} }

View File

@ -29,7 +29,7 @@ declare namespace Service {
/** 错误码 */ /** 错误码 */
code: RequestCode code: RequestCode
/** 错误信息 */ /** 错误信息 */
msg: string message: string
/** 返回的数据 */ /** 返回的数据 */
data?: any data?: any
} }
@ -42,7 +42,7 @@ declare namespace Service {
/** 错误码 */ /** 错误码 */
code: RequestCode code: RequestCode
/** 错误信息 */ /** 错误信息 */
msg: string message: string
/** 返回的数据 */ /** 返回的数据 */
data: T data: T
} }

View File

@ -1,3 +1,5 @@
import type { NDateLocale, NLocale } from 'naive-ui'
import { dateZhCN, zhCN } from 'naive-ui'
import { i18n } from '@/modules/i18n' import { i18n } from '@/modules/i18n'
export function setLocale(locale: App.lang) { export function setLocale(locale: App.lang) {
@ -5,3 +7,14 @@ export function setLocale(locale: App.lang) {
} }
export const $t = i18n.global.t export const $t = i18n.global.t
export const naiveI18nOptions: Record<App.lang, { locale: NLocale | null, dateLocale: NDateLocale | null }> = {
zhCN: {
locale: zhCN,
dateLocale: dateZhCN,
},
enUS: {
locale: null,
dateLocale: null,
},
}

View File

@ -1,4 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import type { FormInst } from 'naive-ui'
const emit = defineEmits(['update:modelValue']) const emit = defineEmits(['update:modelValue'])
function toLogin() { function toLogin() {
emit('update:modelValue', 'login') emit('update:modelValue', 'login')