123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- 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;
- },
- /*
- isCas() {
- return Meteor.settings.public &&
- Meteor.settings.public.cas &&
- Meteor.settings.public.cas.loginUrl;
- },
- 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();
- },
- 'click button#cas'() {
- Meteor.loginWithCas(function() {
- if (FlowRouter.getRouteName() === 'atSignIn') {
- FlowRouter.go('/');
- }
- });
- },
- 'submit form'(event) {
- const connectionMethod = $('.select-connection').val();
- // Local account
- if (connectionMethod === 'default') {
- return;
- }
- // TODO : find a way to block "submit #at-pwd-form" of the at_pwd_form.js
- const inputs = event.target.getElementsByTagName('input');
- const email = inputs.namedItem('at-field-username_and_email').value;
- const password = inputs.namedItem('at-field-password').value;
- // Ldap account
- if (connectionMethod === 'ldap') {
- // Check if the user can use the ldap connection
- Meteor.subscribe('user-connection-method', email, {
- onReady() {
- const ldap = Users.findOne();
- if (ldap) {
- // Use the ldap connection package
- Meteor.loginWithLDAP(email, password, function(error) {
- if (!error) {
- // Connection
- return FlowRouter.go('/');
- } else {
- return error;
- }
- });
- }
- return this.stop();
- },
- });
- }
- },
- });
- Template.defaultLayout.events({
- 'click .js-close-modal': () => {
- Modal.close();
- },
- });
|