mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 09:02:45 +08:00
123 lines
3.2 KiB
JavaScript
123 lines
3.2 KiB
JavaScript
import { isArray, forEachObjectValue, forEachObjectEntry } from 'Common/Utils';
|
|
import { dispose, addObservablesTo, addComputablesTo } from 'External/ko';
|
|
|
|
function typeCast(curValue, newValue) {
|
|
if (null != curValue) {
|
|
switch (typeof curValue)
|
|
{
|
|
case 'boolean':
|
|
return 0 != newValue && !!newValue;
|
|
case 'number':
|
|
newValue = parseFloat(newValue);
|
|
return isFinite(newValue) ? newValue : 0;
|
|
case 'string':
|
|
return null != newValue ? '' + newValue : '';
|
|
case 'object':
|
|
if (curValue.constructor.reviveFromJson) {
|
|
return curValue.constructor.reviveFromJson(newValue);
|
|
}
|
|
if (isArray(curValue) && !isArray(newValue))
|
|
return [];
|
|
}
|
|
}
|
|
return newValue;
|
|
}
|
|
|
|
export class AbstractModel {
|
|
constructor() {
|
|
/*
|
|
if (new.target === AbstractModel) {
|
|
throw Error("Can't instantiate AbstractModel!");
|
|
}
|
|
*/
|
|
Object.defineProperty(this, 'disposables', {value: []});
|
|
}
|
|
|
|
addObservables(observables) {
|
|
addObservablesTo(this, observables);
|
|
}
|
|
|
|
addComputables(computables) {
|
|
addComputablesTo(this, computables);
|
|
}
|
|
|
|
addSubscribables(subscribables) {
|
|
// addSubscribablesTo(this, subscribables);
|
|
forEachObjectEntry(subscribables, (key, fn) => this.disposables.push( this[key].subscribe(fn) ) );
|
|
}
|
|
|
|
/** Called by delegateRunOnDestroy */
|
|
onDestroy() {
|
|
/** dispose ko subscribables */
|
|
this.disposables.forEach(dispose);
|
|
/** clear object entries */
|
|
// forEachObjectEntry(this, (key, value) => {
|
|
forEachObjectValue(this, value => {
|
|
/** clear CollectionModel */
|
|
(ko.isObservableArray(value) ? value() : value)?.onDestroy?.();
|
|
/** destroy ko.observable/ko.computed? */
|
|
// dispose(value);
|
|
/** clear object value */
|
|
// this[key] = null; // TODO: issue with Contacts view
|
|
});
|
|
// this.disposables = [];
|
|
}
|
|
|
|
/**
|
|
* @static
|
|
* @param {FetchJson} json
|
|
* @returns {boolean}
|
|
*/
|
|
static validJson(json) {
|
|
return !!(json && ('Object/'+this.name.replace('Model', '') === json['@Object']));
|
|
}
|
|
|
|
/**
|
|
* @static
|
|
* @param {FetchJson} json
|
|
* @returns {*Model}
|
|
*/
|
|
static reviveFromJson(json) {
|
|
let obj = this.validJson(json) ? new this() : null;
|
|
obj?.revivePropertiesFromJson(json);
|
|
return obj;
|
|
}
|
|
|
|
revivePropertiesFromJson(json) {
|
|
const model = this.constructor,
|
|
valid = model.validJson(json);
|
|
valid && forEachObjectEntry(json, (key, value) => {
|
|
if ('@' !== key[0]) try {
|
|
// key = key[0].toLowerCase() + key.slice(1);
|
|
switch (typeof this[key])
|
|
{
|
|
case 'function':
|
|
if (ko.isObservable(this[key])) {
|
|
this[key](typeCast(this[key](), value));
|
|
// console.log('Observable ' + (typeof this[key]()) + ' ' + (model.name) + '.' + key + ' revived');
|
|
}
|
|
// else console.log(model.name + '.' + key + ' is a function');
|
|
break;
|
|
case 'boolean':
|
|
case 'number':
|
|
case 'object':
|
|
case 'string':
|
|
this[key] = typeCast(this[key], value);
|
|
break;
|
|
case 'undefined':
|
|
console.log(`Undefined ${model.name}.${key} set`);
|
|
this[key] = value;
|
|
break;
|
|
// default:
|
|
// console.log((typeof this[key])+` ${model.name}.${key} not revived`);
|
|
// console.log((typeof this[key])+' '+(model.name)+'.'+key+' not revived');
|
|
}
|
|
} catch (e) {
|
|
console.log(model.name + '.' + key);
|
|
console.error(e);
|
|
}
|
|
});
|
|
return valid;
|
|
}
|
|
|
|
}
|