Files
FrenoCorp/node_modules/browser-tabs-lock/processLock.js
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- Consolidated duplicate UndoManagers to single instance
- Fixed connection promise to only resolve on 'connected' status
- Fixed WebSocketProvider import (WebsocketProvider)
- Added proper doc.destroy() cleanup
- Renamed isPresenceInitialized property to avoid conflict

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-25 00:08:01 -04:00

63 lines
2.0 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ProcessLocking = /** @class */ (function () {
function ProcessLocking() {
var _this = this;
this.locked = new Map();
this.addToLocked = function (key, toAdd) {
var callbacks = _this.locked.get(key);
if (callbacks === undefined) {
if (toAdd === undefined) {
_this.locked.set(key, []);
}
else {
_this.locked.set(key, [toAdd]);
}
}
else {
if (toAdd !== undefined) {
callbacks.unshift(toAdd);
_this.locked.set(key, callbacks);
}
}
};
this.isLocked = function (key) {
return _this.locked.has(key);
};
this.lock = function (key) {
return new Promise(function (resolve, reject) {
if (_this.isLocked(key)) {
_this.addToLocked(key, resolve);
}
else {
_this.addToLocked(key);
resolve();
}
});
};
this.unlock = function (key) {
var callbacks = _this.locked.get(key);
if (callbacks === undefined || callbacks.length === 0) {
_this.locked.delete(key);
return;
}
var toCall = callbacks.pop();
_this.locked.set(key, callbacks);
if (toCall !== undefined) {
setTimeout(toCall, 0);
}
};
}
ProcessLocking.getInstance = function () {
if (ProcessLocking.instance === undefined) {
ProcessLocking.instance = new ProcessLocking();
}
return ProcessLocking.instance;
};
return ProcessLocking;
}());
function getLock() {
return ProcessLocking.getInstance();
}
exports.default = getLock;