loopback-datasource-juggler/lib/list.js

99 lines
2.0 KiB
JavaScript
Raw Normal View History

2014-02-14 07:42:21 +00:00
var util = require('util');
var Any = require('./types').Types.Any;
2014-02-14 07:42:21 +00:00
2012-09-10 15:57:21 +00:00
module.exports = List;
2014-02-14 07:42:21 +00:00
function List(items, itemType, parent) {
2014-01-24 17:09:53 +00:00
var list = this;
if (!(list instanceof List)) {
2014-02-14 07:42:21 +00:00
return new List(items, itemType, parent);
2014-01-24 17:09:53 +00:00
}
2014-02-14 07:42:21 +00:00
if (typeof items === 'string') {
2014-01-24 17:09:53 +00:00
try {
2014-02-14 07:42:21 +00:00
items = JSON.parse(items);
2014-01-24 17:09:53 +00:00
} catch (e) {
var err = new Error(util.format('could not create List from JSON string: %j', items));
err.statusCode = 400;
throw err;
}
2014-01-24 17:09:53 +00:00
}
2014-02-14 07:42:21 +00:00
var arr = [];
arr.__proto__ = List.prototype;
2014-01-24 17:09:53 +00:00
2014-02-14 07:42:21 +00:00
items = items || [];
if (!Array.isArray(items)) {
var err = new Error(util.format('Items must be an array: %j', items));
err.statusCode = 400;
throw err;
2014-02-14 07:42:21 +00:00
}
if(!itemType) {
itemType = items[0] && items[0].constructor;
}
2014-01-24 17:09:53 +00:00
2014-02-14 07:42:21 +00:00
if (Array.isArray(itemType)) {
itemType = itemType[0];
}
if(itemType === Array) {
itemType = Any;
}
2014-02-14 07:42:21 +00:00
Object.defineProperty(arr, 'itemType', {
2014-01-24 17:09:53 +00:00
writable: true,
enumerable: false,
2014-02-14 07:42:21 +00:00
value: itemType
2014-01-24 17:09:53 +00:00
});
2014-02-14 07:42:21 +00:00
if (parent) {
Object.defineProperty(arr, 'parent', {
2014-01-24 17:09:53 +00:00
writable: true,
enumerable: false,
2014-02-14 07:42:21 +00:00
value: parent
2012-09-11 16:51:31 +00:00
});
2014-02-14 07:42:21 +00:00
}
2012-09-10 15:57:21 +00:00
2014-02-14 07:42:21 +00:00
items.forEach(function (item, i) {
if (itemType && !(item instanceof itemType)) {
arr[i] = itemType(item);
} else {
arr[i] = item;
2014-01-24 17:09:53 +00:00
}
});
2012-09-11 16:51:31 +00:00
2014-02-14 07:42:21 +00:00
return arr;
2012-09-10 15:57:21 +00:00
}
2014-02-14 07:42:21 +00:00
util.inherits(List, Array);
2012-09-11 19:22:55 +00:00
2014-02-14 07:42:21 +00:00
var _push = List.prototype.push;
2012-09-11 19:22:55 +00:00
2014-02-14 07:42:21 +00:00
List.prototype.push = function (obj) {
var item = this.itemType && (obj instanceof this.itemType) ? obj : this.itemType(obj);
_push.call(this, item);
return item;
};
2013-02-18 08:18:09 +00:00
2015-01-20 19:58:52 +00:00
List.prototype.toObject = function (onlySchema, removeHidden, removeProtected) {
2014-01-24 17:09:53 +00:00
var items = [];
2014-02-14 07:42:21 +00:00
this.forEach(function (item) {
if (item && typeof item === 'object' && item.toObject) {
2015-01-20 19:58:52 +00:00
items.push(item.toObject(onlySchema, removeHidden, removeProtected));
2014-01-24 17:09:53 +00:00
} else {
items.push(item);
}
});
return items;
2012-09-10 15:57:21 +00:00
};
2014-01-24 17:09:53 +00:00
List.prototype.toJSON = function () {
return this.toObject(true);
2012-09-11 19:22:55 +00:00
};
2014-01-24 17:09:53 +00:00
List.prototype.toString = function () {
2014-02-14 07:42:21 +00:00
return JSON.stringify(this.toJSON());
2012-09-11 19:22:55 +00:00
};