discourse/app/assets/javascripts/admin/components/value-list.js.es6

93 lines
2.0 KiB
Plaintext
Raw Normal View History

import { on } from "ember-addons/ember-computed-decorators";
import computed from "ember-addons/ember-computed-decorators";
export default Ember.Component.extend({
2018-06-15 11:03:24 -04:00
classNameBindings: [":value-list"],
inputInvalid: Ember.computed.empty("newValue"),
inputDelimiter: null,
inputType: null,
newValue: "",
collection: null,
values: null,
noneKey: Ember.computed.alias("addKey"),
@on("didReceiveAttrs")
_setupCollection() {
const values = this.values;
if (this.inputType === "array") {
2018-06-15 11:03:24 -04:00
this.set("collection", values || []);
return;
}
this.set(
"collection",
this._splitValues(values, this.inputDelimiter || "\n")
);
2015-07-28 15:58:49 -04:00
},
@computed("choices.[]", "collection.[]")
filteredChoices(choices, collection) {
return Ember.makeArray(choices).filter(i => collection.indexOf(i) < 0);
},
keyDown(event) {
if (event.keyCode === 13) this.send("addValue", this.newValue);
},
actions: {
changeValue(index, newValue) {
this._replaceValue(index, newValue);
},
addValue(newValue) {
if (this.inputInvalid) return;
2015-07-28 15:58:49 -04:00
this.set("newValue", "");
this._addValue(newValue);
},
removeValue(value) {
this._removeValue(value);
},
selectChoice(choice) {
this._addValue(choice);
}
},
_addValue(value) {
this.collection.addObject(value);
this._saveValues();
},
_removeValue(value) {
const collection = this.collection;
collection.removeObject(value);
this._saveValues();
},
_replaceValue(index, newValue) {
this.collection.replace(index, 1, [newValue]);
this._saveValues();
},
_saveValues() {
if (this.inputType === "array") {
this.set("values", this.collection);
return;
}
this.set("values", this.collection.join(this.inputDelimiter || "\n"));
},
_splitValues(values, delimiter) {
if (values && values.length) {
return values.split(delimiter).filter(x => x);
} else {
return [];
}
}
});