Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
39 Zeilen
958 B
JavaScript
39 Zeilen
958 B
JavaScript
/* eslint no-undef: 0 */
|
|
|
|
import computed from "discourse-common/utils/decorators";
|
|
import { siteDir, isRTL, isLTR } from "discourse/lib/text-direction";
|
|
import I18n from "I18n";
|
|
|
|
export default Ember.TextField.extend({
|
|
attributeBindings: ['autocorrect', 'autocapitalize', 'autofocus', 'maxLength', 'dir'],
|
|
|
|
@computed
|
|
dir() {
|
|
if (Wizard.SiteSettings.support_mixed_text_direction) {
|
|
let val = this.value;
|
|
if (val) {
|
|
return isRTL(val) ? 'rtl' : 'ltr';
|
|
} else {
|
|
return siteDir();
|
|
}
|
|
}
|
|
},
|
|
|
|
keyUp() {
|
|
if (Wizard.SiteSettings.support_mixed_text_direction) {
|
|
let val = this.value;
|
|
if (isRTL(val)) {
|
|
this.set('dir', 'rtl');
|
|
} else if (isLTR(val)) {
|
|
this.set('dir', 'ltr');
|
|
} else {
|
|
this.set('dir', siteDir());
|
|
}
|
|
}
|
|
},
|
|
|
|
@computed("placeholderKey")
|
|
placeholder(placeholderKey) {
|
|
return placeholderKey ? I18n.t(placeholderKey) : "";
|
|
}
|
|
});
|