snappymail/dev/View/Popup/Languages.js

62 lines
1.3 KiB
JavaScript

import ko from 'ko';
import { convertLangName } from 'Common/Utils';
import { AbstractViewPopup } from 'Knoin/AbstractViews';
class LanguagesPopupView extends AbstractViewPopup {
constructor() {
super('Languages');
this.fLang = null;
this.userLanguage = ko.observable('');
this.langs = ko.observableArray();
this.languages = ko.computed(() => {
const userLanguage = this.userLanguage();
return this.langs.map(language => ({
key: language,
user: language === userLanguage,
selected: ko.observable(false),
fullName: convertLangName(language)
}));
});
this.langs.subscribe(() => this.setLanguageSelection());
}
languageTooltipName(language) {
const result = convertLangName(language, true);
return convertLangName(language, false) === result ? '' : result;
}
setLanguageSelection() {
const currentLang = this.fLang ? ko.unwrap(this.fLang) : '';
this.languages.forEach(item => item.selected(item.key === currentLang));
}
onBeforeShow() {
this.fLang = null;
this.userLanguage('');
this.langs([]);
}
onShow(fLanguage, langs, userLanguage) {
this.fLang = fLanguage;
this.userLanguage(userLanguage || '');
this.langs(langs);
}
changeLanguage(lang) {
if (this.fLang) {
this.fLang(lang);
}
this.cancelCommand();
}
}
export { LanguagesPopupView, LanguagesPopupView as default };