universal-model-angular
Version:
Universal model for Angular
62 lines (44 loc) • 4.67 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = createSubState;
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object(arr) || Object.prototype.toString.call(arr) === "[object Arguments]")) { return; } var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function createSubState(initialState) {
if (Object.keys(initialState).includes('__isSubState__')) {
throw new Error('createSubState: subState may not contain key: __isSubState__');
} // eslint-disable-next-line @typescript-eslint/no-explicit-any
function isInstanceOf(instance, constructorFunction) {
var instancePrototype = instance === null || instance === void 0 ? void 0 : instance.__proto__;
var constructorPrototype = constructorFunction === null || constructorFunction === void 0 ? void 0 : constructorFunction.prototype;
while (instancePrototype && constructorPrototype) {
if (instancePrototype === constructorPrototype) {
return true;
}
instancePrototype = instancePrototype.__proto__;
}
return false;
}
if (process.env.NODE_ENV !== 'production') {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Object.entries(initialState).forEach(function (_ref) {
var _ref2 = _slicedToArray(_ref, 2),
key = _ref2[0],
value = _ref2[1];
if (isInstanceOf(value, Error) || isInstanceOf(value, Date) || isInstanceOf(value, RegExp) || isInstanceOf(value, BigInt) || isInstanceOf(value, Int8Array) || isInstanceOf(value, Uint8Array) || isInstanceOf(value, Uint8ClampedArray) || isInstanceOf(value, Int16Array) || isInstanceOf(value, Uint16Array) || isInstanceOf(value, Int32Array) || isInstanceOf(value, Uint32Array) || isInstanceOf(value, Float32Array) || isInstanceOf(value, Float64Array) || isInstanceOf(value, BigInt64Array) || isInstanceOf(value, BigUint64Array) || isInstanceOf(value, ArrayBuffer) || isInstanceOf(value, DataView) || isInstanceOf(value, Promise) || isInstanceOf(value, Proxy) || isInstanceOf(value, Intl.Collator) || isInstanceOf(value, Intl.DateTimeFormat) || isInstanceOf(value, Intl.NumberFormat) || isInstanceOf(value, Intl.PluralRules) || typeof value !== 'number' && typeof value !== 'boolean' && typeof value !== 'string' && typeof value !== 'undefined' && value !== null && typeof value !== 'function' && _typeof(value) !== 'object') {
throw new Error('Forbidden value type for key: ' + key);
}
});
}
return _objectSpread({}, initialState, {
__isSubState__: true
});
}
//# sourceMappingURL=createSubState.js.map