@pisell/pisellos 0.0.569 → 0.10.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.
Files changed (328) hide show
  1. package/dist/core/index.js +10 -6
  2. package/dist/index.d.ts +0 -1
  3. package/dist/index.js +0 -3
  4. package/dist/model/strategy/adapter/promotion/index.js +9 -0
  5. package/dist/model/strategy/adapter/walletPass/evaluator.js +7 -5
  6. package/dist/model/strategy/adapter/walletPass/example.js +26 -3
  7. package/dist/model/strategy/adapter/walletPass/index.js +5 -5
  8. package/dist/model/strategy/adapter/walletPass/type.d.ts +0 -3
  9. package/dist/model/strategy/adapter/walletPass/utils.d.ts +0 -26
  10. package/dist/model/strategy/adapter/walletPass/utils.js +17 -92
  11. package/dist/model/strategy/strategy-example.js +19 -5
  12. package/dist/modules/BaseModule.d.ts +1 -1
  13. package/dist/modules/BaseModule.js +8 -10
  14. package/dist/modules/Cart/index.js +3 -0
  15. package/dist/modules/Cart/utils/cartProduct.js +1 -0
  16. package/dist/modules/Cart/utils/cartResource.js +0 -2
  17. package/dist/modules/Cart/utils/changePrice.js +9 -16
  18. package/dist/modules/Date/index.js +5 -1
  19. package/dist/modules/Discount/index.d.ts +0 -1
  20. package/dist/modules/Discount/index.js +7 -22
  21. package/dist/modules/Discount/types.d.ts +0 -1
  22. package/dist/modules/OpenData/index.js +2 -0
  23. package/dist/modules/Order/index.js +70 -40
  24. package/dist/modules/Payment/index.js +162 -97
  25. package/dist/modules/Payment/types.d.ts +4 -8
  26. package/dist/modules/Payment/walletpass.d.ts +0 -2
  27. package/dist/modules/Payment/walletpass.js +5 -4
  28. package/dist/modules/ProductList/index.d.ts +1 -1
  29. package/dist/modules/ProductList/index.js +3 -12
  30. package/dist/modules/ProductList/types.d.ts +0 -1
  31. package/dist/modules/Rules/index.js +126 -427
  32. package/dist/modules/SalesSummary/utils.js +1 -2
  33. package/dist/modules/Schedule/getDateIsInSchedule.js +0 -5
  34. package/dist/modules/Schedule/index.js +1 -0
  35. package/dist/modules/Schedule/utils.js +1 -0
  36. package/dist/modules/Step/index.js +1 -0
  37. package/dist/modules/Summary/utils.js +22 -43
  38. package/dist/plugins/request.js +4 -1
  39. package/dist/plugins/window.js +6 -2
  40. package/dist/server/index.js +129 -97
  41. package/dist/server/modules/menu/index.js +41 -32
  42. package/dist/server/modules/order/index.js +4 -2
  43. package/dist/server/modules/products/index.js +42 -24
  44. package/dist/server/modules/quotation/index.js +38 -29
  45. package/dist/server/modules/resource/index.js +4 -3
  46. package/dist/server/modules/schedule/index.js +35 -27
  47. package/dist/server/utils/product.js +1 -0
  48. package/dist/solution/BaseSales/index.js +41 -38
  49. package/dist/solution/BookingByStep/index.d.ts +1 -1
  50. package/dist/solution/BookingByStep/index.js +60 -11
  51. package/dist/solution/BookingByStep/utils/capacity.js +11 -1
  52. package/dist/solution/BookingByStep/utils/resources.js +3 -1
  53. package/dist/solution/BookingByStep/utils/timeslots.js +43 -2
  54. package/dist/solution/BookingTicket/index.d.ts +1 -1
  55. package/dist/solution/BookingTicket/index.js +2 -0
  56. package/dist/solution/BookingTicket/utils/scan/cloudSearch.js +7 -6
  57. package/dist/solution/BookingTicket/utils/scan/handleScan.js +31 -25
  58. package/dist/solution/BookingTicket/utils/scan/index.js +10 -6
  59. package/dist/solution/BuyTickets/index.js +12 -9
  60. package/dist/solution/Checkout/index.js +252 -177
  61. package/dist/solution/Checkout/utils/index.js +16 -4
  62. package/dist/solution/RegisterAndLogin/index.js +76 -30
  63. package/dist/solution/ScanOrder/index.js +60 -50
  64. package/dist/solution/ShopDiscount/index.js +14 -15
  65. package/dist/solution/ShopDiscount/types.d.ts +4 -5
  66. package/dist/solution/ShopDiscount/utils.d.ts +0 -9
  67. package/dist/solution/ShopDiscount/utils.js +0 -9
  68. package/dist/solution/VenueBooking/index.d.ts +3 -31
  69. package/dist/solution/VenueBooking/index.js +496 -651
  70. package/dist/solution/VenueBooking/types.d.ts +1 -3
  71. package/dist/solution/VenueBooking/types.js +0 -1
  72. package/dist/solution/VenueBooking/utils/dateSummary.d.ts +2 -2
  73. package/dist/solution/VenueBooking/utils/dateSummary.js +25 -12
  74. package/dist/solution/VenueBooking/utils/timeSlot.d.ts +0 -2
  75. package/dist/solution/VenueBooking/utils/timeSlot.js +4 -9
  76. package/dist/types/index.d.ts +1 -1
  77. package/dist/utils/task.js +18 -15
  78. package/dist/utils/watch.js +1 -0
  79. package/lib/apis/picoding.js +0 -2
  80. package/lib/core/index.js +132 -130
  81. package/lib/effects/index.js +57 -46
  82. package/lib/index.d.ts +0 -1
  83. package/lib/index.js +50 -92
  84. package/lib/model/index.js +21 -14
  85. package/lib/model/strategy/adapter/dataVariant/adapter.js +50 -38
  86. package/lib/model/strategy/adapter/dataVariant/evaluator.js +236 -162
  87. package/lib/model/strategy/adapter/dataVariant/examples.js +237 -229
  88. package/lib/model/strategy/adapter/dataVariant/index.js +34 -39
  89. package/lib/model/strategy/adapter/dataVariant/type.js +28 -57
  90. package/lib/model/strategy/adapter/index.js +64 -100
  91. package/lib/model/strategy/adapter/itemRule/adapter.js +144 -156
  92. package/lib/model/strategy/adapter/itemRule/evaluator.js +48 -36
  93. package/lib/model/strategy/adapter/itemRule/examples.js +225 -295
  94. package/lib/model/strategy/adapter/itemRule/index.js +57 -83
  95. package/lib/model/strategy/adapter/itemRule/type.js +36 -97
  96. package/lib/model/strategy/adapter/promotion/adapter.js +63 -84
  97. package/lib/model/strategy/adapter/promotion/evaluator.js +231 -381
  98. package/lib/model/strategy/adapter/promotion/examples.js +159 -139
  99. package/lib/model/strategy/adapter/promotion/index.js +49 -1
  100. package/lib/model/strategy/adapter/promotion/type.js +35 -199
  101. package/lib/model/strategy/adapter/type.js +16 -4
  102. package/lib/model/strategy/adapter/walletPass/evaluator.js +152 -180
  103. package/lib/model/strategy/adapter/walletPass/example.js +190 -217
  104. package/lib/model/strategy/adapter/walletPass/index.js +51 -75
  105. package/lib/model/strategy/adapter/walletPass/locales.js +58 -36
  106. package/lib/model/strategy/adapter/walletPass/type.d.ts +0 -3
  107. package/lib/model/strategy/adapter/walletPass/type.js +16 -4
  108. package/lib/model/strategy/adapter/walletPass/utils.d.ts +0 -26
  109. package/lib/model/strategy/adapter/walletPass/utils.js +383 -678
  110. package/lib/model/strategy/engine.js +168 -270
  111. package/lib/model/strategy/index.js +34 -49
  112. package/lib/model/strategy/strategy-example.js +239 -243
  113. package/lib/model/strategy/type.js +40 -100
  114. package/lib/modules/Account/index.js +53 -39
  115. package/lib/modules/Account/types.js +33 -20
  116. package/lib/modules/AccountList/index.js +154 -116
  117. package/lib/modules/AccountList/types.js +31 -30
  118. package/lib/modules/AccountList/utils.js +30 -18
  119. package/lib/modules/BaseModule.d.ts +1 -1
  120. package/lib/modules/BaseModule.js +46 -25
  121. package/lib/modules/BookingContext/index.js +136 -158
  122. package/lib/modules/BookingContext/types.js +32 -46
  123. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +143 -131
  124. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +82 -75
  125. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +150 -170
  126. package/lib/modules/BookingContext/utils/flexible.js +55 -38
  127. package/lib/modules/BookingContext/utils/formatResourceList.js +34 -19
  128. package/lib/modules/BookingContext/utils/index.js +41 -124
  129. package/lib/modules/BookingContext/utils/noResource.js +70 -58
  130. package/lib/modules/BookingContext/utils/orderLineDisplay.js +41 -14
  131. package/lib/modules/BookingContext/utils/productExtend.js +155 -202
  132. package/lib/modules/BookingContext/utils/resourceErrors.js +53 -53
  133. package/lib/modules/BookingContext/utils/resourceSelection.js +41 -19
  134. package/lib/modules/BookingContext/utils/resources.js +167 -209
  135. package/lib/modules/BookingContext/utils/serviceTimes.js +116 -115
  136. package/lib/modules/BookingContext/utils/timeSlices.js +80 -70
  137. package/lib/modules/Cart/index.js +124 -170
  138. package/lib/modules/Cart/types.js +51 -46
  139. package/lib/modules/Cart/utils/cartAccount.js +39 -40
  140. package/lib/modules/Cart/utils/cartDate.js +61 -56
  141. package/lib/modules/Cart/utils/cartDiscount.js +33 -28
  142. package/lib/modules/Cart/utils/cartNote.js +32 -27
  143. package/lib/modules/Cart/utils/cartProduct.js +251 -321
  144. package/lib/modules/Cart/utils/cartRelationForms.js +35 -29
  145. package/lib/modules/Cart/utils/cartResource.js +78 -72
  146. package/lib/modules/Cart/utils/changePrice.js +50 -28
  147. package/lib/modules/Cart/utils/index.js +48 -106
  148. package/lib/modules/Customer/constants.js +34 -13
  149. package/lib/modules/Customer/index.js +169 -232
  150. package/lib/modules/Customer/types.js +35 -38
  151. package/lib/modules/Date/index.js +115 -116
  152. package/lib/modules/Date/types.js +28 -16
  153. package/lib/modules/Date/utils.js +123 -174
  154. package/lib/modules/Discount/index.d.ts +0 -1
  155. package/lib/modules/Discount/index.js +128 -130
  156. package/lib/modules/Discount/types.d.ts +0 -1
  157. package/lib/modules/Discount/types.js +31 -9
  158. package/lib/modules/Guests/index.js +56 -30
  159. package/lib/modules/Guests/types.js +33 -23
  160. package/lib/modules/Holder/index.js +189 -209
  161. package/lib/modules/Holder/types.js +16 -4
  162. package/lib/modules/Holder/utils.js +49 -20
  163. package/lib/modules/OpenData/index.js +76 -69
  164. package/lib/modules/OpenData/types.js +16 -4
  165. package/lib/modules/OpenData/utils.js +78 -44
  166. package/lib/modules/Order/index.js +1909 -1572
  167. package/lib/modules/Order/types.js +35 -78
  168. package/lib/modules/Order/utils/bundleDiscountHydration.js +74 -41
  169. package/lib/modules/Order/utils/manualProductDiscount.js +123 -124
  170. package/lib/modules/Order/utils/orderCollectionIdentity.js +210 -148
  171. package/lib/modules/Order/utils.js +634 -799
  172. package/lib/modules/Payment/cash.js +33 -20
  173. package/lib/modules/Payment/cashRecommendationAlgorithm.js +76 -145
  174. package/lib/modules/Payment/eftpos.js +30 -16
  175. package/lib/modules/Payment/index.js +378 -518
  176. package/lib/modules/Payment/mx51.js +0 -1
  177. package/lib/modules/Payment/types.d.ts +4 -8
  178. package/lib/modules/Payment/types.js +107 -216
  179. package/lib/modules/Payment/utils.js +48 -51
  180. package/lib/modules/Payment/walletpass.d.ts +0 -2
  181. package/lib/modules/Payment/walletpass.js +211 -226
  182. package/lib/modules/Product/index.js +46 -51
  183. package/lib/modules/Product/types.js +16 -4
  184. package/lib/modules/Product/utils.js +33 -32
  185. package/lib/modules/ProductList/index.d.ts +1 -1
  186. package/lib/modules/ProductList/index.js +117 -117
  187. package/lib/modules/ProductList/types.d.ts +0 -1
  188. package/lib/modules/ProductList/types.js +31 -9
  189. package/lib/modules/Quotation/index.js +100 -66
  190. package/lib/modules/Quotation/types.js +16 -4
  191. package/lib/modules/Resource/index.js +59 -27
  192. package/lib/modules/Resource/types.js +32 -22
  193. package/lib/modules/Resource/utils.js +38 -30
  194. package/lib/modules/ResourcePlanner/index.js +61 -60
  195. package/lib/modules/ResourcePlanner/planner.js +384 -346
  196. package/lib/modules/ResourcePlanner/types.js +16 -4
  197. package/lib/modules/Rules/index.js +903 -1475
  198. package/lib/modules/Rules/types.js +40 -17
  199. package/lib/modules/SalesSummary/index.js +90 -85
  200. package/lib/modules/SalesSummary/types.js +16 -4
  201. package/lib/modules/SalesSummary/utils.js +427 -351
  202. package/lib/modules/ScanOrderLogger/index.js +79 -59
  203. package/lib/modules/ScanOrderLogger/providers/feishu.js +78 -54
  204. package/lib/modules/ScanOrderLogger/providers/grafana.js +36 -13
  205. package/lib/modules/ScanOrderLogger/types.js +16 -4
  206. package/lib/modules/Schedule/getDateIsInSchedule.js +163 -339
  207. package/lib/modules/Schedule/index.js +114 -100
  208. package/lib/modules/Schedule/type.js +16 -4
  209. package/lib/modules/Schedule/types.js +16 -4
  210. package/lib/modules/Schedule/utils.js +291 -433
  211. package/lib/modules/Step/index.js +52 -40
  212. package/lib/modules/Step/tyeps.js +16 -4
  213. package/lib/modules/Summary/index.js +71 -66
  214. package/lib/modules/Summary/types.js +16 -4
  215. package/lib/modules/Summary/utils.js +418 -791
  216. package/lib/modules/SurchargeList/index.js +60 -46
  217. package/lib/modules/SurchargeList/types.js +16 -4
  218. package/lib/modules/index.js +63 -245
  219. package/lib/plugins/app.js +16 -4
  220. package/lib/plugins/index.js +25 -36
  221. package/lib/plugins/request.js +126 -137
  222. package/lib/plugins/shopStore.js +16 -4
  223. package/lib/plugins/user.js +16 -4
  224. package/lib/plugins/window.js +179 -171
  225. package/lib/server/index.js +2337 -2675
  226. package/lib/server/modules/floor-plan/index.js +123 -102
  227. package/lib/server/modules/floor-plan/types.js +30 -15
  228. package/lib/server/modules/index.js +68 -106
  229. package/lib/server/modules/menu/index.js +122 -146
  230. package/lib/server/modules/menu/types.js +31 -18
  231. package/lib/server/modules/order/index.js +642 -567
  232. package/lib/server/modules/order/types.js +32 -117
  233. package/lib/server/modules/order/utils/filterBookings.js +194 -219
  234. package/lib/server/modules/order/utils/filterOrders.js +92 -118
  235. package/lib/server/modules/payment/index.js +83 -59
  236. package/lib/server/modules/payment/types.js +16 -4
  237. package/lib/server/modules/products/index.js +459 -575
  238. package/lib/server/modules/products/types.js +34 -44
  239. package/lib/server/modules/quotation/index.js +172 -137
  240. package/lib/server/modules/quotation/types.js +31 -21
  241. package/lib/server/modules/resource/index.js +184 -213
  242. package/lib/server/modules/resource/types.js +33 -42
  243. package/lib/server/modules/schedule/index.js +123 -135
  244. package/lib/server/modules/schedule/types.js +21 -14
  245. package/lib/server/modules/schedule/utils.js +163 -334
  246. package/lib/server/types.js +16 -4
  247. package/lib/server/utils/index.js +23 -25
  248. package/lib/server/utils/product.js +139 -196
  249. package/lib/server/utils/schedule.js +41 -34
  250. package/lib/server/utils/small-ticket.js +456 -478
  251. package/lib/server/utils/time.js +49 -40
  252. package/lib/solution/BaseSales/index.js +1016 -850
  253. package/lib/solution/BaseSales/types.js +37 -41
  254. package/lib/solution/BaseSales/utils/cartPromotion.js +460 -611
  255. package/lib/solution/BaseSales/utils/parseSalesResponse.js +105 -85
  256. package/lib/solution/BaseSales/utils/quotationPrice.js +114 -56
  257. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +143 -102
  258. package/lib/solution/BaseSales/utils.js +140 -155
  259. package/lib/solution/BookingByStep/index.d.ts +1 -1
  260. package/lib/solution/BookingByStep/index.js +1340 -1530
  261. package/lib/solution/BookingByStep/types.js +99 -40
  262. package/lib/solution/BookingByStep/utils/capacity.js +160 -192
  263. package/lib/solution/BookingByStep/utils/products.js +52 -42
  264. package/lib/solution/BookingByStep/utils/resources.js +330 -527
  265. package/lib/solution/BookingByStep/utils/stock.js +44 -65
  266. package/lib/solution/BookingByStep/utils/timeslots.js +131 -129
  267. package/lib/solution/BookingTicket/index.d.ts +1 -1
  268. package/lib/solution/BookingTicket/index.js +459 -543
  269. package/lib/solution/BookingTicket/types.js +77 -99
  270. package/lib/solution/BookingTicket/utils/addProductDecision.js +184 -219
  271. package/lib/solution/BookingTicket/utils/addTimeAvailability.js +89 -58
  272. package/lib/solution/BookingTicket/utils/bookingStatus.js +78 -107
  273. package/lib/solution/BookingTicket/utils/cartView.js +94 -110
  274. package/lib/solution/BookingTicket/utils/exampleData.js +0 -185
  275. package/lib/solution/BookingTicket/utils/orderCustomer.js +41 -18
  276. package/lib/solution/BookingTicket/utils/resolveBestAddTimePlan.js +86 -219
  277. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.js +93 -144
  278. package/lib/solution/BookingTicket/utils/scan/cloudSearch.js +91 -79
  279. package/lib/solution/BookingTicket/utils/scan/formatGlobalScan.js +41 -54
  280. package/lib/solution/BookingTicket/utils/scan/handleScan.js +81 -84
  281. package/lib/solution/BookingTicket/utils/scan/index.js +104 -98
  282. package/lib/solution/BookingTicket/utils/scan/scanCache.js +43 -90
  283. package/lib/solution/BookingTicket/utils/scan/scanProductValues.js +64 -52
  284. package/lib/solution/BookingTicket/utils/sessionCatalogStale.js +58 -56
  285. package/lib/solution/BuyTickets/index.js +70 -67
  286. package/lib/solution/BuyTickets/types.js +38 -22
  287. package/lib/solution/Checkout/index.js +1158 -1451
  288. package/lib/solution/Checkout/types.js +61 -91
  289. package/lib/solution/Checkout/utils/index.js +156 -228
  290. package/lib/solution/PlaceOrder/index.js +0 -55
  291. package/lib/solution/RegisterAndLogin/config.js +460 -493
  292. package/lib/solution/RegisterAndLogin/index.js +630 -633
  293. package/lib/solution/RegisterAndLogin/types.js +76 -189
  294. package/lib/solution/RegisterAndLogin/utils.js +125 -183
  295. package/lib/solution/Sales/index.js +320 -317
  296. package/lib/solution/Sales/types.js +33 -27
  297. package/lib/solution/ScanOrder/index.js +862 -831
  298. package/lib/solution/ScanOrder/types.js +34 -33
  299. package/lib/solution/ScanOrder/utils.js +371 -406
  300. package/lib/solution/ShopDiscount/index.js +233 -235
  301. package/lib/solution/ShopDiscount/types.d.ts +4 -5
  302. package/lib/solution/ShopDiscount/types.js +37 -15
  303. package/lib/solution/ShopDiscount/utils.d.ts +0 -9
  304. package/lib/solution/ShopDiscount/utils.js +172 -309
  305. package/lib/solution/UnifiedBookingSales/index.js +405 -379
  306. package/lib/solution/UnifiedBookingSales/types.js +31 -12
  307. package/lib/solution/VenueBooking/index.d.ts +3 -31
  308. package/lib/solution/VenueBooking/index.js +916 -967
  309. package/lib/solution/VenueBooking/types.d.ts +1 -3
  310. package/lib/solution/VenueBooking/types.js +39 -20
  311. package/lib/solution/VenueBooking/utils/dateSummary.d.ts +2 -2
  312. package/lib/solution/VenueBooking/utils/dateSummary.js +62 -25
  313. package/lib/solution/VenueBooking/utils/resource.js +54 -31
  314. package/lib/solution/VenueBooking/utils/slotMerge.js +107 -94
  315. package/lib/solution/VenueBooking/utils/timeSlot.d.ts +0 -2
  316. package/lib/solution/VenueBooking/utils/timeSlot.js +133 -138
  317. package/lib/solution/VenueBooking/utils.js +67 -130
  318. package/lib/solution/index.js +41 -124
  319. package/lib/store/createStore.js +29 -32
  320. package/lib/types/index.d.ts +1 -1
  321. package/lib/types/index.js +16 -4
  322. package/lib/utils/task.js +36 -36
  323. package/lib/utils/watch.js +47 -81
  324. package/package.json +2 -4
  325. package/dist/solution/VenueBooking/utils/smartPricing.d.ts +0 -70
  326. package/dist/solution/VenueBooking/utils/smartPricing.js +0 -233
  327. package/lib/solution/VenueBooking/utils/smartPricing.d.ts +0 -70
  328. package/lib/solution/VenueBooking/utils/smartPricing.js +0 -192
@@ -1,55 +1,70 @@
1
- "use strict";
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
2
18
 
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
19
+ // src/modules/AccountList/index.ts
20
+ var AccountList_exports = {};
21
+ __export(AccountList_exports, {
22
+ AccountListModule: () => AccountListModule
5
23
  });
6
- exports.AccountListModule = void 0;
7
- var _lodashEs = require("lodash-es");
8
- var _Account = require("../Account");
9
- var _BaseModule = require("../BaseModule");
10
- var _types = require("./types");
11
- var _utils = require("./utils");
12
- class AccountListModule extends _BaseModule.BaseModule {
13
- defaultName = 'accountList';
14
- defaultVersion = '1.0.0';
15
- store = {
16
- accountList: [],
17
- // 账号的纯数据列表
18
- accounts: [],
19
- // 账号的 module 列表
20
- isLoading: false,
21
- error: null
22
- };
23
- request;
24
- cacheId;
25
- openCache = false;
26
- fatherModule;
24
+ module.exports = __toCommonJS(AccountList_exports);
25
+ var import_lodash_es = require("lodash-es");
26
+ var import_Account = require("../Account");
27
+ var import_BaseModule = require("../BaseModule");
28
+ var import_types = require("./types");
29
+ var import_utils = require("./utils");
30
+ var AccountListModule = class extends import_BaseModule.BaseModule {
27
31
  constructor(name, version) {
28
32
  super(name, version);
33
+ this.defaultName = "accountList";
34
+ this.defaultVersion = "1.0.0";
35
+ this.store = {
36
+ accountList: [],
37
+ // 账号的纯数据列表
38
+ accounts: [],
39
+ // 账号的 module 列表
40
+ isLoading: false,
41
+ error: null
42
+ };
43
+ this.openCache = false;
29
44
  }
30
45
  async initialize(core, options) {
46
+ var _a, _b, _c;
31
47
  this.core = core;
32
- this.store = options?.store;
33
- this.request = this.core.getPlugin('request');
34
- if (Array.isArray(options?.initialState?.accountList)) {
35
- const recordList = (0, _lodashEs.cloneDeep)(options.initialState.accountList || []);
48
+ this.store = options == null ? void 0 : options.store;
49
+ this.request = this.core.getPlugin("request");
50
+ if (Array.isArray((_a = options == null ? void 0 : options.initialState) == null ? void 0 : _a.accountList)) {
51
+ const recordList = (0, import_lodash_es.cloneDeep)(options.initialState.accountList || []);
36
52
  this.store.accounts = [];
37
- recordList.forEach(account => {
53
+ recordList.forEach((account) => {
38
54
  this.addAccount(account);
39
55
  });
40
56
  } else {
41
57
  this.store.accounts = [];
42
58
  this.store.accountList = [];
43
59
  }
44
- if (options?.otherParams?.cacheId) {
60
+ if ((_b = options == null ? void 0 : options.otherParams) == null ? void 0 : _b.cacheId) {
45
61
  this.openCache = options.otherParams.openCache;
46
62
  this.cacheId = options.otherParams.cacheId;
47
63
  }
48
- if (options?.otherParams?.fatherModule) {
64
+ if ((_c = options == null ? void 0 : options.otherParams) == null ? void 0 : _c.fatherModule) {
49
65
  this.fatherModule = options.otherParams.fatherModule;
50
66
  }
51
67
  }
52
-
53
68
  /**
54
69
  * 创建账号并添加到列表中
55
70
  * @param account 账号信息
@@ -57,28 +72,32 @@ class AccountListModule extends _BaseModule.BaseModule {
57
72
  * @param type 添加类型
58
73
  */
59
74
  async createAccountAndAdd(account, needEmit = true, type) {
60
- const tempAccountModule = this.store.accounts.find(a => a.getId() === account.id);
61
- // 如果账号已经存在,则直接返回
75
+ const tempAccountModule = this.store.accounts.find(
76
+ (a) => a.getId() === account.id
77
+ );
62
78
  if (tempAccountModule) {
63
79
  return tempAccountModule;
64
80
  }
65
- const newAccountList = [...(this.store.accountList || [])];
66
- if (type === 'unshift') {
81
+ const newAccountList = [...this.store.accountList || []];
82
+ if (type === "unshift") {
67
83
  newAccountList.unshift(account);
68
84
  } else {
69
85
  newAccountList.push(account);
70
86
  }
71
87
  this.store.accountList = newAccountList;
72
- const accountModule = new _Account.AccountModule(`account_${account.id}`);
88
+ const accountModule = new import_Account.AccountModule(`account_${account.id}`);
73
89
  this.core.registerModule(accountModule);
74
90
  accountModule.setAccountInfo(account);
75
- if (type === 'unshift') {
76
- this.store.accounts = [accountModule, ...(this.store.accounts || [])];
91
+ if (type === "unshift") {
92
+ this.store.accounts = [accountModule, ...this.store.accounts || []];
77
93
  } else {
78
- this.store.accounts = [...(this.store.accounts || []), accountModule];
94
+ this.store.accounts = [...this.store.accounts || [], accountModule];
79
95
  }
80
96
  if (needEmit) {
81
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListUpdate, this.store);
97
+ await this.core.effects.emit(
98
+ import_types.AccountListHooks.OnAccountListUpdate,
99
+ this.store
100
+ );
82
101
  }
83
102
  return accountModule;
84
103
  }
@@ -87,24 +106,32 @@ class AccountListModule extends _BaseModule.BaseModule {
87
106
  try {
88
107
  this.store.isLoading = true;
89
108
  this.store.error = null;
90
- if (this.store.accounts.some(a => a.getId() === account.id)) {
91
- currentAccountModule = this.store.accounts.find(n => n.getId() === account.id);
109
+ if (this.store.accounts.some((a) => a.getId() === account.id)) {
110
+ currentAccountModule = this.store.accounts.find(
111
+ (n) => n.getId() === account.id
112
+ );
92
113
  throw new Error(`Account with id ${account.id} already exists`);
93
114
  }
94
115
  this.store.accountList.push(account);
95
- const accountModule = new _Account.AccountModule(`account_${account.id}`);
116
+ const accountModule = new import_Account.AccountModule(`account_${account.id}`);
96
117
  this.core.registerModule(accountModule);
97
118
  accountModule.setAccountInfo(account);
98
- this.store.accounts = [...(this.store.accounts || []), accountModule];
119
+ this.store.accounts = [...this.store.accounts || [], accountModule];
99
120
  if (this.store.accounts.length === 1) {
100
121
  this.setActiveAccount(accountModule.getId());
101
122
  }
102
123
  currentAccountModule = accountModule;
103
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListUpdate, this.store);
124
+ await this.core.effects.emit(
125
+ import_types.AccountListHooks.OnAccountListUpdate,
126
+ this.store
127
+ );
104
128
  } catch (error) {
105
129
  console.error(error);
106
- this.store.error = error instanceof Error ? error.message : 'Failed to add account';
107
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListError, this.store.error);
130
+ this.store.error = error instanceof Error ? error.message : "Failed to add account";
131
+ await this.core.effects.emit(
132
+ import_types.AccountListHooks.OnAccountListError,
133
+ this.store.error
134
+ );
108
135
  } finally {
109
136
  this.store.isLoading = false;
110
137
  return currentAccountModule;
@@ -119,80 +146,99 @@ class AccountListModule extends _BaseModule.BaseModule {
119
146
  throw new Error(`Account with id ${id} not found`);
120
147
  }
121
148
  account.setAccountInfo(updates);
122
- // this.store.accountList.forEach(account => {
123
- // if (account.id === id) {
124
- // Object.assign(account, updates)
125
- // }
126
- // })
127
- const index = this.store.accountList.findIndex(account => account.id === id);
149
+ const index = this.store.accountList.findIndex(
150
+ (account2) => account2.id === id
151
+ );
128
152
  if (index !== -1) {
129
153
  this.store.accountList[index] = updates;
130
154
  }
131
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListUpdate, this.store);
155
+ await this.core.effects.emit(
156
+ import_types.AccountListHooks.OnAccountListUpdate,
157
+ this.store
158
+ );
132
159
  } catch (error) {
133
- this.store.error = error instanceof Error ? error.message : 'Failed to update account';
134
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListError, this.store.error);
160
+ this.store.error = error instanceof Error ? error.message : "Failed to update account";
161
+ await this.core.effects.emit(
162
+ import_types.AccountListHooks.OnAccountListError,
163
+ this.store.error
164
+ );
135
165
  } finally {
136
166
  this.store.isLoading = false;
137
167
  }
138
168
  }
139
169
  async updateAccountListById(id, updates) {
140
- this.store.accountList = this.store.accountList.map(account => {
170
+ this.store.accountList = this.store.accountList.map((account) => {
141
171
  if (account.id === id) {
142
172
  return updates;
143
173
  }
144
174
  return account;
145
175
  });
146
176
  this.core.effects.emit(`${this.name}:changed`, {
147
- path: 'accounts',
177
+ path: "accounts",
148
178
  value: this.store.accountList
149
179
  });
150
180
  }
151
181
  async removeAccount(id) {
182
+ var _a;
152
183
  try {
153
184
  this.store.isLoading = true;
154
185
  this.store.error = null;
155
- const index = this.store.accounts.findIndex(a => a.getId() === id);
186
+ const index = this.store.accounts.findIndex((a) => a.getId() === id);
156
187
  if (index === -1) {
157
188
  throw new Error(`Account with id ${id} not found`);
158
189
  }
159
190
  this.store.accounts[index].destroy();
160
- this.store.accounts = [...(this.store.accounts || []).slice(0, index), ...(this.store.accounts || []).slice(index + 1)];
161
- this.store.accountList = this.store.accountList.filter(account => account.id !== id);
162
-
163
- // 检测 如果被删除的是活跃账号,则默认把第一个账号设置为 activeAccount
164
- if (!this.getActiveAccount() || this.getActiveAccount()?.getId() === id || this.store.accounts.length === 1) {
191
+ this.store.accounts = [
192
+ ...(this.store.accounts || []).slice(0, index),
193
+ ...(this.store.accounts || []).slice(index + 1)
194
+ ];
195
+ this.store.accountList = this.store.accountList.filter(
196
+ (account) => account.id !== id
197
+ );
198
+ if (!this.getActiveAccount() || ((_a = this.getActiveAccount()) == null ? void 0 : _a.getId()) === id || this.store.accounts.length === 1) {
165
199
  this.setActiveAccount(this.store.accounts[0].getId());
166
200
  }
167
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListUpdate, this.store);
201
+ await this.core.effects.emit(
202
+ import_types.AccountListHooks.OnAccountListUpdate,
203
+ this.store
204
+ );
168
205
  } catch (error) {
169
- this.store.error = error instanceof Error ? error.message : 'Failed to remove account';
170
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListError, this.store.error);
206
+ this.store.error = error instanceof Error ? error.message : "Failed to remove account";
207
+ await this.core.effects.emit(
208
+ import_types.AccountListHooks.OnAccountListError,
209
+ this.store.error
210
+ );
171
211
  } finally {
172
212
  this.store.isLoading = false;
173
213
  }
174
214
  }
175
215
  getAccounts() {
176
- return [...(this.store.accounts || [])];
216
+ return [...this.store.accounts || []];
177
217
  }
178
218
  getAccount(id) {
179
- return this.store.accounts.find(account => account.getId() === id) || null;
219
+ return this.store.accounts.find((account) => account.getId() === id) || null;
180
220
  }
181
221
  async clearAccounts() {
182
222
  try {
183
223
  this.store.isLoading = true;
184
224
  this.store.error = null;
185
225
  this.store.accounts = [];
186
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListUpdate, this.store);
226
+ await this.core.effects.emit(
227
+ import_types.AccountListHooks.OnAccountListUpdate,
228
+ this.store
229
+ );
187
230
  } catch (error) {
188
- this.store.error = error instanceof Error ? error.message : 'Failed to clear accounts';
189
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListError, this.store.error);
231
+ this.store.error = error instanceof Error ? error.message : "Failed to clear accounts";
232
+ await this.core.effects.emit(
233
+ import_types.AccountListHooks.OnAccountListError,
234
+ this.store.error
235
+ );
190
236
  } finally {
191
237
  this.store.isLoading = false;
192
238
  }
193
239
  }
194
240
  setActiveAccount(id) {
195
- this.store.accounts.forEach(account => {
241
+ this.store.accounts.forEach((account) => {
196
242
  if (account.getId() === id) {
197
243
  account.setActive(true);
198
244
  } else {
@@ -201,93 +247,82 @@ class AccountListModule extends _BaseModule.BaseModule {
201
247
  });
202
248
  }
203
249
  getActiveAccount() {
204
- return this.store.accounts.find(account => account.isActive()) || null;
250
+ return this.store.accounts.find((account) => account.isActive()) || null;
205
251
  }
206
252
  storeChange() {
207
253
  if (this.openCache) {
208
- const store = (0, _lodashEs.cloneDeep)(this.store);
209
- // store里的 accountList 要主动基于 id 做下去重,避免重复写入
210
- store.accountList = store.accountList.filter((account, index, self) => index === self.findIndex(t => t.id === account.id));
254
+ const store = (0, import_lodash_es.cloneDeep)(this.store);
255
+ store.accountList = store.accountList.filter(
256
+ (account, index, self) => index === self.findIndex((t) => t.id === account.id)
257
+ );
211
258
  this.checkSaveCache({
212
259
  cacheId: this.cacheId,
213
260
  fatherModule: this.fatherModule,
214
261
  store,
215
- cacheKey: ['accountList']
262
+ cacheKey: ["accountList"]
216
263
  });
217
264
  }
218
265
  }
219
-
220
266
  /**
221
267
  * 批量添加holder类型账号
222
268
  */
223
269
  async addHolderAccounts(params) {
224
- const {
225
- holders,
226
- customerId,
227
- type = 'push'
228
- } = params;
270
+ const { holders, customerId, type = "push" } = params;
229
271
  const accountModules = [];
230
272
  for (const holder of holders) {
231
- const account = (0, _utils.createHolderAccount)(holder, customerId);
232
- const accountModule = await this.createAccountAndAdd(account, false, type);
233
- if (type === 'unshift') {
273
+ const account = (0, import_utils.createHolderAccount)(holder, customerId);
274
+ const accountModule = await this.createAccountAndAdd(
275
+ account,
276
+ false,
277
+ type
278
+ );
279
+ if (type === "unshift") {
234
280
  accountModules.unshift(accountModule);
235
281
  } else {
236
282
  accountModules.push(accountModule);
237
283
  }
238
284
  }
239
- await this.core.effects.emit(_types.AccountListHooks.OnAccountListUpdate, this.store);
285
+ await this.core.effects.emit(
286
+ import_types.AccountListHooks.OnAccountListUpdate,
287
+ this.store
288
+ );
240
289
  return accountModules;
241
290
  }
242
-
243
291
  /**
244
292
  * 获取客户列表
245
293
  * @param params 查询参数
246
294
  * @returns 客户列表
247
295
  */
248
296
  async getCustomerList(params = {}) {
249
- const url = '/customer/es/data';
250
- const {
251
- page = 1,
252
- pageSize = 20,
253
- keyword,
254
- ...otherParams
255
- } = params;
297
+ const url = "/customer/es/data";
298
+ const { page = 1, pageSize = 20, keyword, ...otherParams } = params;
256
299
  try {
257
300
  this.store.isLoading = true;
258
301
  this.store.error = null;
259
302
  const queryParams = {
260
303
  page,
261
304
  pageSize,
262
- ...(keyword && {
263
- keyword
264
- }),
305
+ ...keyword && { keyword },
265
306
  ...otherParams
266
307
  };
267
308
  const res = await this.request.get(url, queryParams);
268
- return res?.data || [];
309
+ return (res == null ? void 0 : res.data) || [];
269
310
  } catch (error) {
270
- console.error('Failed to fetch customer list:', error);
271
- this.store.error = error instanceof Error ? error.message : 'Failed to fetch customer list';
311
+ console.error("Failed to fetch customer list:", error);
312
+ this.store.error = error instanceof Error ? error.message : "Failed to fetch customer list";
272
313
  throw error;
273
314
  } finally {
274
315
  this.store.isLoading = false;
275
316
  }
276
317
  }
277
-
278
318
  /**
279
319
  * 获取holder类型账户列表
280
320
  * @param params
281
321
  */
282
322
  async fetchHolderAccounts(params) {
283
- const url = params.url || '/account/holder';
284
- const {
285
- form_id,
286
- shop_id,
287
- num,
288
- skip,
289
- customer_id
290
- } = params?.query || {};
323
+ var _a, _b;
324
+ const url = params.url || "/account/holder";
325
+ const { form_id, shop_id, num, skip, customer_id } = (params == null ? void 0 : params.query) || {};
291
326
  try {
292
327
  const res = await this.request.get(url, {
293
328
  customer_id,
@@ -298,7 +333,7 @@ class AccountListModule extends _BaseModule.BaseModule {
298
333
  });
299
334
  this.store.accountList = [];
300
335
  this.store.accounts = [];
301
- if (res?.data?.list?.length) {
336
+ if ((_b = (_a = res == null ? void 0 : res.data) == null ? void 0 : _a.list) == null ? void 0 : _b.length) {
302
337
  await this.addHolderAccounts({
303
338
  holders: res.data.list,
304
339
  customerId: customer_id
@@ -309,7 +344,10 @@ class AccountListModule extends _BaseModule.BaseModule {
309
344
  }
310
345
  }
311
346
  getLoginAccount() {
312
- return this.store.accounts.find(n => n.isLogin());
347
+ return this.store.accounts.find((n) => n.isLogin());
313
348
  }
314
- }
315
- exports.AccountListModule = AccountListModule;
349
+ };
350
+ // Annotate the CommonJS export names for ESM import in node:
351
+ 0 && (module.exports = {
352
+ AccountListModule
353
+ });
@@ -1,32 +1,33 @@
1
- "use strict";
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
2
18
 
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
19
+ // src/modules/AccountList/types.ts
20
+ var types_exports = {};
21
+ __export(types_exports, {
22
+ AccountListHooks: () => AccountListHooks
23
+ });
24
+ module.exports = __toCommonJS(types_exports);
25
+ var AccountListHooks = /* @__PURE__ */ ((AccountListHooks2) => {
26
+ AccountListHooks2["OnAccountListUpdate"] = "accountList:onUpdate";
27
+ AccountListHooks2["OnAccountListError"] = "accountList:onError";
28
+ return AccountListHooks2;
29
+ })(AccountListHooks || {});
30
+ // Annotate the CommonJS export names for ESM import in node:
31
+ 0 && (module.exports = {
32
+ AccountListHooks
5
33
  });
6
- exports.AccountListHooks = void 0;
7
- let AccountListHooks = exports.AccountListHooks = /*#__PURE__*/function (AccountListHooks) {
8
- AccountListHooks["OnAccountListUpdate"] = "accountList:onUpdate";
9
- AccountListHooks["OnAccountListError"] = "accountList:onError";
10
- return AccountListHooks;
11
- }({});
12
- /**
13
- * 账户列表查询参数
14
- */
15
- /**
16
- * 账户列表状态
17
- */
18
- /**
19
- * 账户列表模块 API
20
- */
21
- /**
22
- * 获取holder类型账户列表参数
23
- */
24
- /**
25
- * holder类型数据
26
- */
27
- /**
28
- * 获取客户列表参数
29
- */
30
- /**
31
- * 客户数据
32
- */
@@ -1,27 +1,39 @@
1
- "use strict";
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
2
18
 
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
19
+ // src/modules/AccountList/utils.ts
20
+ var utils_exports = {};
21
+ __export(utils_exports, {
22
+ createHolderAccount: () => createHolderAccount
5
23
  });
6
- exports.createHolderAccount = void 0;
7
- /**
8
- * 创建holder类型账号
9
- * @param holder
10
- * @param customer_id 账户id
11
- * @returns
12
- */
13
- const createHolderAccount = (holder, customerId) => {
24
+ module.exports = __toCommonJS(utils_exports);
25
+ var createHolderAccount = (holder, customerId) => {
14
26
  const account = {
15
27
  id: holder.form_record_id,
16
28
  name: holder.main_field,
17
29
  username: holder.main_field,
18
- avatar: holder?.customer_cover || '',
19
- type: 'holder',
20
- _origin: {
21
- ...holder,
22
- customer_id: customerId
23
- }
30
+ avatar: (holder == null ? void 0 : holder.customer_cover) || "",
31
+ type: "holder",
32
+ _origin: { ...holder, customer_id: customerId }
24
33
  };
25
34
  return account;
26
35
  };
27
- exports.createHolderAccount = createHolderAccount;
36
+ // Annotate the CommonJS export names for ESM import in node:
37
+ 0 && (module.exports = {
38
+ createHolderAccount
39
+ });
@@ -16,7 +16,7 @@ export declare class BaseModule {
16
16
  }): void;
17
17
  effectsOn(eventType: string, callback: (payload: any) => void): () => void;
18
18
  effectsOff(eventType: string, callback: (payload: any) => void): void;
19
- effectsOnce(eventType: string, callback: (payload: any) => void): void;
19
+ effectsOnce(eventType: string, callback: (payload: any) => void): () => void;
20
20
  effectsEmit(eventType: string, payload: any): Promise<{
21
21
  status: boolean;
22
22
  data: any;