loopback-datasource-juggler/lib/list.js

107 lines
2.3 KiB
JavaScript
Raw Normal View History

2016-04-01 22:25:16 +00:00
// Copyright IBM Corp. 2012,2016. All Rights Reserved.
// Node module: loopback-datasource-juggler
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
2016-08-22 19:55:22 +00:00
'use strict';
2016-07-22 19:26:07 +00:00
var g = require('strong-globalize')();
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) {
const err = new Error(g.f('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)) {
const err = new Error(g.f('Items must be an array: %j', items));
err.statusCode = 400;
throw err;
2014-02-14 07:42:21 +00:00
}
2016-04-01 11:48:17 +00:00
if (!itemType) {
2014-02-14 07:42:21 +00:00
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];
}
2016-04-01 11:48:17 +00:00
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,
2016-04-01 11:48:17 +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,
2016-04-01 11:48:17 +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
2016-04-01 11:48:17 +00:00
items.forEach(function(item, i) {
2014-02-14 07:42:21 +00:00
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
2016-04-01 11:48:17 +00:00
List.prototype.push = function(obj) {
2014-02-14 07:42:21 +00:00
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
2016-04-01 11:48:17 +00:00
List.prototype.toObject = function(onlySchema, removeHidden, removeProtected) {
2014-01-24 17:09:53 +00:00
var items = [];
2016-04-01 11:48:17 +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
};
2016-04-01 11:48:17 +00:00
List.prototype.toJSON = function() {
2014-01-24 17:09:53 +00:00
return this.toObject(true);
2012-09-11 19:22:55 +00:00
};
2016-04-01 11:48:17 +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
};