mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
38 lines
875 B
JavaScript
38 lines
875 B
JavaScript
import { isArray, forEachObjectEntry } from 'Common/Utils';
|
|
|
|
export class AbstractCollectionModel extends Array
|
|
{
|
|
constructor() {
|
|
/*
|
|
if (new.target === AbstractCollectionModel) {
|
|
throw new Error("Can't instantiate AbstractCollectionModel!");
|
|
}
|
|
*/
|
|
super();
|
|
}
|
|
|
|
onDestroy() {
|
|
this.forEach(item => item.onDestroy?.());
|
|
}
|
|
|
|
/**
|
|
* @static
|
|
* @param {FetchJson} json
|
|
* @returns {*CollectionModel}
|
|
*/
|
|
static reviveFromJson(json, itemCallback) {
|
|
const result = new this();
|
|
if (json) {
|
|
if ('Collection/'+this.name.replace('Model', '') === json['@Object']) {
|
|
forEachObjectEntry(json, (key, value) => '@' !== key[0] && (result[key] = value));
|
|
json = json['@Collection'];
|
|
}
|
|
isArray(json) && json.forEach(item => {
|
|
item && itemCallback && (item = itemCallback(item, result));
|
|
item && result.push(item);
|
|
});
|
|
}
|
|
return result;
|
|
}
|
|
|
|
}
|