2022-10-24 10:46:14 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
2022-12-09 13:09:20 +01:00
|
|
|
(C) 2022 Taler Systems S.A.
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author Sebastian Javier Marchano (sebasjm)
|
|
|
|
*/
|
|
|
|
|
2022-12-09 13:09:20 +01:00
|
|
|
import { Fragment, h, VNode } from "preact";
|
|
|
|
import { useEffect, useState } from "preact/hooks";
|
2022-12-09 15:58:39 +01:00
|
|
|
import { useTranslationContext } from "@gnu-taler/web-util/lib/index.browser";
|
2022-12-09 16:15:15 +01:00
|
|
|
import { strings as messages } from "../i18n/strings.js";
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
type LangsNames = {
|
|
|
|
[P in keyof typeof messages]: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
const names: LangsNames = {
|
2022-10-26 19:50:50 +02:00
|
|
|
es: "Español [es]",
|
|
|
|
en: "English [en]",
|
|
|
|
fr: "Français [fr]",
|
|
|
|
de: "Deutsch [de]",
|
|
|
|
sv: "Svenska [sv]",
|
|
|
|
it: "Italiano [it]",
|
2022-10-24 10:46:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
function getLangName(s: keyof LangsNames | string): string {
|
|
|
|
if (names[s]) return names[s];
|
|
|
|
return String(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: explain "like py".
|
|
|
|
export function LangSelectorLikePy(): VNode {
|
|
|
|
const [updatingLang, setUpdatingLang] = useState(false);
|
|
|
|
const { lang, changeLanguage } = useTranslationContext();
|
2022-10-26 19:50:50 +02:00
|
|
|
const [hidden, setHidden] = useState(true);
|
2022-10-24 10:46:14 +02:00
|
|
|
useEffect(() => {
|
2022-10-26 19:50:50 +02:00
|
|
|
function bodyKeyPress(event: KeyboardEvent) {
|
|
|
|
if (event.code === "Escape") setHidden(true);
|
2022-10-24 10:46:14 +02:00
|
|
|
}
|
2022-10-26 19:50:50 +02:00
|
|
|
function bodyOnClick(event: Event) {
|
2022-10-24 10:46:14 +02:00
|
|
|
setHidden(true);
|
|
|
|
}
|
2022-10-26 19:50:50 +02:00
|
|
|
document.body.addEventListener("click", bodyOnClick);
|
|
|
|
document.body.addEventListener("keydown", bodyKeyPress as any);
|
2022-10-24 10:46:14 +02:00
|
|
|
return () => {
|
2022-10-26 19:50:50 +02:00
|
|
|
document.body.removeEventListener("keydown", bodyKeyPress as any);
|
|
|
|
document.body.removeEventListener("click", bodyOnClick);
|
|
|
|
};
|
|
|
|
}, []);
|
2022-10-24 10:46:14 +02:00
|
|
|
return (
|
|
|
|
<Fragment>
|
2022-10-26 19:50:50 +02:00
|
|
|
<button
|
|
|
|
name="language"
|
|
|
|
onClick={(ev) => {
|
|
|
|
setHidden((h) => !h);
|
|
|
|
ev.stopPropagation();
|
|
|
|
}}
|
|
|
|
>
|
2022-10-24 10:46:14 +02:00
|
|
|
{getLangName(lang)}
|
|
|
|
</button>
|
2022-10-26 19:50:50 +02:00
|
|
|
<div id="lang" class={hidden ? "hide" : ""}>
|
2022-10-24 10:46:14 +02:00
|
|
|
<div style="position: relative; overflow: visible;">
|
|
|
|
<div
|
|
|
|
class="nav"
|
2022-10-26 19:50:50 +02:00
|
|
|
style="position: absolute; max-height: 60vh; overflow-y: scroll"
|
|
|
|
>
|
2022-10-24 10:46:14 +02:00
|
|
|
{Object.keys(messages)
|
|
|
|
.filter((l) => l !== lang)
|
|
|
|
.map((l) => (
|
|
|
|
<a
|
|
|
|
key={l}
|
|
|
|
href="#"
|
|
|
|
class="navbtn langbtn"
|
|
|
|
value={l}
|
|
|
|
onClick={() => {
|
|
|
|
changeLanguage(l);
|
|
|
|
setUpdatingLang(false);
|
2022-10-26 19:50:50 +02:00
|
|
|
}}
|
|
|
|
>
|
2022-10-24 10:46:14 +02:00
|
|
|
{getLangName(l)}
|
|
|
|
</a>
|
|
|
|
))}
|
|
|
|
<br />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|