Nightly Build / build (push) Failing after 6s
- Remove desktop (Tauri) bundle: docs/desktop.md, icons/, tauri.conf.json, src/desktop/mod.rs, gen/schemas/ - Remove build.rs (no longer needed) - Add i18n system (crates/core-api, plugin-mobile-connector, web) - Refactor config system (src/config.rs, boot_format.rs) - Add mobile connector features (app, router, device pairing) - Plugin system improvements (skald-core) - Update dependencies (Cargo.lock, Cargo.toml) - CI/CD: Gitea Actions workflows (nightly + release), package.sh, verify-version.sh, builds.skaldagent.net config
87 lines
3.0 KiB
JavaScript
87 lines
3.0 KiB
JavaScript
import en from '../i18n/en.js';
|
|
import it from '../i18n/it.js';
|
|
import fr from '../i18n/fr.js';
|
|
|
|
const DICTS = { en, it, fr };
|
|
|
|
export const LOCALES = [
|
|
{ id: 'en', label: 'English' },
|
|
{ id: 'it', label: 'Italiano' },
|
|
{ id: 'fr', label: 'Français' },
|
|
];
|
|
|
|
// Pre-auth the last choice is cached in localStorage (the login page can be
|
|
// localized before any session exists); after login the server is the source
|
|
// of truth: the user's own `locale` wins over the instance default.
|
|
let _locale = localStorage.getItem('locale') || 'en';
|
|
|
|
export function t(key, params) {
|
|
let s = DICTS[_locale]?.[key] ?? DICTS.en[key] ?? key;
|
|
if (params) {
|
|
for (const [k, v] of Object.entries(params)) s = s.replaceAll(`{${k}}`, String(v));
|
|
}
|
|
return s;
|
|
}
|
|
|
|
/**
|
|
* Merge additional strings into the dictionaries — the registration seam for
|
|
* plugin page fragments, which ship their own `{ en, it, fr }` table and call
|
|
* this at module-load time (before their first render). Keys MUST be namespaced
|
|
* (`plugin.<id>.<key>`) so a plugin never clobbers a core key or another
|
|
* plugin's. Unknown locales are created on demand; missing keys still fall back
|
|
* through `t()` (locale → en → key). Merging alone does not re-render — the
|
|
* fragment registers before it mounts, and later `locale-changed` events drive
|
|
* updates as usual via `I18nMixin`.
|
|
*/
|
|
export function addStrings(dicts) {
|
|
for (const [loc, map] of Object.entries(dicts || {})) {
|
|
DICTS[loc] = { ...(DICTS[loc] || {}), ...map };
|
|
}
|
|
}
|
|
|
|
export function getLocale() { return _locale; }
|
|
|
|
export function setLocale(locale, { persist = false } = {}) {
|
|
if (!DICTS[locale]) locale = 'en';
|
|
const changed = locale !== _locale;
|
|
_locale = locale;
|
|
localStorage.setItem('locale', locale);
|
|
document.documentElement.lang = locale;
|
|
if (changed) window.dispatchEvent(new CustomEvent('locale-changed', { detail: { locale } }));
|
|
if (persist) {
|
|
fetch('/api/auth/profile', {
|
|
method: 'PUT',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ locale }),
|
|
}).catch(() => {});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Resolves the effective locale once the session is known:
|
|
* user preference (users.locale) → instance default (config `ui_locale`) →
|
|
* cached/browser default. Pre-auth (login/setup) keeps the cached locale.
|
|
*/
|
|
export async function initI18n() {
|
|
try {
|
|
const res = await fetch('/api/auth/me');
|
|
if (!res.ok) return;
|
|
const me = await res.json();
|
|
const eff = me.locale || me.default_locale;
|
|
if (eff) setLocale(eff);
|
|
} catch { /* keep cached locale */ }
|
|
}
|
|
|
|
/** Re-renders the host component whenever the locale changes. */
|
|
export const I18nMixin = (Base) => class extends Base {
|
|
connectedCallback() {
|
|
super.connectedCallback?.();
|
|
this.__onLocaleChanged = () => this.requestUpdate();
|
|
window.addEventListener('locale-changed', this.__onLocaleChanged);
|
|
}
|
|
disconnectedCallback() {
|
|
window.removeEventListener('locale-changed', this.__onLocaleChanged);
|
|
super.disconnectedCallback?.();
|
|
}
|
|
};
|