1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard/components/wizard-text-field.js.es6

46 Zeilen
1.007 B
Text

/* eslint no-undef: 0*/
2020-03-21 18:30:11 +01:00
import computed from "discourse-common/utils/decorators";
import { isLTR, isRTL, siteDir } from "discourse/lib/text-direction";
import WizardI18n from "../lib/wizard-i18n";
2018-02-08 05:30:55 +01:00
export default Ember.TextField.extend({
attributeBindings: [
"autocorrect",
"autocapitalize",
"autofocus",
"maxLength",
"dir",
],
2018-02-08 05:30:55 +01:00
@computed
dir() {
if (Wizard.SiteSettings.support_mixed_text_direction) {
let val = this.value;
if (val) {
return isRTL(val) ? "rtl" : "ltr";
2018-02-08 05:30:55 +01:00
} else {
return siteDir();
}
}
},
keyUp() {
if (Wizard.SiteSettings.support_mixed_text_direction) {
let val = this.value;
if (isRTL(val)) {
this.set("dir", "rtl");
2018-02-08 05:30:55 +01:00
} else if (isLTR(val)) {
this.set("dir", "ltr");
2018-02-08 05:30:55 +01:00
} else {
this.set("dir", siteDir());
2018-02-08 05:30:55 +01:00
}
}
},
@computed("placeholderKey")
placeholder(placeholderKey) {
return placeholderKey ? WizardI18n(placeholderKey) : "";
},
2018-02-08 05:30:55 +01:00
});