2017-11-21 18:53:09 +08:00
|
|
|
const { get, isNone, guidFor } = Ember;
|
2017-11-10 02:57:53 +08:00
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
export default Ember.Mixin.create({
|
2017-11-21 18:53:09 +08:00
|
|
|
valueForContentItem(content) {
|
|
|
|
switch (typeof content) {
|
|
|
|
case "string":
|
|
|
|
case "number":
|
|
|
|
return content;
|
|
|
|
default:
|
|
|
|
return get(content, this.get("valueAttribute"));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-11-10 02:57:53 +08:00
|
|
|
_nameForContent(content) {
|
|
|
|
if (isNone(content)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof content === "object") {
|
|
|
|
return get(content, this.get("nameProperty"));
|
|
|
|
}
|
|
|
|
|
|
|
|
return content;
|
|
|
|
},
|
|
|
|
|
2017-11-14 10:51:19 +08:00
|
|
|
_isNumeric(input) {
|
|
|
|
return !isNaN(parseFloat(input)) && isFinite(input);
|
|
|
|
},
|
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
_castInteger(value) {
|
2017-11-22 20:40:22 +08:00
|
|
|
if (this.get("castInteger") && Ember.isPresent(value) && this._isNumeric(value)) {
|
2017-10-20 03:51:08 +08:00
|
|
|
return parseInt(value, 10);
|
|
|
|
}
|
|
|
|
|
2017-11-10 02:57:53 +08:00
|
|
|
return value;
|
|
|
|
},
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
_findComputedContentItemByGuid(guid) {
|
2018-03-22 18:29:55 +08:00
|
|
|
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 => {
|
2017-11-21 18:53:09 +08:00
|
|
|
return guidFor(c) === guid;
|
2017-11-10 02:57:53 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
_filterRemovableComputedContents(computedContent) {
|
2018-03-22 18:29:55 +08:00
|
|
|
return computedContent.filter(c => c.created);
|
2017-11-21 18:53:09 +08:00
|
|
|
}
|
2017-10-20 03:51:08 +08:00
|
|
|
});
|