akeyless-client-commons 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/index.js +6 -278
- package/dist/components/index.mjs +6 -278
- package/dist/helpers/index.d.mts +2 -34
- package/dist/helpers/index.d.ts +2 -34
- package/dist/helpers/index.js +0 -295
- package/dist/helpers/index.mjs +1 -292
- package/dist/hooks/index.d.mts +1 -5
- package/dist/hooks/index.d.ts +1 -5
- package/dist/hooks/index.js +1 -374
- package/dist/hooks/index.mjs +1 -370
- package/package.json +2 -4
package/dist/components/index.js
CHANGED
|
@@ -1155,278 +1155,6 @@ var biDomain = isLocal ? "http://localhost:9002/api/bi" : baseDomain + "/bi";
|
|
|
1155
1155
|
var notificationsDomain = isLocal ? "http://localhost:9006/api/notifications" : baseDomain + "/notifications";
|
|
1156
1156
|
var callCenterGeoDomain = isLocal ? "http://localhost:9007/api/call-center/geo" : baseDomain + "/call-center/geo";
|
|
1157
1157
|
var callCenterEventsDomain = isLocal ? "http://localhost:9008/api/call-center/events" : baseDomain + "/call-center/events";
|
|
1158
|
-
// src/helpers/socket.ts
|
|
1159
|
-
var import_socket = require("socket.io-client");
|
|
1160
|
-
var SocketService = /*#__PURE__*/ function() {
|
|
1161
|
-
"use strict";
|
|
1162
|
-
function _SocketService() {
|
|
1163
|
-
_class_call_check(this, _SocketService);
|
|
1164
|
-
this.socket = null;
|
|
1165
|
-
this.connectCallbacks = [];
|
|
1166
|
-
this.disconnectCallbacks = [];
|
|
1167
|
-
this.initSocket();
|
|
1168
|
-
}
|
|
1169
|
-
_create_class(_SocketService, [
|
|
1170
|
-
{
|
|
1171
|
-
/// Initialize the socket connection
|
|
1172
|
-
key: "initSocket",
|
|
1173
|
-
value: function initSocket() {
|
|
1174
|
-
var _this = this;
|
|
1175
|
-
if (!this.socket) {
|
|
1176
|
-
var SOCKET_SERVER_URL = "http://localhost:9009";
|
|
1177
|
-
var SOCKET_PATH = "/api/data-socket/connect";
|
|
1178
|
-
this.socket = (0, import_socket.io)(SOCKET_SERVER_URL, {
|
|
1179
|
-
path: SOCKET_PATH,
|
|
1180
|
-
transports: [
|
|
1181
|
-
"websocket"
|
|
1182
|
-
]
|
|
1183
|
-
});
|
|
1184
|
-
this.socket.on("connect", function() {
|
|
1185
|
-
var _this_socket;
|
|
1186
|
-
console.log("Socket connected:", (_this_socket = _this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.id);
|
|
1187
|
-
_this.connectCallbacks.forEach(function(cb) {
|
|
1188
|
-
return cb();
|
|
1189
|
-
});
|
|
1190
|
-
});
|
|
1191
|
-
this.socket.on("disconnect", function(reason) {
|
|
1192
|
-
console.log("Socket disconnected:", reason);
|
|
1193
|
-
_this.disconnectCallbacks.forEach(function(cb) {
|
|
1194
|
-
return cb();
|
|
1195
|
-
});
|
|
1196
|
-
});
|
|
1197
|
-
this.socket.on("connect_error", function(error) {
|
|
1198
|
-
console.error("Socket connection error:", error);
|
|
1199
|
-
});
|
|
1200
|
-
}
|
|
1201
|
-
}
|
|
1202
|
-
},
|
|
1203
|
-
{
|
|
1204
|
-
/// get socket instance
|
|
1205
|
-
key: "getSocketInstance",
|
|
1206
|
-
value: function getSocketInstance() {
|
|
1207
|
-
if (!this.socket) {
|
|
1208
|
-
this.initSocket();
|
|
1209
|
-
}
|
|
1210
|
-
if (!this.socket) {
|
|
1211
|
-
throw new Error("Socket not initialized");
|
|
1212
|
-
}
|
|
1213
|
-
if (!this.socket.connected) {
|
|
1214
|
-
this.socket.connect();
|
|
1215
|
-
}
|
|
1216
|
-
return this.socket;
|
|
1217
|
-
}
|
|
1218
|
-
},
|
|
1219
|
-
{
|
|
1220
|
-
/// subscribe to collections
|
|
1221
|
-
key: "subscribeToCollections",
|
|
1222
|
-
value: function subscribeToCollections(config) {
|
|
1223
|
-
var s = this.getSocketInstance();
|
|
1224
|
-
var collectionsNames = config.map(function(c) {
|
|
1225
|
-
return c.collectionName;
|
|
1226
|
-
});
|
|
1227
|
-
var eventHandlers = [];
|
|
1228
|
-
config.forEach(function(configuration) {
|
|
1229
|
-
var collectionName = configuration.collectionName, onAdd = configuration.onAdd, onFirstTime = configuration.onFirstTime, onModify = configuration.onModify, onRemove = configuration.onRemove, extraParsers = configuration.extraParsers, conditions = configuration.conditions, orderBy2 = configuration.orderBy;
|
|
1230
|
-
s.on("initial:".concat(collectionName), onFirstTime);
|
|
1231
|
-
eventHandlers.push({
|
|
1232
|
-
eventName: "initial:".concat(collectionName),
|
|
1233
|
-
handler: onFirstTime
|
|
1234
|
-
});
|
|
1235
|
-
s.on("add:".concat(collectionName), onAdd);
|
|
1236
|
-
eventHandlers.push({
|
|
1237
|
-
eventName: "add:".concat(collectionName),
|
|
1238
|
-
handler: onAdd
|
|
1239
|
-
});
|
|
1240
|
-
s.on("update:".concat(collectionName), onModify);
|
|
1241
|
-
eventHandlers.push({
|
|
1242
|
-
eventName: "update:".concat(collectionName),
|
|
1243
|
-
handler: onModify
|
|
1244
|
-
});
|
|
1245
|
-
s.on("delete:".concat(collectionName), onRemove);
|
|
1246
|
-
eventHandlers.push({
|
|
1247
|
-
eventName: "delete:".concat(collectionName),
|
|
1248
|
-
handler: onRemove
|
|
1249
|
-
});
|
|
1250
|
-
extraParsers === null || extraParsers === void 0 ? void 0 : extraParsers.forEach(function(parsers) {
|
|
1251
|
-
var extraOnAdd = parsers.onAdd, extraOnFirstTime = parsers.onFirstTime, extraOnModify = parsers.onModify, extraOnRemove = parsers.onRemove;
|
|
1252
|
-
s.on("initial:".concat(collectionName), extraOnFirstTime);
|
|
1253
|
-
eventHandlers.push({
|
|
1254
|
-
eventName: "initial:".concat(collectionName),
|
|
1255
|
-
handler: extraOnFirstTime
|
|
1256
|
-
});
|
|
1257
|
-
s.on("add:".concat(collectionName), extraOnAdd);
|
|
1258
|
-
eventHandlers.push({
|
|
1259
|
-
eventName: "add:".concat(collectionName),
|
|
1260
|
-
handler: extraOnAdd
|
|
1261
|
-
});
|
|
1262
|
-
s.on("update:".concat(collectionName), extraOnModify);
|
|
1263
|
-
eventHandlers.push({
|
|
1264
|
-
eventName: "update:".concat(collectionName),
|
|
1265
|
-
handler: extraOnModify
|
|
1266
|
-
});
|
|
1267
|
-
s.on("delete:".concat(collectionName), extraOnRemove);
|
|
1268
|
-
eventHandlers.push({
|
|
1269
|
-
eventName: "delete:".concat(collectionName),
|
|
1270
|
-
handler: extraOnRemove
|
|
1271
|
-
});
|
|
1272
|
-
});
|
|
1273
|
-
});
|
|
1274
|
-
s.emit("subscribe_collections", collectionsNames, function(callback) {
|
|
1275
|
-
if (callback.success) {
|
|
1276
|
-
console.log("Successfully subscribed to: ".concat(collectionsNames.join(", ")));
|
|
1277
|
-
} else {
|
|
1278
|
-
console.error("Failed to subscribe to ".concat(config.join(", "), ": ").concat(callback.message));
|
|
1279
|
-
}
|
|
1280
|
-
});
|
|
1281
|
-
return function() {
|
|
1282
|
-
console.log("Cleaning up subscriptions for: ".concat(collectionsNames.join(", ")));
|
|
1283
|
-
s.emit("unsubscribe_collections", collectionsNames);
|
|
1284
|
-
eventHandlers.forEach(function(eh) {
|
|
1285
|
-
s.off(eh.eventName, eh.handler);
|
|
1286
|
-
});
|
|
1287
|
-
};
|
|
1288
|
-
}
|
|
1289
|
-
},
|
|
1290
|
-
{
|
|
1291
|
-
/// set data
|
|
1292
|
-
key: "setData",
|
|
1293
|
-
value: function setData(payload) {
|
|
1294
|
-
var s = this.getSocketInstance();
|
|
1295
|
-
return new Promise(function(resolve, reject) {
|
|
1296
|
-
s.emit("set_data", payload, function(callback) {
|
|
1297
|
-
if (callback.success) {
|
|
1298
|
-
console.log("Data saved successfully:", payload);
|
|
1299
|
-
console.log("ack", callback);
|
|
1300
|
-
resolve(callback);
|
|
1301
|
-
} else {
|
|
1302
|
-
reject(new Error(callback.message || "Save operation failed"));
|
|
1303
|
-
}
|
|
1304
|
-
});
|
|
1305
|
-
});
|
|
1306
|
-
}
|
|
1307
|
-
},
|
|
1308
|
-
{
|
|
1309
|
-
/// get data
|
|
1310
|
-
key: "getCollectionData",
|
|
1311
|
-
value: function getCollectionData(payload) {
|
|
1312
|
-
var s = this.getSocketInstance();
|
|
1313
|
-
s.emit("get_data", {
|
|
1314
|
-
collection_name: payload.collection_name
|
|
1315
|
-
}, function(socketCallback) {
|
|
1316
|
-
if (socketCallback.success && socketCallback.data) {
|
|
1317
|
-
payload.callback(socketCallback.data);
|
|
1318
|
-
} else {
|
|
1319
|
-
payload.callback(payload.defaultValue);
|
|
1320
|
-
}
|
|
1321
|
-
});
|
|
1322
|
-
}
|
|
1323
|
-
},
|
|
1324
|
-
{
|
|
1325
|
-
key: "getDocumentData",
|
|
1326
|
-
value: function getDocumentData(payload) {
|
|
1327
|
-
var s = this.getSocketInstance();
|
|
1328
|
-
s.emit("get_data", {
|
|
1329
|
-
collection_name: payload.collection_name,
|
|
1330
|
-
key: payload.key
|
|
1331
|
-
}, function(socketCallback) {
|
|
1332
|
-
if (socketCallback.success && socketCallback.data) {
|
|
1333
|
-
payload.callback(socketCallback.data);
|
|
1334
|
-
} else {
|
|
1335
|
-
payload.callback(payload.defaultValue);
|
|
1336
|
-
}
|
|
1337
|
-
});
|
|
1338
|
-
}
|
|
1339
|
-
},
|
|
1340
|
-
{
|
|
1341
|
-
/// delete data
|
|
1342
|
-
key: "deleteData",
|
|
1343
|
-
value: function deleteData(payload) {
|
|
1344
|
-
var s = this.getSocketInstance();
|
|
1345
|
-
return new Promise(function(resolve, reject) {
|
|
1346
|
-
s.emit("delete_data", payload, function(callback) {
|
|
1347
|
-
if (callback.success) {
|
|
1348
|
-
console.log("Data deleted successfully:", payload);
|
|
1349
|
-
console.log("delete ack", callback);
|
|
1350
|
-
resolve(callback);
|
|
1351
|
-
} else {
|
|
1352
|
-
reject(new Error(callback.message || "Delete operation failed"));
|
|
1353
|
-
}
|
|
1354
|
-
});
|
|
1355
|
-
});
|
|
1356
|
-
}
|
|
1357
|
-
},
|
|
1358
|
-
{
|
|
1359
|
-
key: "clearAllRedisData",
|
|
1360
|
-
value: function clearAllRedisData() {
|
|
1361
|
-
var s = this.getSocketInstance();
|
|
1362
|
-
return new Promise(function(resolve, reject) {
|
|
1363
|
-
s.emit("clear_all_redis_data", function(ack) {
|
|
1364
|
-
if (ack.success) {
|
|
1365
|
-
resolve(ack);
|
|
1366
|
-
} else {
|
|
1367
|
-
reject(new Error(ack.message || "Clear all Redis data operation failed"));
|
|
1368
|
-
}
|
|
1369
|
-
});
|
|
1370
|
-
});
|
|
1371
|
-
}
|
|
1372
|
-
},
|
|
1373
|
-
{
|
|
1374
|
-
/// connection management methods
|
|
1375
|
-
key: "onConnect",
|
|
1376
|
-
value: function onConnect(callback) {
|
|
1377
|
-
var _this_socket;
|
|
1378
|
-
this.connectCallbacks.push(callback);
|
|
1379
|
-
if ((_this_socket = this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.connected) {
|
|
1380
|
-
callback();
|
|
1381
|
-
}
|
|
1382
|
-
}
|
|
1383
|
-
},
|
|
1384
|
-
{
|
|
1385
|
-
key: "offConnect",
|
|
1386
|
-
value: function offConnect(callback) {
|
|
1387
|
-
this.connectCallbacks = this.connectCallbacks.filter(function(cb) {
|
|
1388
|
-
return cb !== callback;
|
|
1389
|
-
});
|
|
1390
|
-
}
|
|
1391
|
-
},
|
|
1392
|
-
{
|
|
1393
|
-
key: "onDisconnect",
|
|
1394
|
-
value: function onDisconnect(callback) {
|
|
1395
|
-
this.disconnectCallbacks.push(callback);
|
|
1396
|
-
if (this.socket && !this.socket.connected) {
|
|
1397
|
-
callback();
|
|
1398
|
-
}
|
|
1399
|
-
}
|
|
1400
|
-
},
|
|
1401
|
-
{
|
|
1402
|
-
key: "offDisconnect",
|
|
1403
|
-
value: function offDisconnect(callback) {
|
|
1404
|
-
this.disconnectCallbacks = this.disconnectCallbacks.filter(function(cb) {
|
|
1405
|
-
return cb !== callback;
|
|
1406
|
-
});
|
|
1407
|
-
}
|
|
1408
|
-
},
|
|
1409
|
-
{
|
|
1410
|
-
key: "isConnected",
|
|
1411
|
-
value: function isConnected() {
|
|
1412
|
-
var _this_socket;
|
|
1413
|
-
return ((_this_socket = this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.connected) || false;
|
|
1414
|
-
}
|
|
1415
|
-
}
|
|
1416
|
-
], [
|
|
1417
|
-
{
|
|
1418
|
-
key: "getInstance",
|
|
1419
|
-
value: function getInstance() {
|
|
1420
|
-
if (!_SocketService.instance) {
|
|
1421
|
-
_SocketService.instance = new _SocketService();
|
|
1422
|
-
}
|
|
1423
|
-
return _SocketService.instance;
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
|
-
]);
|
|
1427
|
-
return _SocketService;
|
|
1428
|
-
}();
|
|
1429
|
-
var socketServiceInstance = SocketService.getInstance();
|
|
1430
1158
|
// src/components/utils/Checkboxes.tsx
|
|
1431
1159
|
var import_react2 = require("react");
|
|
1432
1160
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
@@ -3969,14 +3697,14 @@ function rectsAreEqual(a, b) {
|
|
|
3969
3697
|
return a.x === b.x && a.y === b.y && a.width === b.width && a.height === b.height;
|
|
3970
3698
|
}
|
|
3971
3699
|
function observeMove(element, onMove) {
|
|
3972
|
-
var
|
|
3700
|
+
var io = null;
|
|
3973
3701
|
var timeoutId;
|
|
3974
3702
|
var root = getDocumentElement(element);
|
|
3975
3703
|
function cleanup() {
|
|
3976
3704
|
var _io;
|
|
3977
3705
|
clearTimeout(timeoutId);
|
|
3978
|
-
(_io =
|
|
3979
|
-
|
|
3706
|
+
(_io = io) == null || _io.disconnect();
|
|
3707
|
+
io = null;
|
|
3980
3708
|
}
|
|
3981
3709
|
function refresh(skip, threshold) {
|
|
3982
3710
|
if (skip === void 0) {
|
|
@@ -4024,14 +3752,14 @@ function observeMove(element, onMove) {
|
|
|
4024
3752
|
isFirstUpdate = false;
|
|
4025
3753
|
}
|
|
4026
3754
|
try {
|
|
4027
|
-
|
|
3755
|
+
io = new IntersectionObserver(handleObserve, _object_spread_props(_object_spread({}, options), {
|
|
4028
3756
|
// Handle <iframe>s
|
|
4029
3757
|
root: root.ownerDocument
|
|
4030
3758
|
}));
|
|
4031
3759
|
} catch (e) {
|
|
4032
|
-
|
|
3760
|
+
io = new IntersectionObserver(handleObserve, options);
|
|
4033
3761
|
}
|
|
4034
|
-
|
|
3762
|
+
io.observe(element);
|
|
4035
3763
|
}
|
|
4036
3764
|
refresh(true);
|
|
4037
3765
|
return cleanup;
|
|
@@ -939,278 +939,6 @@ var biDomain = isLocal ? "http://localhost:9002/api/bi" : baseDomain + "/bi";
|
|
|
939
939
|
var notificationsDomain = isLocal ? "http://localhost:9006/api/notifications" : baseDomain + "/notifications";
|
|
940
940
|
var callCenterGeoDomain = isLocal ? "http://localhost:9007/api/call-center/geo" : baseDomain + "/call-center/geo";
|
|
941
941
|
var callCenterEventsDomain = isLocal ? "http://localhost:9008/api/call-center/events" : baseDomain + "/call-center/events";
|
|
942
|
-
// src/helpers/socket.ts
|
|
943
|
-
import { io } from "socket.io-client";
|
|
944
|
-
var SocketService = /*#__PURE__*/ function() {
|
|
945
|
-
"use strict";
|
|
946
|
-
function _SocketService() {
|
|
947
|
-
_class_call_check(this, _SocketService);
|
|
948
|
-
this.socket = null;
|
|
949
|
-
this.connectCallbacks = [];
|
|
950
|
-
this.disconnectCallbacks = [];
|
|
951
|
-
this.initSocket();
|
|
952
|
-
}
|
|
953
|
-
_create_class(_SocketService, [
|
|
954
|
-
{
|
|
955
|
-
/// Initialize the socket connection
|
|
956
|
-
key: "initSocket",
|
|
957
|
-
value: function initSocket() {
|
|
958
|
-
var _this = this;
|
|
959
|
-
if (!this.socket) {
|
|
960
|
-
var SOCKET_SERVER_URL = "http://localhost:9009";
|
|
961
|
-
var SOCKET_PATH = "/api/data-socket/connect";
|
|
962
|
-
this.socket = io(SOCKET_SERVER_URL, {
|
|
963
|
-
path: SOCKET_PATH,
|
|
964
|
-
transports: [
|
|
965
|
-
"websocket"
|
|
966
|
-
]
|
|
967
|
-
});
|
|
968
|
-
this.socket.on("connect", function() {
|
|
969
|
-
var _this_socket;
|
|
970
|
-
console.log("Socket connected:", (_this_socket = _this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.id);
|
|
971
|
-
_this.connectCallbacks.forEach(function(cb) {
|
|
972
|
-
return cb();
|
|
973
|
-
});
|
|
974
|
-
});
|
|
975
|
-
this.socket.on("disconnect", function(reason) {
|
|
976
|
-
console.log("Socket disconnected:", reason);
|
|
977
|
-
_this.disconnectCallbacks.forEach(function(cb) {
|
|
978
|
-
return cb();
|
|
979
|
-
});
|
|
980
|
-
});
|
|
981
|
-
this.socket.on("connect_error", function(error) {
|
|
982
|
-
console.error("Socket connection error:", error);
|
|
983
|
-
});
|
|
984
|
-
}
|
|
985
|
-
}
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
/// get socket instance
|
|
989
|
-
key: "getSocketInstance",
|
|
990
|
-
value: function getSocketInstance() {
|
|
991
|
-
if (!this.socket) {
|
|
992
|
-
this.initSocket();
|
|
993
|
-
}
|
|
994
|
-
if (!this.socket) {
|
|
995
|
-
throw new Error("Socket not initialized");
|
|
996
|
-
}
|
|
997
|
-
if (!this.socket.connected) {
|
|
998
|
-
this.socket.connect();
|
|
999
|
-
}
|
|
1000
|
-
return this.socket;
|
|
1001
|
-
}
|
|
1002
|
-
},
|
|
1003
|
-
{
|
|
1004
|
-
/// subscribe to collections
|
|
1005
|
-
key: "subscribeToCollections",
|
|
1006
|
-
value: function subscribeToCollections(config) {
|
|
1007
|
-
var s = this.getSocketInstance();
|
|
1008
|
-
var collectionsNames = config.map(function(c) {
|
|
1009
|
-
return c.collectionName;
|
|
1010
|
-
});
|
|
1011
|
-
var eventHandlers = [];
|
|
1012
|
-
config.forEach(function(configuration) {
|
|
1013
|
-
var collectionName = configuration.collectionName, onAdd = configuration.onAdd, onFirstTime = configuration.onFirstTime, onModify = configuration.onModify, onRemove = configuration.onRemove, extraParsers = configuration.extraParsers, conditions = configuration.conditions, orderBy2 = configuration.orderBy;
|
|
1014
|
-
s.on("initial:".concat(collectionName), onFirstTime);
|
|
1015
|
-
eventHandlers.push({
|
|
1016
|
-
eventName: "initial:".concat(collectionName),
|
|
1017
|
-
handler: onFirstTime
|
|
1018
|
-
});
|
|
1019
|
-
s.on("add:".concat(collectionName), onAdd);
|
|
1020
|
-
eventHandlers.push({
|
|
1021
|
-
eventName: "add:".concat(collectionName),
|
|
1022
|
-
handler: onAdd
|
|
1023
|
-
});
|
|
1024
|
-
s.on("update:".concat(collectionName), onModify);
|
|
1025
|
-
eventHandlers.push({
|
|
1026
|
-
eventName: "update:".concat(collectionName),
|
|
1027
|
-
handler: onModify
|
|
1028
|
-
});
|
|
1029
|
-
s.on("delete:".concat(collectionName), onRemove);
|
|
1030
|
-
eventHandlers.push({
|
|
1031
|
-
eventName: "delete:".concat(collectionName),
|
|
1032
|
-
handler: onRemove
|
|
1033
|
-
});
|
|
1034
|
-
extraParsers === null || extraParsers === void 0 ? void 0 : extraParsers.forEach(function(parsers) {
|
|
1035
|
-
var extraOnAdd = parsers.onAdd, extraOnFirstTime = parsers.onFirstTime, extraOnModify = parsers.onModify, extraOnRemove = parsers.onRemove;
|
|
1036
|
-
s.on("initial:".concat(collectionName), extraOnFirstTime);
|
|
1037
|
-
eventHandlers.push({
|
|
1038
|
-
eventName: "initial:".concat(collectionName),
|
|
1039
|
-
handler: extraOnFirstTime
|
|
1040
|
-
});
|
|
1041
|
-
s.on("add:".concat(collectionName), extraOnAdd);
|
|
1042
|
-
eventHandlers.push({
|
|
1043
|
-
eventName: "add:".concat(collectionName),
|
|
1044
|
-
handler: extraOnAdd
|
|
1045
|
-
});
|
|
1046
|
-
s.on("update:".concat(collectionName), extraOnModify);
|
|
1047
|
-
eventHandlers.push({
|
|
1048
|
-
eventName: "update:".concat(collectionName),
|
|
1049
|
-
handler: extraOnModify
|
|
1050
|
-
});
|
|
1051
|
-
s.on("delete:".concat(collectionName), extraOnRemove);
|
|
1052
|
-
eventHandlers.push({
|
|
1053
|
-
eventName: "delete:".concat(collectionName),
|
|
1054
|
-
handler: extraOnRemove
|
|
1055
|
-
});
|
|
1056
|
-
});
|
|
1057
|
-
});
|
|
1058
|
-
s.emit("subscribe_collections", collectionsNames, function(callback) {
|
|
1059
|
-
if (callback.success) {
|
|
1060
|
-
console.log("Successfully subscribed to: ".concat(collectionsNames.join(", ")));
|
|
1061
|
-
} else {
|
|
1062
|
-
console.error("Failed to subscribe to ".concat(config.join(", "), ": ").concat(callback.message));
|
|
1063
|
-
}
|
|
1064
|
-
});
|
|
1065
|
-
return function() {
|
|
1066
|
-
console.log("Cleaning up subscriptions for: ".concat(collectionsNames.join(", ")));
|
|
1067
|
-
s.emit("unsubscribe_collections", collectionsNames);
|
|
1068
|
-
eventHandlers.forEach(function(eh) {
|
|
1069
|
-
s.off(eh.eventName, eh.handler);
|
|
1070
|
-
});
|
|
1071
|
-
};
|
|
1072
|
-
}
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
/// set data
|
|
1076
|
-
key: "setData",
|
|
1077
|
-
value: function setData(payload) {
|
|
1078
|
-
var s = this.getSocketInstance();
|
|
1079
|
-
return new Promise(function(resolve, reject) {
|
|
1080
|
-
s.emit("set_data", payload, function(callback) {
|
|
1081
|
-
if (callback.success) {
|
|
1082
|
-
console.log("Data saved successfully:", payload);
|
|
1083
|
-
console.log("ack", callback);
|
|
1084
|
-
resolve(callback);
|
|
1085
|
-
} else {
|
|
1086
|
-
reject(new Error(callback.message || "Save operation failed"));
|
|
1087
|
-
}
|
|
1088
|
-
});
|
|
1089
|
-
});
|
|
1090
|
-
}
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
/// get data
|
|
1094
|
-
key: "getCollectionData",
|
|
1095
|
-
value: function getCollectionData(payload) {
|
|
1096
|
-
var s = this.getSocketInstance();
|
|
1097
|
-
s.emit("get_data", {
|
|
1098
|
-
collection_name: payload.collection_name
|
|
1099
|
-
}, function(socketCallback) {
|
|
1100
|
-
if (socketCallback.success && socketCallback.data) {
|
|
1101
|
-
payload.callback(socketCallback.data);
|
|
1102
|
-
} else {
|
|
1103
|
-
payload.callback(payload.defaultValue);
|
|
1104
|
-
}
|
|
1105
|
-
});
|
|
1106
|
-
}
|
|
1107
|
-
},
|
|
1108
|
-
{
|
|
1109
|
-
key: "getDocumentData",
|
|
1110
|
-
value: function getDocumentData(payload) {
|
|
1111
|
-
var s = this.getSocketInstance();
|
|
1112
|
-
s.emit("get_data", {
|
|
1113
|
-
collection_name: payload.collection_name,
|
|
1114
|
-
key: payload.key
|
|
1115
|
-
}, function(socketCallback) {
|
|
1116
|
-
if (socketCallback.success && socketCallback.data) {
|
|
1117
|
-
payload.callback(socketCallback.data);
|
|
1118
|
-
} else {
|
|
1119
|
-
payload.callback(payload.defaultValue);
|
|
1120
|
-
}
|
|
1121
|
-
});
|
|
1122
|
-
}
|
|
1123
|
-
},
|
|
1124
|
-
{
|
|
1125
|
-
/// delete data
|
|
1126
|
-
key: "deleteData",
|
|
1127
|
-
value: function deleteData(payload) {
|
|
1128
|
-
var s = this.getSocketInstance();
|
|
1129
|
-
return new Promise(function(resolve, reject) {
|
|
1130
|
-
s.emit("delete_data", payload, function(callback) {
|
|
1131
|
-
if (callback.success) {
|
|
1132
|
-
console.log("Data deleted successfully:", payload);
|
|
1133
|
-
console.log("delete ack", callback);
|
|
1134
|
-
resolve(callback);
|
|
1135
|
-
} else {
|
|
1136
|
-
reject(new Error(callback.message || "Delete operation failed"));
|
|
1137
|
-
}
|
|
1138
|
-
});
|
|
1139
|
-
});
|
|
1140
|
-
}
|
|
1141
|
-
},
|
|
1142
|
-
{
|
|
1143
|
-
key: "clearAllRedisData",
|
|
1144
|
-
value: function clearAllRedisData() {
|
|
1145
|
-
var s = this.getSocketInstance();
|
|
1146
|
-
return new Promise(function(resolve, reject) {
|
|
1147
|
-
s.emit("clear_all_redis_data", function(ack) {
|
|
1148
|
-
if (ack.success) {
|
|
1149
|
-
resolve(ack);
|
|
1150
|
-
} else {
|
|
1151
|
-
reject(new Error(ack.message || "Clear all Redis data operation failed"));
|
|
1152
|
-
}
|
|
1153
|
-
});
|
|
1154
|
-
});
|
|
1155
|
-
}
|
|
1156
|
-
},
|
|
1157
|
-
{
|
|
1158
|
-
/// connection management methods
|
|
1159
|
-
key: "onConnect",
|
|
1160
|
-
value: function onConnect(callback) {
|
|
1161
|
-
var _this_socket;
|
|
1162
|
-
this.connectCallbacks.push(callback);
|
|
1163
|
-
if ((_this_socket = this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.connected) {
|
|
1164
|
-
callback();
|
|
1165
|
-
}
|
|
1166
|
-
}
|
|
1167
|
-
},
|
|
1168
|
-
{
|
|
1169
|
-
key: "offConnect",
|
|
1170
|
-
value: function offConnect(callback) {
|
|
1171
|
-
this.connectCallbacks = this.connectCallbacks.filter(function(cb) {
|
|
1172
|
-
return cb !== callback;
|
|
1173
|
-
});
|
|
1174
|
-
}
|
|
1175
|
-
},
|
|
1176
|
-
{
|
|
1177
|
-
key: "onDisconnect",
|
|
1178
|
-
value: function onDisconnect(callback) {
|
|
1179
|
-
this.disconnectCallbacks.push(callback);
|
|
1180
|
-
if (this.socket && !this.socket.connected) {
|
|
1181
|
-
callback();
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
},
|
|
1185
|
-
{
|
|
1186
|
-
key: "offDisconnect",
|
|
1187
|
-
value: function offDisconnect(callback) {
|
|
1188
|
-
this.disconnectCallbacks = this.disconnectCallbacks.filter(function(cb) {
|
|
1189
|
-
return cb !== callback;
|
|
1190
|
-
});
|
|
1191
|
-
}
|
|
1192
|
-
},
|
|
1193
|
-
{
|
|
1194
|
-
key: "isConnected",
|
|
1195
|
-
value: function isConnected() {
|
|
1196
|
-
var _this_socket;
|
|
1197
|
-
return ((_this_socket = this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.connected) || false;
|
|
1198
|
-
}
|
|
1199
|
-
}
|
|
1200
|
-
], [
|
|
1201
|
-
{
|
|
1202
|
-
key: "getInstance",
|
|
1203
|
-
value: function getInstance() {
|
|
1204
|
-
if (!_SocketService.instance) {
|
|
1205
|
-
_SocketService.instance = new _SocketService();
|
|
1206
|
-
}
|
|
1207
|
-
return _SocketService.instance;
|
|
1208
|
-
}
|
|
1209
|
-
}
|
|
1210
|
-
]);
|
|
1211
|
-
return _SocketService;
|
|
1212
|
-
}();
|
|
1213
|
-
var socketServiceInstance = SocketService.getInstance();
|
|
1214
942
|
// src/components/utils/Checkboxes.tsx
|
|
1215
943
|
import { useEffect, useState } from "react";
|
|
1216
944
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -3753,14 +3481,14 @@ function rectsAreEqual(a, b) {
|
|
|
3753
3481
|
return a.x === b.x && a.y === b.y && a.width === b.width && a.height === b.height;
|
|
3754
3482
|
}
|
|
3755
3483
|
function observeMove(element, onMove) {
|
|
3756
|
-
var
|
|
3484
|
+
var io = null;
|
|
3757
3485
|
var timeoutId;
|
|
3758
3486
|
var root = getDocumentElement(element);
|
|
3759
3487
|
function cleanup() {
|
|
3760
3488
|
var _io;
|
|
3761
3489
|
clearTimeout(timeoutId);
|
|
3762
|
-
(_io =
|
|
3763
|
-
|
|
3490
|
+
(_io = io) == null || _io.disconnect();
|
|
3491
|
+
io = null;
|
|
3764
3492
|
}
|
|
3765
3493
|
function refresh(skip, threshold) {
|
|
3766
3494
|
if (skip === void 0) {
|
|
@@ -3808,14 +3536,14 @@ function observeMove(element, onMove) {
|
|
|
3808
3536
|
isFirstUpdate = false;
|
|
3809
3537
|
}
|
|
3810
3538
|
try {
|
|
3811
|
-
|
|
3539
|
+
io = new IntersectionObserver(handleObserve, _object_spread_props(_object_spread({}, options), {
|
|
3812
3540
|
// Handle <iframe>s
|
|
3813
3541
|
root: root.ownerDocument
|
|
3814
3542
|
}));
|
|
3815
3543
|
} catch (e) {
|
|
3816
|
-
|
|
3544
|
+
io = new IntersectionObserver(handleObserve, options);
|
|
3817
3545
|
}
|
|
3818
|
-
|
|
3546
|
+
io.observe(element);
|
|
3819
3547
|
}
|
|
3820
3548
|
refresh(true);
|
|
3821
3549
|
return cleanup;
|
package/dist/helpers/index.d.mts
CHANGED
|
@@ -3,7 +3,7 @@ import { FirebaseStorage } from 'firebase/storage';
|
|
|
3
3
|
import { Auth, GoogleAuthProvider, User } from 'firebase/auth';
|
|
4
4
|
import { AppCheck } from 'firebase/app-check';
|
|
5
5
|
import { WhereFilterOp, Unsubscribe, Firestore, CollectionReference, DocumentData, Timestamp, DocumentSnapshot } from 'firebase/firestore';
|
|
6
|
-
import { TObject, NxUser, CountryOptions, LanguageOptions, UserPermissionsObject, userPermissionsObjectValue, Client
|
|
6
|
+
import { TObject, NxUser, CountryOptions, LanguageOptions, UserPermissionsObject, userPermissionsObjectValue, Client } from 'akeyless-types-commons';
|
|
7
7
|
import React, { Dispatch, SetStateAction } from 'react';
|
|
8
8
|
import { ClassValue } from 'clsx';
|
|
9
9
|
|
|
@@ -249,36 +249,4 @@ declare const initializeUserPermissions: ({ phoneNumber, email, firstTimeArray,
|
|
|
249
249
|
permissions: TObject<TObject<boolean>>;
|
|
250
250
|
}>;
|
|
251
251
|
|
|
252
|
-
|
|
253
|
-
key: string;
|
|
254
|
-
collection_name: string;
|
|
255
|
-
callback: (value: T) => void;
|
|
256
|
-
defaultValue: T;
|
|
257
|
-
}
|
|
258
|
-
declare class SocketService {
|
|
259
|
-
private static instance;
|
|
260
|
-
private socket;
|
|
261
|
-
private connectCallbacks;
|
|
262
|
-
private disconnectCallbacks;
|
|
263
|
-
private initSocket;
|
|
264
|
-
private constructor();
|
|
265
|
-
static getInstance(): SocketService;
|
|
266
|
-
private getSocketInstance;
|
|
267
|
-
subscribeToCollections(config: OnSnapshotConfig[]): () => void;
|
|
268
|
-
setData<UpdateType extends RedisUpdateType, DataType = any>(payload: RedisUpdatePayload<UpdateType, DataType>): Promise<SocketCallbackResponse>;
|
|
269
|
-
getCollectionData<T>(payload: Omit<GetDataPayload<T>, "key">): void;
|
|
270
|
-
getDocumentData<T>(payload: GetDataPayload<T>): void;
|
|
271
|
-
deleteData(payload: {
|
|
272
|
-
key: string;
|
|
273
|
-
collection_name: string;
|
|
274
|
-
}): Promise<SocketCallbackResponse>;
|
|
275
|
-
clearAllRedisData(): Promise<SocketCallbackResponse>;
|
|
276
|
-
onConnect(callback: () => void): void;
|
|
277
|
-
offConnect(callback: () => void): void;
|
|
278
|
-
onDisconnect(callback: () => void): void;
|
|
279
|
-
offDisconnect(callback: () => void): void;
|
|
280
|
-
isConnected(): boolean;
|
|
281
|
-
}
|
|
282
|
-
declare const socketServiceInstance: SocketService;
|
|
283
|
-
|
|
284
|
-
export { type ValidationType, addAuditRecord, addLoginAudit, add_document, addressRegex, akeylessOnlineDomain, app, appCheck, auth, baseDomain, biDomain, calculateBearing, callCenterEventsDomain, callCenterGeoDomain, carsRegex, chartsRegex, checkUserPermissions, cleanNxSites, cn, collections, colorRegex, createSelectors, db, delete_document, devicesDomain, displayFormatPhoneNumber, emailRegex, extractAlertsData, extractBoardsData, extractCanbusData, extractCarsData, extractClientData, extractLocationData, extractSiteData, fire_base_TIME_TEMP, formatCarNumber, getAddressByGeo, getFixedNumber, getFormCheckboxValue, getFormElementValue, getLocationUrl, getUserByEmail, getUserByIdentifier, getUserByPhone, getUserCountryByIp, get_all_documents, get_document_by_id, get_international_phone_number, googleLoginProvider, handleChange, handleInvalid, handlePaste, initializeUserPermissions, international_israel_phone_format, isInternational, isInternationalIsraelPhone, isLocal, isNodeEnv, is_iccid, local_israel_phone_format, mode, multiStringFormat, notificationsDomain, numbersOnlyRegex, numbersRegex, nxApiCall, parseMultiSelectInput, parsePermissions, parseSnapshotAsArray, priceRegex, propsAreEqual, query_document, query_document_by_conditions, query_documents, query_documents_by_conditions, renderOnce, setFormElementValue, setState, set_document, simpleExtractData, snapshot, snapshotDocument, socketServiceInstance, sort_by_timestamp, storage, textNumbersRegex, textRegex, timestamp_to_millis, timestamp_to_string, useLoginWithGoogle, useStoreValues, useValidation, userNameFormat, validateAndCast, validateUserStatusAndPermissions };
|
|
252
|
+
export { type ValidationType, addAuditRecord, addLoginAudit, add_document, addressRegex, akeylessOnlineDomain, app, appCheck, auth, baseDomain, biDomain, calculateBearing, callCenterEventsDomain, callCenterGeoDomain, carsRegex, chartsRegex, checkUserPermissions, cleanNxSites, cn, collections, colorRegex, createSelectors, db, delete_document, devicesDomain, displayFormatPhoneNumber, emailRegex, extractAlertsData, extractBoardsData, extractCanbusData, extractCarsData, extractClientData, extractLocationData, extractSiteData, fire_base_TIME_TEMP, formatCarNumber, getAddressByGeo, getFixedNumber, getFormCheckboxValue, getFormElementValue, getLocationUrl, getUserByEmail, getUserByIdentifier, getUserByPhone, getUserCountryByIp, get_all_documents, get_document_by_id, get_international_phone_number, googleLoginProvider, handleChange, handleInvalid, handlePaste, initializeUserPermissions, international_israel_phone_format, isInternational, isInternationalIsraelPhone, isLocal, isNodeEnv, is_iccid, local_israel_phone_format, mode, multiStringFormat, notificationsDomain, numbersOnlyRegex, numbersRegex, nxApiCall, parseMultiSelectInput, parsePermissions, parseSnapshotAsArray, priceRegex, propsAreEqual, query_document, query_document_by_conditions, query_documents, query_documents_by_conditions, renderOnce, setFormElementValue, setState, set_document, simpleExtractData, snapshot, snapshotDocument, sort_by_timestamp, storage, textNumbersRegex, textRegex, timestamp_to_millis, timestamp_to_string, useLoginWithGoogle, useStoreValues, useValidation, userNameFormat, validateAndCast, validateUserStatusAndPermissions };
|