0
1
Fork 0
hedera-web-mindshore/js/sql/list.js

72 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
2022-06-06 16:02:17 +00:00
var SqlObject = require('./object');
2016-09-26 09:28:47 +00:00
/**
* List of Sql.Object
2022-05-26 06:08:31 +00:00
*/
2022-06-06 08:53:59 +00:00
module.exports = new Class({
2022-06-06 16:02:17 +00:00
Extends: SqlObject
,objects: []
2022-11-16 01:46:44 +00:00
,add(object) {
2022-06-06 08:53:59 +00:00
this.objects.push(object.ref());
object.on('changed', this._onObjectChange, this);
this._onObjectChange();
}
2022-11-16 01:46:44 +00:00
,get(i) {
return objects[i];
}
2022-11-16 01:46:44 +00:00
,getArray() {
return this.objects;
}
2022-11-16 01:46:44 +00:00
,remove(i) {
2022-06-06 08:53:59 +00:00
this._unrefObject(this.objects.splice(i, 1));
this._onObjectChange();
}
2022-11-16 01:46:44 +00:00
,_onObjectChange() {
2022-06-06 08:53:59 +00:00
this.emit('changed');
}
2022-11-16 01:46:44 +00:00
,isReady() {
var o = this.objects;
if (o.length == 0)
return false;
for (var i = 0; i < o.length; i++)
2022-06-06 08:53:59 +00:00
if (!o[i].isReady())
return false;
return true;
}
2022-06-06 08:53:59 +00:00
,findHolders() {
let ids = [];
for (const object of this.objects){
holders = object.findHolders();
if (holders) ids = ids.concat(holders);
}
return ids;
}
2022-11-16 01:46:44 +00:00
,_unrefObject(object) {
2022-06-06 08:53:59 +00:00
object.disconnect('changed', this._onObjectChange, this);
object.unref();
}
2022-11-16 01:46:44 +00:00
,_destroy() {
for (var i = 0; i < this.objects.length; i++)
2022-06-06 08:53:59 +00:00
this._unrefObject(this.objects[i]);
2022-06-06 16:02:17 +00:00
SqlObject.prototype._destroy.call(this);
}
});