ethers.js/src.ts/utils/properties.ts

133 lines
3.8 KiB
TypeScript
Raw Normal View History

2018-06-13 22:39:39 +03:00
'use strict';
import * as errors from '../errors';
2018-06-18 12:42:41 +03:00
export function defineReadOnly(object: any, name: string, value: any): void {
2018-06-13 22:39:39 +03:00
Object.defineProperty(object, name, {
enumerable: true,
value: value,
writable: false,
});
}
// There are some issues with instanceof with npm link, so we use this
// to ensure types are what we expect.
export function setType(object: any, type: string): void {
Object.defineProperty(object, '_ethersType', { configurable: false, value: type, writable: false });
}
export function isType(object: any, type: string): boolean {
2018-08-13 18:56:59 +03:00
return (object && object._ethersType === type);
}
2018-06-18 12:42:41 +03:00
export function resolveProperties(object: any): Promise<any> {
2018-06-13 22:39:39 +03:00
let result: any = {};
let promises: Array<Promise<void>> = [];
2018-06-13 22:39:39 +03:00
Object.keys(object).forEach((key) => {
let value = object[key];
if (value instanceof Promise) {
promises.push(
value.then((value) => {
result[key] = value;
2018-07-03 23:44:05 +03:00
return null;
})
2018-06-13 22:39:39 +03:00
);
} else {
result[key] = value;
}
});
return Promise.all(promises).then(() => {
return result;
2018-06-13 22:39:39 +03:00
});
}
2018-06-15 11:18:17 +03:00
export function checkProperties(object: any, properties: { [ name: string ]: boolean }): void {
if (!object || typeof(object) !== 'object') {
errors.throwError('invalid object', errors.INVALID_ARGUMENT, {
argument: 'object',
value: object
});
}
Object.keys(object).forEach((key) => {
if (!properties[key]) {
errors.throwError('invalid object key - ' + key, errors.INVALID_ARGUMENT, {
argument: 'transaction',
value: object,
key: key
});
}
});
}
2018-06-15 11:18:17 +03:00
export function shallowCopy(object: any): any {
let result: any = {};
2018-06-15 11:18:17 +03:00
for (var key in object) { result[key] = object[key]; }
return result;
}
let opaque: { [key: string]: boolean } = { boolean: true, number: true, string: true };
export function deepCopy(object: any, frozen?: boolean): any {
// Opaque objects are not mutable, so safe to copy by assignment
if (object === undefined || object === null || opaque[typeof(object)]) { return object; }
// Arrays are mutable, so we need to create a copy
if (Array.isArray(object)) {
let result = object.map((item) => deepCopy(item, frozen));
if (frozen) { Object.freeze(result); }
return result
}
if (typeof(object) === 'object') {
// Some internal objects, which are already immutable
if (isType(object, 'BigNumber')) { return object; }
if (isType(object, 'Description')) { return object; }
if (isType(object, 'Indexed')) { return object; }
let result: { [ key: string ]: any } = {};
for (let key in object) {
let value = object[key];
if (value === undefined) { continue; }
defineReadOnly(result, key, deepCopy(value, frozen));
}
if (frozen) { Object.freeze(result); }
return result;
}
// The function type is also immutable, so safe to copy by assignment
if (typeof(object) === 'function') {
return object;
}
throw new Error('Cannot deepCopy ' + typeof(object));
2018-06-15 11:18:17 +03:00
}
// See: https://github.com/isaacs/inherits/blob/master/inherits_browser.js
function inherits(ctor: any, superCtor: any): void {
ctor.super_ = superCtor
ctor.prototype = Object.create(superCtor.prototype, {
constructor: {
value: ctor,
enumerable: false,
writable: true,
configurable: true
}
});
}
export function inheritable(parent: any): (child: any) => void {
return function(child: any): void {
inherits(child, parent);
defineReadOnly(child, 'inherits', inheritable(child));
}
}