dify/web/i18n/index.ts

23 lines
634 B
TypeScript
Raw Normal View History

2024-02-23 14:31:06 +08:00
import Cookies from 'js-cookie'
import { changeLanguage } from '@/i18n/i18next-config'
import { LOCALE_COOKIE_NAME } from '@/config'
import { LanguagesSupported } from '@/i18n/language'
2024-01-23 21:14:53 +08:00
2023-05-15 08:51:32 +08:00
export const i18n = {
2024-02-23 14:31:06 +08:00
defaultLocale: 'en-US',
2024-01-23 21:14:53 +08:00
locales: LanguagesSupported,
2023-05-15 08:51:32 +08:00
} as const
export type Locale = typeof i18n['locales'][number]
2024-02-23 14:31:06 +08:00
export const getLocaleOnClient = (): Locale => {
return Cookies.get(LOCALE_COOKIE_NAME) as Locale || i18n.defaultLocale
}
export const setLocaleOnClient = (locale: Locale, reloadPage = true) => {
Cookies.set(LOCALE_COOKIE_NAME, locale)
changeLanguage(locale)
reloadPage && location.reload()
}