catstodon/app/javascript/flavours/glitch/locales/global_locale.ts
Claire 50188ad211
[Glitch] Use helpers to check environment in frontend (#2571)
Port 277e6968f5 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Co-authored-by: Renaud Chaput <renchap@gmail.com>
2024-01-15 12:16:05 +01:00

28 lines
604 B
TypeScript

import { isDevelopment } from 'flavours/glitch/utils/environment';
export interface LocaleData {
locale: string;
messages: Record<string, string>;
}
let loadedLocale: LocaleData | undefined;
export function setLocale(locale: LocaleData) {
loadedLocale = locale;
}
export function getLocale(): LocaleData {
if (!loadedLocale) {
if (isDevelopment()) {
throw new Error('getLocale() called before any locale has been set');
} else {
return { locale: 'unknown', messages: {} };
}
}
return loadedLocale;
}
export function isLocaleLoaded() {
return !!loadedLocale;
}