"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.PersistedLog = void 0; var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _lodash = _interopRequireDefault(require("lodash")); var Rx = _interopRequireWildcard(require("rxjs")); var _operators = require("rxjs/operators"); function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ const defaultIsDuplicate = (oldItem, newItem) => { return _lodash.default.isEqual(oldItem, newItem); }; class PersistedLog { constructor(name, options = {}, storage) { (0, _defineProperty2.default)(this, "name", void 0); (0, _defineProperty2.default)(this, "maxLength", void 0); (0, _defineProperty2.default)(this, "filterDuplicates", void 0); (0, _defineProperty2.default)(this, "isDuplicate", void 0); (0, _defineProperty2.default)(this, "storage", void 0); (0, _defineProperty2.default)(this, "items", void 0); (0, _defineProperty2.default)(this, "update$", new Rx.BehaviorSubject(undefined)); this.name = name; this.maxLength = typeof options.maxLength === 'string' ? this.maxLength = parseInt(options.maxLength, 10) : options.maxLength; this.filterDuplicates = options.filterDuplicates || false; this.isDuplicate = options.isDuplicate || defaultIsDuplicate; this.storage = storage; this.items = this.storage.get(this.name) || []; if (this.maxLength !== undefined && !isNaN(this.maxLength)) { this.items = _lodash.default.take(this.items, this.maxLength); } } add(val) { if (val == null) { return this.items; } // remove any matching items from the stack if option is set if (this.filterDuplicates) { _lodash.default.remove(this.items, item => { return this.isDuplicate(item, val); }); } this.items.unshift(val); // if maxLength is set, truncate the stack if (this.maxLength && !isNaN(this.maxLength)) { this.items = _lodash.default.take(this.items, this.maxLength); } // persist the stack this.storage.set(this.name, this.items); this.update$.next(undefined); return this.items; } get() { return _lodash.default.cloneDeep(this.items); } get$() { return this.update$.pipe((0, _operators.map)(() => this.get())); } } exports.PersistedLog = PersistedLog;