import Toggle from "../Input/Toggle" import Lazy from "../Base/Lazy" import { Utils } from "../../Utils" import Translations from "../i18n/Translations" import Combine from "../Base/Combine" import Locale from "../i18n/Locale" import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig" import { Translation } from "../i18n/Translation" import { VariableUiElement } from "../Base/VariableUIElement" import Link from "../Base/Link" import LinkToWeblate from "../Base/LinkToWeblate" import Toggleable from "../Base/Toggleable" import Title from "../Base/Title" import { Store } from "../../Logic/UIEventSource" import { SubtleButton } from "../Base/SubtleButton" import Svg from "../../Svg" import * as native_languages from "../../assets/language_native.json" import BaseUIElement from "../BaseUIElement" class TranslatorsPanelContent extends Combine { constructor(layout: LayoutConfig, isTranslator: Store) { const t = Translations.t.translations const { completeness, untranslated, total } = layout.missingTranslations() const seed = t.completeness for (const ln of Array.from(completeness.keys())) { if (ln === "*") { continue } if (seed.translations[ln] === undefined) { seed.translations[ln] = seed.translations["en"] } } const completenessTr = {} const completenessPercentage = {} seed.SupportedLanguages().forEach((ln) => { completenessTr[ln] = "" + (completeness.get(ln) ?? 0) completenessPercentage[ln] = "" + Math.round((100 * (completeness.get(ln) ?? 0)) / total) }) function missingTranslationsFor(language: string): BaseUIElement[] { // e.g. "themes:.layers.0.tagRenderings..., or "layers:.description const missingKeys = Utils.NoNull(untranslated.get(language) ?? []) .filter((ctx) => ctx.indexOf(":") >= 0) .map((ctx) => ctx.replace(/note_import_[a-zA-Z0-9_]*/, "note_import")) const hasMissingTheme = missingKeys.some((k) => k.startsWith("themes:")) const missingLayers = Utils.Dedup( missingKeys .filter((k) => k.startsWith("layers:")) .map((k) => k.slice("layers:".length).split(".")[0]) ) console.log( "Getting untranslated string for", language, "raw:", missingKeys, "hasMissingTheme:", hasMissingTheme, "missingLayers:", missingLayers ) return Utils.NoNull([ hasMissingTheme ? new Link( "themes:" + layout.id + ".* (zen mode)", LinkToWeblate.hrefToWeblateZen(language, "themes", layout.id), true ) : undefined, ...missingLayers.map( (id) => new Link( "layer:" + id + ".* (zen mode)", LinkToWeblate.hrefToWeblateZen(language, "layers", id), true ) ), ...missingKeys.map( (context) => new Link(context, LinkToWeblate.hrefToWeblate(language, context), true) ), ]) } // "translationCompleteness": "Translations for {theme} in {language} are at {percentage}: {translated} out of {total}", const translated = seed.Subs({ total, theme: layout.title, percentage: new Translation(completenessPercentage), translated: new Translation(completenessTr), language: seed.OnEveryLanguage((_, lng) => native_languages[lng] ?? lng), }) super([ new Title(Translations.t.translations.activateButton), new Toggle(t.isTranslator.SetClass("thanks block"), undefined, isTranslator), t.help, translated, /*Disable button:*/ new SubtleButton(undefined, t.deactivate).onClick(() => { Locale.showLinkToWeblate.setData(false) }), new VariableUiElement( Locale.language.map((ln) => { const missing = missingTranslationsFor(ln) if (missing.length === 0) { return undefined } let title = Translations.t.translations.allMissing if (untranslated.get(ln) !== undefined) { title = Translations.t.translations.missing.Subs({ count: untranslated.get(ln).length, }) } return new Toggleable( new Title(title), new Combine(missing).SetClass("flex flex-col") ) }) ), ]) } } export default class TranslatorsPanel extends Toggle { constructor( state: { layoutToUse: LayoutConfig; isTranslator: Store }, iconStyle?: string ) { const t = Translations.t.translations super( new Lazy( () => new TranslatorsPanelContent(state.layoutToUse, state.isTranslator) ).SetClass("flex flex-col"), new SubtleButton(Svg.translate_ui().SetStyle(iconStyle), t.activateButton).onClick(() => Locale.showLinkToWeblate.setData(true) ), Locale.showLinkToWeblate ) this.SetClass("hidden-on-mobile") } }