@communityox/ox_lib
Version:
JS/TS wrapper for ox_lib exports
72 lines (71 loc) • 2.26 kB
JavaScript
import { cache } from '../cache/index';
import { printf } from 'fast-printf';
const dict = {};
function flattenDict(source, target, prefix) {
for (const key in source) {
const fullKey = prefix ? `${prefix}.${key}` : key;
const value = source[key];
if (typeof value === 'object')
flattenDict(value, target, fullKey);
else
target[fullKey] = String(value);
}
return target;
}
export const locale = (str, ...args) => {
const lstr = dict[str];
if (!lstr)
return str;
if (lstr) {
if (typeof lstr !== 'string')
return lstr;
if (args.length > 0) {
return printf(lstr, ...args);
}
return lstr;
}
return str;
};
export const getLocales = () => dict;
export function getLocale(resource, key) {
let locale = dict[key];
if (locale)
console.warn(`overwritin existing locale '${key} (${locale})`);
locale = exports[resource].getLocale(key);
dict[key] = locale;
if (!locale)
console.warn(`no locale exists with key '${key} in resource '${resource}`);
return locale;
}
function loadLocale(key) {
const data = LoadResourceFile(cache.resource, `locales/${key}.json`);
if (!data)
console.warn(`could not load 'locales/${key}.json'`);
return JSON.parse(data) || {};
}
export const initLocale = (key) => {
const lang = key || exports.ox_lib.getLocaleKey();
let locales = loadLocale('en');
if (lang !== 'en')
Object.assign(locales, loadLocale(lang));
const flattened = flattenDict(locales, {});
for (let [k, v] of Object.entries(flattened)) {
if (typeof v === 'string') {
const regExp = new RegExp(/\$\{([^}]+)\}/g);
const matches = v.match(regExp);
if (matches) {
for (const match of matches) {
if (!match)
break;
const variable = match.substring(2, match.length - 1);
let locale = flattened[variable];
if (locale) {
v = v.replace(match, locale);
}
}
}
}
dict[k] = v;
}
};
initLocale();