Created
February 3, 2021 10:06
-
-
Save honzabilek4/18311253c31549ffe67b09e9691046e4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
i18n, | |
initI18n, | |
getLanguages, | |
getCurrentLanguage, | |
getKeyPlural as p, | |
} from "./i18n"; | |
let count = 0; | |
const createLanguageSelector = () => { | |
let template = '<select id="selector">'; | |
getLanguages().forEach((l) => { | |
template += ` | |
<option ${l.language === getCurrentLanguage() ? "selected" : ""} value="${ | |
l.language | |
}"> | |
${l.localizedName} | |
</option>`; | |
}); | |
template += "</select>"; | |
return template; | |
}; | |
const getTranslatedContent = () => { | |
return `${i18n.t("hello_localazy")}<br><br> | |
${count} ${i18n.t(p("calendar", count))}<br> | |
${count} ${i18n.t(p("field", count))}<br> | |
${count} ${i18n.t(p("event", count))}<br> | |
${count} ${i18n.t(p("title", count))}<br> | |
${count} ${i18n.t(p("color", count))}`; | |
}; | |
const updateTranslatedContent = () => { | |
document.querySelector("#content").innerHTML = getTranslatedContent(); | |
}; | |
const initPageContent = () => { | |
document.querySelector("#app").innerHTML = ` | |
${createLanguageSelector()} | |
<input id="count" type="number" placeholder="count" value="${count}" min="0"/> | |
<div id="content"> | |
${getTranslatedContent()} | |
</div>`; | |
document.querySelector("#selector").addEventListener("change", (e) => { | |
i18n.changeLanguage(e.target.value); | |
updateTranslatedContent(); | |
}); | |
document.querySelector("#count").addEventListener("input", (e) => { | |
if (e.target.value) { | |
count = e.target.value; | |
updateTranslatedContent(); | |
} | |
}); | |
}; | |
initI18n(initPageContent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment