discourse/app/assets/javascripts/select-kit/mixins/utils.js.es6

56 lines
1.2 KiB
Plaintext
Raw Normal View History

const { get, isNone, guidFor } = Ember;
2017-11-09 13:57:53 -05:00
2017-10-19 15:51:08 -04:00
export default Ember.Mixin.create({
valueForContentItem(content) {
switch (typeof content) {
case "string":
case "number":
return content;
default:
return get(content, this.get("valueAttribute"));
}
},
2017-11-09 13:57:53 -05:00
_nameForContent(content) {
if (isNone(content)) {
return null;
}
if (typeof content === "object") {
return get(content, this.get("nameProperty"));
}
return content;
},
2017-11-13 21:51:19 -05:00
_isNumeric(input) {
return !isNaN(parseFloat(input)) && isFinite(input);
},
2017-10-19 15:51:08 -04:00
_castInteger(value) {
if (this.get("castInteger") && Ember.isPresent(value) && this._isNumeric(value)) {
2017-10-19 15:51:08 -04:00
return parseInt(value, 10);
}
2017-11-09 13:57:53 -05:00
return value;
},
_findComputedContentItemByGuid(guid) {
if (guidFor(this.get("createRowComputedContent")) === guid) {
return this.get("createRowComputedContent");
}
if (guidFor(this.get("noneRowComputedContent")) === guid) {
return this.get("noneRowComputedContent");
}
return this.get("collectionComputedContent").find(c => {
return guidFor(c) === guid;
2017-11-09 13:57:53 -05:00
});
},
_filterRemovableComputedContents(computedContent) {
return computedContent.filter(c => c.created);
}
2017-10-19 15:51:08 -04:00
});