mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-15 05:19:58 +00:00
31 lines
996 B
TypeScript
31 lines
996 B
TypeScript
import { addVitePlugin, defineNuxtModule } from '@nuxt/kit'
|
|
import { currentLocales } from '../config/i18n'
|
|
|
|
const virtualName = 'virtual:iso-639-1'
|
|
const resolvedVirtualName = `\0${virtualName}`
|
|
|
|
export default defineNuxtModule({
|
|
setup() {
|
|
addVitePlugin({
|
|
name: 'elk:iso-639-1',
|
|
enforce: 'pre',
|
|
resolveId(id) {
|
|
return id === virtualName ? resolvedVirtualName : null
|
|
},
|
|
async load(id) {
|
|
if (id === resolvedVirtualName) {
|
|
return `const languagesNames = ${JSON.stringify(currentLocales.reduce((acc, l) => {
|
|
acc[l.code] = l.name as string
|
|
return acc
|
|
}, {} as Record<string, string>))};
|
|
export const supportedTranslationLanguages = Object.entries(languagesNames).map(([code, nativeName]) => ({ code, nativeName }));
|
|
export function getDisplayName(code) {
|
|
return languagesNames[code] ?? new Intl.DisplayNames([code], { type: 'language' }).of(code);
|
|
}
|
|
`
|
|
}
|
|
},
|
|
})
|
|
},
|
|
})
|