@pisell/pisellos 2.3.68 → 2.3.69
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/core/index.d.ts +7 -0
- package/dist/core/index.js +109 -65
- package/dist/modules/Quotation/index.d.ts +6 -0
- package/dist/modules/Quotation/index.js +75 -19
- package/dist/plugins/request.d.ts +1 -0
- package/dist/server/index.d.ts +8 -2
- package/dist/server/index.js +206 -140
- package/dist/server/modules/floor-plan/index.d.ts +4 -0
- package/dist/server/modules/floor-plan/index.js +240 -98
- package/dist/server/modules/menu/index.js +48 -23
- package/dist/server/modules/order/index.d.ts +17 -7
- package/dist/server/modules/order/index.js +419 -207
- package/dist/server/modules/products/index.d.ts +8 -2
- package/dist/server/modules/products/index.js +167 -75
- package/dist/server/modules/resource/index.js +21 -13
- package/dist/solution/BaseSales/index.d.ts +10 -0
- package/dist/solution/BaseSales/index.js +861 -806
- package/dist/solution/BookingTicket/index.d.ts +3 -1
- package/dist/solution/BookingTicket/index.js +187 -149
- package/lib/core/index.d.ts +7 -0
- package/lib/core/index.js +20 -2
- package/lib/modules/Quotation/index.d.ts +6 -0
- package/lib/modules/Quotation/index.js +49 -5
- package/lib/plugins/request.d.ts +1 -0
- package/lib/server/index.d.ts +8 -2
- package/lib/server/index.js +52 -17
- package/lib/server/modules/floor-plan/index.d.ts +4 -0
- package/lib/server/modules/floor-plan/index.js +54 -6
- package/lib/server/modules/menu/index.js +31 -5
- package/lib/server/modules/order/index.d.ts +17 -7
- package/lib/server/modules/order/index.js +197 -40
- package/lib/server/modules/products/index.d.ts +8 -2
- package/lib/server/modules/products/index.js +97 -24
- package/lib/server/modules/resource/index.js +7 -2
- package/lib/solution/BaseSales/index.d.ts +10 -0
- package/lib/solution/BaseSales/index.js +32 -2
- package/lib/solution/BookingTicket/index.d.ts +3 -1
- package/lib/solution/BookingTicket/index.js +12 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ export declare class FloorPlanModule extends BaseModule implements Module {
|
|
|
10
10
|
private store;
|
|
11
11
|
private request;
|
|
12
12
|
private logger;
|
|
13
|
+
private dbManager;
|
|
13
14
|
private floorPlanDataSource;
|
|
14
15
|
private pendingSyncMessages;
|
|
15
16
|
private syncTimer?;
|
|
@@ -28,6 +29,9 @@ export declare class FloorPlanModule extends BaseModule implements Module {
|
|
|
28
29
|
private mergeItems;
|
|
29
30
|
private removeByIds;
|
|
30
31
|
private loadListFromServer;
|
|
32
|
+
private loadListFromSQLite;
|
|
33
|
+
private saveListToSQLite;
|
|
34
|
+
private refreshListFromServer;
|
|
31
35
|
fetchByIdFromServer(id: number | string): Promise<FloorPlanItem | null>;
|
|
32
36
|
fetchByCodeFromServer(code: string): Promise<FloorPlanItem | null>;
|
|
33
37
|
preload(): Promise<void>;
|
|
@@ -29,6 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
29
29
|
import { BaseModule } from "../../../modules/BaseModule";
|
|
30
30
|
import { FloorPlanHooks } from "./types";
|
|
31
31
|
var FLOOR_PLAN_SYNC_DEBOUNCE_MS = 3000;
|
|
32
|
+
var FLOOR_PLAN_STORE_NAME = 'floor_plans';
|
|
32
33
|
|
|
33
34
|
/**
|
|
34
35
|
* 平面图模块:预加载列表、pubsub 同步、供 OS Server 路由读本地 store
|
|
@@ -45,6 +46,7 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
45
46
|
_defineProperty(_assertThisInitialized(_this), "store", void 0);
|
|
46
47
|
_defineProperty(_assertThisInitialized(_this), "request", void 0);
|
|
47
48
|
_defineProperty(_assertThisInitialized(_this), "logger", void 0);
|
|
49
|
+
_defineProperty(_assertThisInitialized(_this), "dbManager", void 0);
|
|
48
50
|
_defineProperty(_assertThisInitialized(_this), "floorPlanDataSource", void 0);
|
|
49
51
|
_defineProperty(_assertThisInitialized(_this), "pendingSyncMessages", []);
|
|
50
52
|
_defineProperty(_assertThisInitialized(_this), "syncTimer", void 0);
|
|
@@ -75,6 +77,7 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
75
77
|
if (appPlugin) {
|
|
76
78
|
app = appPlugin.getApp();
|
|
77
79
|
this.logger = app.logger;
|
|
80
|
+
this.dbManager = app.sqlite || app.dbManager;
|
|
78
81
|
}
|
|
79
82
|
this.initFloorPlanDataSource();
|
|
80
83
|
this.setupFloorPlanSync();
|
|
@@ -261,34 +264,154 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
261
264
|
return loadListFromServer;
|
|
262
265
|
}()
|
|
263
266
|
}, {
|
|
264
|
-
key: "
|
|
267
|
+
key: "loadListFromSQLite",
|
|
265
268
|
value: function () {
|
|
266
|
-
var
|
|
267
|
-
var
|
|
269
|
+
var _loadListFromSQLite = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
|
|
270
|
+
var list;
|
|
268
271
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
269
272
|
while (1) switch (_context3.prev = _context3.next) {
|
|
270
273
|
case 0:
|
|
271
|
-
|
|
272
|
-
|
|
274
|
+
if (this.dbManager) {
|
|
275
|
+
_context3.next = 2;
|
|
276
|
+
break;
|
|
277
|
+
}
|
|
278
|
+
return _context3.abrupt("return", []);
|
|
279
|
+
case 2:
|
|
280
|
+
_context3.prev = 2;
|
|
281
|
+
_context3.next = 5;
|
|
282
|
+
return this.dbManager.getAll(FLOOR_PLAN_STORE_NAME);
|
|
283
|
+
case 5:
|
|
284
|
+
list = _context3.sent;
|
|
285
|
+
return _context3.abrupt("return", Array.isArray(list) ? list : []);
|
|
286
|
+
case 9:
|
|
287
|
+
_context3.prev = 9;
|
|
288
|
+
_context3.t0 = _context3["catch"](2);
|
|
289
|
+
this.logWarning('从 SQLite 读取平面图失败', {
|
|
290
|
+
error: _context3.t0 instanceof Error ? _context3.t0.message : String(_context3.t0)
|
|
291
|
+
});
|
|
292
|
+
return _context3.abrupt("return", []);
|
|
293
|
+
case 13:
|
|
294
|
+
case "end":
|
|
295
|
+
return _context3.stop();
|
|
296
|
+
}
|
|
297
|
+
}, _callee3, this, [[2, 9]]);
|
|
298
|
+
}));
|
|
299
|
+
function loadListFromSQLite() {
|
|
300
|
+
return _loadListFromSQLite.apply(this, arguments);
|
|
301
|
+
}
|
|
302
|
+
return loadListFromSQLite;
|
|
303
|
+
}()
|
|
304
|
+
}, {
|
|
305
|
+
key: "saveListToSQLite",
|
|
306
|
+
value: function () {
|
|
307
|
+
var _saveListToSQLite = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(list) {
|
|
308
|
+
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
309
|
+
while (1) switch (_context4.prev = _context4.next) {
|
|
310
|
+
case 0:
|
|
311
|
+
if (this.dbManager) {
|
|
312
|
+
_context4.next = 2;
|
|
313
|
+
break;
|
|
314
|
+
}
|
|
315
|
+
return _context4.abrupt("return");
|
|
316
|
+
case 2:
|
|
317
|
+
_context4.prev = 2;
|
|
318
|
+
_context4.next = 5;
|
|
319
|
+
return this.dbManager.clear(FLOOR_PLAN_STORE_NAME);
|
|
320
|
+
case 5:
|
|
321
|
+
if (!(list.length > 0)) {
|
|
322
|
+
_context4.next = 8;
|
|
323
|
+
break;
|
|
324
|
+
}
|
|
325
|
+
_context4.next = 8;
|
|
326
|
+
return this.dbManager.bulkAdd(FLOOR_PLAN_STORE_NAME, list);
|
|
327
|
+
case 8:
|
|
328
|
+
_context4.next = 13;
|
|
329
|
+
break;
|
|
330
|
+
case 10:
|
|
331
|
+
_context4.prev = 10;
|
|
332
|
+
_context4.t0 = _context4["catch"](2);
|
|
333
|
+
this.logWarning('保存平面图到 SQLite 失败', {
|
|
334
|
+
count: list.length,
|
|
335
|
+
error: _context4.t0 instanceof Error ? _context4.t0.message : String(_context4.t0)
|
|
336
|
+
});
|
|
337
|
+
case 13:
|
|
338
|
+
case "end":
|
|
339
|
+
return _context4.stop();
|
|
340
|
+
}
|
|
341
|
+
}, _callee4, this, [[2, 10]]);
|
|
342
|
+
}));
|
|
343
|
+
function saveListToSQLite(_x3) {
|
|
344
|
+
return _saveListToSQLite.apply(this, arguments);
|
|
345
|
+
}
|
|
346
|
+
return saveListToSQLite;
|
|
347
|
+
}()
|
|
348
|
+
}, {
|
|
349
|
+
key: "refreshListFromServer",
|
|
350
|
+
value: function () {
|
|
351
|
+
var _refreshListFromServer = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5() {
|
|
352
|
+
var list;
|
|
353
|
+
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
354
|
+
while (1) switch (_context5.prev = _context5.next) {
|
|
355
|
+
case 0:
|
|
356
|
+
_context5.next = 2;
|
|
357
|
+
return this.loadListFromServer();
|
|
358
|
+
case 2:
|
|
359
|
+
list = _context5.sent;
|
|
360
|
+
if (!(list.length === 0)) {
|
|
361
|
+
_context5.next = 6;
|
|
362
|
+
break;
|
|
363
|
+
}
|
|
364
|
+
this.logWarning('远端平面图刷新完成但列表为空');
|
|
365
|
+
return _context5.abrupt("return");
|
|
366
|
+
case 6:
|
|
367
|
+
this.replaceStore(list);
|
|
368
|
+
_context5.next = 9;
|
|
369
|
+
return this.saveListToSQLite(list);
|
|
370
|
+
case 9:
|
|
371
|
+
this.core.effects.emit(FloorPlanHooks.onFloorPlansChanged, this.getSortedList());
|
|
372
|
+
this.logInfo('远端平面图刷新完成', {
|
|
373
|
+
count: list.length
|
|
374
|
+
});
|
|
375
|
+
case 11:
|
|
376
|
+
case "end":
|
|
377
|
+
return _context5.stop();
|
|
378
|
+
}
|
|
379
|
+
}, _callee5, this);
|
|
380
|
+
}));
|
|
381
|
+
function refreshListFromServer() {
|
|
382
|
+
return _refreshListFromServer.apply(this, arguments);
|
|
383
|
+
}
|
|
384
|
+
return refreshListFromServer;
|
|
385
|
+
}()
|
|
386
|
+
}, {
|
|
387
|
+
key: "fetchByIdFromServer",
|
|
388
|
+
value: function () {
|
|
389
|
+
var _fetchByIdFromServer = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(id) {
|
|
390
|
+
var res, body, data;
|
|
391
|
+
return _regeneratorRuntime().wrap(function _callee6$(_context6) {
|
|
392
|
+
while (1) switch (_context6.prev = _context6.next) {
|
|
393
|
+
case 0:
|
|
394
|
+
_context6.prev = 0;
|
|
395
|
+
_context6.next = 3;
|
|
273
396
|
return this.request.get("/schedule/floor-plan/".concat(id), {}, {
|
|
274
397
|
isShopApi: true
|
|
275
398
|
});
|
|
276
399
|
case 3:
|
|
277
|
-
res =
|
|
400
|
+
res = _context6.sent;
|
|
278
401
|
body = res;
|
|
279
402
|
data = (body === null || body === void 0 ? void 0 : body.data) !== undefined ? body.data : body;
|
|
280
|
-
return
|
|
403
|
+
return _context6.abrupt("return", data && _typeof(data) === 'object' ? data : null);
|
|
281
404
|
case 9:
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
return
|
|
405
|
+
_context6.prev = 9;
|
|
406
|
+
_context6.t0 = _context6["catch"](0);
|
|
407
|
+
return _context6.abrupt("return", null);
|
|
285
408
|
case 12:
|
|
286
409
|
case "end":
|
|
287
|
-
return
|
|
410
|
+
return _context6.stop();
|
|
288
411
|
}
|
|
289
|
-
},
|
|
412
|
+
}, _callee6, this, [[0, 9]]);
|
|
290
413
|
}));
|
|
291
|
-
function fetchByIdFromServer(
|
|
414
|
+
function fetchByIdFromServer(_x4) {
|
|
292
415
|
return _fetchByIdFromServer.apply(this, arguments);
|
|
293
416
|
}
|
|
294
417
|
return fetchByIdFromServer;
|
|
@@ -296,33 +419,33 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
296
419
|
}, {
|
|
297
420
|
key: "fetchByCodeFromServer",
|
|
298
421
|
value: function () {
|
|
299
|
-
var _fetchByCodeFromServer = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
422
|
+
var _fetchByCodeFromServer = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(code) {
|
|
300
423
|
var enc, res, body, data;
|
|
301
|
-
return _regeneratorRuntime().wrap(function
|
|
302
|
-
while (1) switch (
|
|
424
|
+
return _regeneratorRuntime().wrap(function _callee7$(_context7) {
|
|
425
|
+
while (1) switch (_context7.prev = _context7.next) {
|
|
303
426
|
case 0:
|
|
304
|
-
|
|
427
|
+
_context7.prev = 0;
|
|
305
428
|
enc = encodeURIComponent(code);
|
|
306
|
-
|
|
429
|
+
_context7.next = 4;
|
|
307
430
|
return this.request.get("/schedule/floor-plan/code/".concat(enc), {}, {
|
|
308
431
|
isShopApi: true
|
|
309
432
|
});
|
|
310
433
|
case 4:
|
|
311
|
-
res =
|
|
434
|
+
res = _context7.sent;
|
|
312
435
|
body = res;
|
|
313
436
|
data = (body === null || body === void 0 ? void 0 : body.data) !== undefined ? body.data : body;
|
|
314
|
-
return
|
|
437
|
+
return _context7.abrupt("return", data && _typeof(data) === 'object' ? data : null);
|
|
315
438
|
case 10:
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
return
|
|
439
|
+
_context7.prev = 10;
|
|
440
|
+
_context7.t0 = _context7["catch"](0);
|
|
441
|
+
return _context7.abrupt("return", null);
|
|
319
442
|
case 13:
|
|
320
443
|
case "end":
|
|
321
|
-
return
|
|
444
|
+
return _context7.stop();
|
|
322
445
|
}
|
|
323
|
-
},
|
|
446
|
+
}, _callee7, this, [[0, 10]]);
|
|
324
447
|
}));
|
|
325
|
-
function fetchByCodeFromServer(
|
|
448
|
+
function fetchByCodeFromServer(_x5) {
|
|
326
449
|
return _fetchByCodeFromServer.apply(this, arguments);
|
|
327
450
|
}
|
|
328
451
|
return fetchByCodeFromServer;
|
|
@@ -330,30 +453,42 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
330
453
|
}, {
|
|
331
454
|
key: "preload",
|
|
332
455
|
value: function () {
|
|
333
|
-
var _preload = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
334
|
-
var
|
|
335
|
-
|
|
336
|
-
|
|
456
|
+
var _preload = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8() {
|
|
457
|
+
var _this3 = this;
|
|
458
|
+
var cachedList;
|
|
459
|
+
return _regeneratorRuntime().wrap(function _callee8$(_context8) {
|
|
460
|
+
while (1) switch (_context8.prev = _context8.next) {
|
|
337
461
|
case 0:
|
|
338
462
|
this.logInfo('开始预加载平面图列表');
|
|
339
|
-
|
|
340
|
-
return this.
|
|
463
|
+
_context8.next = 3;
|
|
464
|
+
return this.loadListFromSQLite();
|
|
341
465
|
case 3:
|
|
342
|
-
|
|
343
|
-
if (
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
this.logInfo('预加载完成', {
|
|
347
|
-
count: list.length
|
|
348
|
-
});
|
|
349
|
-
} else {
|
|
350
|
-
this.logWarning('预加载完成但列表为空');
|
|
466
|
+
cachedList = _context8.sent;
|
|
467
|
+
if (!(cachedList.length > 0)) {
|
|
468
|
+
_context8.next = 10;
|
|
469
|
+
break;
|
|
351
470
|
}
|
|
352
|
-
|
|
471
|
+
this.replaceStore(cachedList);
|
|
472
|
+
this.core.effects.emit(FloorPlanHooks.onFloorPlansChanged, this.getSortedList());
|
|
473
|
+
this.logInfo('预加载完成(SQLite)', {
|
|
474
|
+
count: cachedList.length
|
|
475
|
+
});
|
|
476
|
+
|
|
477
|
+
// 二次启动立即使用本地平面图,远端刷新完成后自动更新 store 与订阅者。
|
|
478
|
+
void this.refreshListFromServer().catch(function (error) {
|
|
479
|
+
_this3.logWarning('后台刷新平面图失败,继续使用本地数据', {
|
|
480
|
+
error: error instanceof Error ? error.message : String(error)
|
|
481
|
+
});
|
|
482
|
+
});
|
|
483
|
+
return _context8.abrupt("return");
|
|
484
|
+
case 10:
|
|
485
|
+
_context8.next = 12;
|
|
486
|
+
return this.refreshListFromServer();
|
|
487
|
+
case 12:
|
|
353
488
|
case "end":
|
|
354
|
-
return
|
|
489
|
+
return _context8.stop();
|
|
355
490
|
}
|
|
356
|
-
},
|
|
491
|
+
}, _callee8, this);
|
|
357
492
|
}));
|
|
358
493
|
function preload() {
|
|
359
494
|
return _preload.apply(this, arguments);
|
|
@@ -375,12 +510,12 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
375
510
|
}, {
|
|
376
511
|
key: "setupFloorPlanSync",
|
|
377
512
|
value: function setupFloorPlanSync() {
|
|
378
|
-
var
|
|
513
|
+
var _this4 = this;
|
|
379
514
|
if (!this.floorPlanDataSource) return;
|
|
380
515
|
var flush = function flush() {
|
|
381
|
-
if (
|
|
382
|
-
|
|
383
|
-
|
|
516
|
+
if (_this4.syncTimer) clearTimeout(_this4.syncTimer);
|
|
517
|
+
_this4.syncTimer = setTimeout(function () {
|
|
518
|
+
_this4.processFloorPlanSyncMessages();
|
|
384
519
|
}, FLOOR_PLAN_SYNC_DEBOUNCE_MS);
|
|
385
520
|
};
|
|
386
521
|
this.floorPlanDataSource.run({
|
|
@@ -388,12 +523,12 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
388
523
|
callback: function callback(res) {
|
|
389
524
|
var data = (res === null || res === void 0 ? void 0 : res.data) || res;
|
|
390
525
|
if (!data || data.module !== 'floor_plan') return;
|
|
391
|
-
|
|
526
|
+
_this4.pendingSyncMessages.push(_objectSpread({}, data));
|
|
392
527
|
flush();
|
|
393
528
|
}
|
|
394
529
|
}
|
|
395
530
|
}).catch(function (err) {
|
|
396
|
-
|
|
531
|
+
_this4.logError('setupFloorPlanSync: DataSource run 出错', {
|
|
397
532
|
error: err instanceof Error ? err.message : String(err)
|
|
398
533
|
});
|
|
399
534
|
});
|
|
@@ -402,18 +537,18 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
402
537
|
}, {
|
|
403
538
|
key: "processFloorPlanSyncMessages",
|
|
404
539
|
value: function () {
|
|
405
|
-
var _processFloorPlanSyncMessages = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
540
|
+
var _processFloorPlanSyncMessages = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9() {
|
|
406
541
|
var messages, changed, deleteIds, bodyItems, needFullList, partialIds, _iterator3, _step3, _msg$ids2, msg, _msg$ids, body, hasBody, uniqueDeletes, list, fetched, _iterator4, _step4, id, one;
|
|
407
|
-
return _regeneratorRuntime().wrap(function
|
|
408
|
-
while (1) switch (
|
|
542
|
+
return _regeneratorRuntime().wrap(function _callee9$(_context9) {
|
|
543
|
+
while (1) switch (_context9.prev = _context9.next) {
|
|
409
544
|
case 0:
|
|
410
545
|
messages = _toConsumableArray(this.pendingSyncMessages);
|
|
411
546
|
this.pendingSyncMessages = [];
|
|
412
547
|
if (!(messages.length === 0)) {
|
|
413
|
-
|
|
548
|
+
_context9.next = 4;
|
|
414
549
|
break;
|
|
415
550
|
}
|
|
416
|
-
return
|
|
551
|
+
return _context9.abrupt("return");
|
|
417
552
|
case 4:
|
|
418
553
|
this.logInfo('processFloorPlanSyncMessages 开始', {
|
|
419
554
|
count: messages.length
|
|
@@ -424,16 +559,16 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
424
559
|
needFullList = false;
|
|
425
560
|
partialIds = new Set();
|
|
426
561
|
_iterator3 = _createForOfIteratorHelper(messages);
|
|
427
|
-
|
|
562
|
+
_context9.prev = 11;
|
|
428
563
|
_iterator3.s();
|
|
429
564
|
case 13:
|
|
430
565
|
if ((_step3 = _iterator3.n()).done) {
|
|
431
|
-
|
|
566
|
+
_context9.next = 29;
|
|
432
567
|
break;
|
|
433
568
|
}
|
|
434
569
|
msg = _step3.value;
|
|
435
570
|
if (!(msg.operation === 'delete' || msg.action === 'delete')) {
|
|
436
|
-
|
|
571
|
+
_context9.next = 18;
|
|
437
572
|
break;
|
|
438
573
|
}
|
|
439
574
|
if ((_msg$ids = msg.ids) !== null && _msg$ids !== void 0 && _msg$ids.length) {
|
|
@@ -441,23 +576,23 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
441
576
|
} else if (msg.id != null) {
|
|
442
577
|
deleteIds.push(msg.id);
|
|
443
578
|
}
|
|
444
|
-
return
|
|
579
|
+
return _context9.abrupt("continue", 27);
|
|
445
580
|
case 18:
|
|
446
581
|
body = msg.body;
|
|
447
582
|
hasBody = body && _typeof(body) === 'object' && Object.keys(body).length > 0 && body.id != null;
|
|
448
583
|
if (!hasBody) {
|
|
449
|
-
|
|
584
|
+
_context9.next = 23;
|
|
450
585
|
break;
|
|
451
586
|
}
|
|
452
587
|
bodyItems.push(body);
|
|
453
|
-
return
|
|
588
|
+
return _context9.abrupt("continue", 27);
|
|
454
589
|
case 23:
|
|
455
590
|
if (!(msg.ids && msg.ids.length > 1)) {
|
|
456
|
-
|
|
591
|
+
_context9.next = 26;
|
|
457
592
|
break;
|
|
458
593
|
}
|
|
459
594
|
needFullList = true;
|
|
460
|
-
return
|
|
595
|
+
return _context9.abrupt("continue", 27);
|
|
461
596
|
case 26:
|
|
462
597
|
if (((_msg$ids2 = msg.ids) === null || _msg$ids2 === void 0 ? void 0 : _msg$ids2.length) === 1) {
|
|
463
598
|
partialIds.add(msg.ids[0]);
|
|
@@ -465,19 +600,19 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
465
600
|
partialIds.add(msg.id);
|
|
466
601
|
}
|
|
467
602
|
case 27:
|
|
468
|
-
|
|
603
|
+
_context9.next = 13;
|
|
469
604
|
break;
|
|
470
605
|
case 29:
|
|
471
|
-
|
|
606
|
+
_context9.next = 34;
|
|
472
607
|
break;
|
|
473
608
|
case 31:
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
_iterator3.e(
|
|
609
|
+
_context9.prev = 31;
|
|
610
|
+
_context9.t0 = _context9["catch"](11);
|
|
611
|
+
_iterator3.e(_context9.t0);
|
|
477
612
|
case 34:
|
|
478
|
-
|
|
613
|
+
_context9.prev = 34;
|
|
479
614
|
_iterator3.f();
|
|
480
|
-
return
|
|
615
|
+
return _context9.finish(34);
|
|
481
616
|
case 37:
|
|
482
617
|
uniqueDeletes = _toConsumableArray(new Set(deleteIds));
|
|
483
618
|
if (uniqueDeletes.length > 0) {
|
|
@@ -489,66 +624,71 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
489
624
|
changed = true;
|
|
490
625
|
}
|
|
491
626
|
if (!needFullList) {
|
|
492
|
-
|
|
627
|
+
_context9.next = 48;
|
|
493
628
|
break;
|
|
494
629
|
}
|
|
495
|
-
|
|
630
|
+
_context9.next = 43;
|
|
496
631
|
return this.loadListFromServer();
|
|
497
632
|
case 43:
|
|
498
|
-
list =
|
|
633
|
+
list = _context9.sent;
|
|
499
634
|
this.replaceStore(list);
|
|
500
635
|
changed = true;
|
|
501
|
-
|
|
636
|
+
_context9.next = 70;
|
|
502
637
|
break;
|
|
503
638
|
case 48:
|
|
504
639
|
if (!(partialIds.size > 0)) {
|
|
505
|
-
|
|
640
|
+
_context9.next = 70;
|
|
506
641
|
break;
|
|
507
642
|
}
|
|
508
643
|
fetched = [];
|
|
509
644
|
_iterator4 = _createForOfIteratorHelper(partialIds);
|
|
510
|
-
|
|
645
|
+
_context9.prev = 51;
|
|
511
646
|
_iterator4.s();
|
|
512
647
|
case 53:
|
|
513
648
|
if ((_step4 = _iterator4.n()).done) {
|
|
514
|
-
|
|
649
|
+
_context9.next = 61;
|
|
515
650
|
break;
|
|
516
651
|
}
|
|
517
652
|
id = _step4.value;
|
|
518
|
-
|
|
653
|
+
_context9.next = 57;
|
|
519
654
|
return this.fetchByIdFromServer(id);
|
|
520
655
|
case 57:
|
|
521
|
-
one =
|
|
656
|
+
one = _context9.sent;
|
|
522
657
|
if (one) fetched.push(one);
|
|
523
658
|
case 59:
|
|
524
|
-
|
|
659
|
+
_context9.next = 53;
|
|
525
660
|
break;
|
|
526
661
|
case 61:
|
|
527
|
-
|
|
662
|
+
_context9.next = 66;
|
|
528
663
|
break;
|
|
529
664
|
case 63:
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
_iterator4.e(
|
|
665
|
+
_context9.prev = 63;
|
|
666
|
+
_context9.t1 = _context9["catch"](51);
|
|
667
|
+
_iterator4.e(_context9.t1);
|
|
533
668
|
case 66:
|
|
534
|
-
|
|
669
|
+
_context9.prev = 66;
|
|
535
670
|
_iterator4.f();
|
|
536
|
-
return
|
|
671
|
+
return _context9.finish(66);
|
|
537
672
|
case 69:
|
|
538
673
|
if (fetched.length > 0) {
|
|
539
674
|
this.mergeItems(fetched);
|
|
540
675
|
changed = true;
|
|
541
676
|
}
|
|
542
677
|
case 70:
|
|
543
|
-
if (changed) {
|
|
544
|
-
|
|
545
|
-
|
|
678
|
+
if (!changed) {
|
|
679
|
+
_context9.next = 75;
|
|
680
|
+
break;
|
|
546
681
|
}
|
|
547
|
-
|
|
682
|
+
_context9.next = 73;
|
|
683
|
+
return this.saveListToSQLite(this.store.list);
|
|
684
|
+
case 73:
|
|
685
|
+
this.core.effects.emit(FloorPlanHooks.onFloorPlansChanged, this.getSortedList());
|
|
686
|
+
this.core.effects.emit(FloorPlanHooks.onFloorPlanSyncCompleted, null);
|
|
687
|
+
case 75:
|
|
548
688
|
case "end":
|
|
549
|
-
return
|
|
689
|
+
return _context9.stop();
|
|
550
690
|
}
|
|
551
|
-
},
|
|
691
|
+
}, _callee9, this, [[11, 31, 34, 37], [51, 63, 66, 69]]);
|
|
552
692
|
}));
|
|
553
693
|
function processFloorPlanSyncMessages() {
|
|
554
694
|
return _processFloorPlanSyncMessages.apply(this, arguments);
|
|
@@ -558,18 +698,20 @@ export var FloorPlanModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
558
698
|
}, {
|
|
559
699
|
key: "clear",
|
|
560
700
|
value: function () {
|
|
561
|
-
var _clear = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
562
|
-
return _regeneratorRuntime().wrap(function
|
|
563
|
-
while (1) switch (
|
|
701
|
+
var _clear = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10() {
|
|
702
|
+
return _regeneratorRuntime().wrap(function _callee10$(_context10) {
|
|
703
|
+
while (1) switch (_context10.prev = _context10.next) {
|
|
564
704
|
case 0:
|
|
565
705
|
this.store.list = [];
|
|
566
706
|
this.store.map.clear();
|
|
567
707
|
this.store.codeMap.clear();
|
|
568
|
-
|
|
708
|
+
_context10.next = 5;
|
|
709
|
+
return this.saveListToSQLite([]);
|
|
710
|
+
case 5:
|
|
569
711
|
case "end":
|
|
570
|
-
return
|
|
712
|
+
return _context10.stop();
|
|
571
713
|
}
|
|
572
|
-
},
|
|
714
|
+
}, _callee10, this);
|
|
573
715
|
}));
|
|
574
716
|
function clear() {
|
|
575
717
|
return _clear.apply(this, arguments);
|