wekan/client/components/main/layouts.js

74 lines
1.8 KiB
JavaScript
Raw Normal View History

BlazeLayout.setRoot('body');
const i18nTagToT9n = (i18nTag) => {
// t9n/i18n tags are same now, see: https://github.com/softwarerero/meteor-accounts-t9n/pull/129
// but we keep this conversion function here, to be aware that that they are different system.
return i18nTag;
};
Template.userFormsLayout.onRendered(() => {
const i18nTag = navigator.language;
if (i18nTag) {
T9n.setLanguage(i18nTagToT9n(i18nTag));
}
EscapeActions.executeAll();
});
Template.userFormsLayout.helpers({
languages() {
return _.map(TAPi18n.getLanguages(), (lang, code) => {
const tag = code;
let name = lang.name;
if (lang.name === 'br') {
name = 'Brezhoneg';
} else if (lang.name === 'ig') {
name = 'Igbo';
}
return { tag, name };
}).sort(function(a, b) {
if (a.name === b.name) {
return 0;
} else {
return a.name > b.name ? 1 : -1;
}
});
},
isCurrentLanguage() {
const t9nTag = i18nTagToT9n(this.tag);
const curLang = T9n.getLanguage() || 'en';
return t9nTag === curLang;
},
2018-07-03 15:55:19 +02:00
isCas() {
return Meteor.settings.public &&
Meteor.settings.public.cas &&
2018-07-03 16:08:18 +02:00
Meteor.settings.public.cas.loginUrl;
2018-07-03 15:55:19 +02:00
},
casSignInLabel() {
return TAPi18n.__('casSignIn', {}, T9n.getLanguage() || 'en');
},
});
Template.userFormsLayout.events({
'change .js-userform-set-language'(evt) {
const i18nTag = $(evt.currentTarget).val();
T9n.setLanguage(i18nTagToT9n(i18nTag));
evt.preventDefault();
},
2018-07-03 15:55:19 +02:00
'click button#cas'() {
Meteor.loginWithCas(function() {
2018-07-03 16:08:18 +02:00
if (FlowRouter.getRouteName() ==== 'atSignIn') {
2018-07-03 15:55:19 +02:00
FlowRouter.go('/');
}
});
},
});
Template.defaultLayout.events({
'click .js-close-modal': () => {
Modal.close();
},
});