@context-action/core 0.7.4 → 0.7.6
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/LICENSE +201 -0
- package/dist/index.cjs +29 -58
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +35 -64
- package/dist/index.js.map +1 -1
- package/package.json +16 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2024 Jun Woo Bang
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/dist/index.cjs
CHANGED
|
@@ -51,8 +51,7 @@ async function executeSequential(context, createController) {
|
|
|
51
51
|
try {
|
|
52
52
|
if (context.aborted) break;
|
|
53
53
|
if (registration.config.condition) try {
|
|
54
|
-
|
|
55
|
-
if (!shouldExecute) {
|
|
54
|
+
if (!registration.config.condition(context.payload)) {
|
|
56
55
|
i++;
|
|
57
56
|
continue;
|
|
58
57
|
}
|
|
@@ -76,7 +75,6 @@ async function executeSequential(context, createController) {
|
|
|
76
75
|
timestamp: handlerError.timestamp,
|
|
77
76
|
severity: "non-blocking"
|
|
78
77
|
});
|
|
79
|
-
return void 0;
|
|
80
78
|
});
|
|
81
79
|
nonBlockingPromises.push(promiseWithErrorHandling);
|
|
82
80
|
} else if (result !== void 0 && !context.terminated) context.results.push(result);
|
|
@@ -114,15 +112,12 @@ async function executeSequential(context, createController) {
|
|
|
114
112
|
}
|
|
115
113
|
}
|
|
116
114
|
if (nonBlockingPromises.length > 0) await Promise.allSettled(nonBlockingPromises);
|
|
117
|
-
if (errors.length > 0) {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
}));
|
|
124
|
-
context.collectedErrors = handlerErrors;
|
|
125
|
-
}
|
|
115
|
+
if (errors.length > 0) context.collectedErrors = errors.map((err) => ({
|
|
116
|
+
handlerId: err.handlerId,
|
|
117
|
+
error: err.error,
|
|
118
|
+
timestamp: err.timestamp,
|
|
119
|
+
severity: "non-blocking"
|
|
120
|
+
}));
|
|
126
121
|
}
|
|
127
122
|
/**
|
|
128
123
|
* Execute handlers in parallel mode (all at once)
|
|
@@ -151,8 +146,7 @@ async function executeParallel(context, createController) {
|
|
|
151
146
|
const controller = createController(registration, _index);
|
|
152
147
|
try {
|
|
153
148
|
if (registration.config.condition) try {
|
|
154
|
-
|
|
155
|
-
if (!shouldExecute) return {
|
|
149
|
+
if (!registration.config.condition(context.payload)) return {
|
|
156
150
|
success: true,
|
|
157
151
|
handlerId: registration.id,
|
|
158
152
|
result: void 0,
|
|
@@ -170,10 +164,8 @@ async function executeParallel(context, createController) {
|
|
|
170
164
|
}
|
|
171
165
|
const result = registration.handler(context.payload, controller);
|
|
172
166
|
let handlerResult;
|
|
173
|
-
if (result instanceof Promise)
|
|
174
|
-
|
|
175
|
-
handlerResult = resolved;
|
|
176
|
-
} else handlerResult = result;
|
|
167
|
+
if (result instanceof Promise) handlerResult = await result;
|
|
168
|
+
else handlerResult = result;
|
|
177
169
|
/** Collect result if handler returned something and pipeline wasn't terminated */
|
|
178
170
|
if (handlerResult !== void 0 && !context.terminated) context.results.push(handlerResult);
|
|
179
171
|
return {
|
|
@@ -196,22 +188,15 @@ async function executeParallel(context, createController) {
|
|
|
196
188
|
const results = await Promise.allSettled(handlerPromises);
|
|
197
189
|
/** Check for any rejected blocking handlers */
|
|
198
190
|
const failures = results.filter((result, index) => {
|
|
199
|
-
if (result.status === "rejected")
|
|
200
|
-
const registration = runnableHandlers[index];
|
|
201
|
-
return registration?.config.blocking ?? false;
|
|
202
|
-
}
|
|
191
|
+
if (result.status === "rejected") return runnableHandlers[index]?.config.blocking ?? false;
|
|
203
192
|
return false;
|
|
204
193
|
});
|
|
205
|
-
if (failures.length > 0)
|
|
206
|
-
const firstFailure = failures[0];
|
|
207
|
-
throw firstFailure.reason;
|
|
208
|
-
}
|
|
194
|
+
if (failures.length > 0) throw failures[0].reason;
|
|
209
195
|
/** Check if any handler terminated the pipeline */
|
|
210
196
|
const terminatedResults = results.filter((result) => result.status === "fulfilled" && result.value.terminated);
|
|
211
197
|
if (terminatedResults.length > 0) {
|
|
212
198
|
context.terminated = true;
|
|
213
|
-
|
|
214
|
-
context.terminationResult = firstTerminated.value.result;
|
|
199
|
+
context.terminationResult = terminatedResults[0].value.result;
|
|
215
200
|
}
|
|
216
201
|
}
|
|
217
202
|
/**
|
|
@@ -243,8 +228,7 @@ async function executeRace(context, createController) {
|
|
|
243
228
|
const controller = createController(registration, _index);
|
|
244
229
|
try {
|
|
245
230
|
if (registration.config.condition) try {
|
|
246
|
-
|
|
247
|
-
if (!shouldExecute) return {
|
|
231
|
+
if (!registration.config.condition(context.payload)) return {
|
|
248
232
|
success: true,
|
|
249
233
|
handlerId: registration.id,
|
|
250
234
|
registration,
|
|
@@ -264,10 +248,8 @@ async function executeRace(context, createController) {
|
|
|
264
248
|
}
|
|
265
249
|
const result = registration.handler(context.payload, controller);
|
|
266
250
|
let handlerResult;
|
|
267
|
-
if (result instanceof Promise)
|
|
268
|
-
|
|
269
|
-
handlerResult = resolved;
|
|
270
|
-
} else handlerResult = result;
|
|
251
|
+
if (result instanceof Promise) handlerResult = await result;
|
|
252
|
+
else handlerResult = result;
|
|
271
253
|
return {
|
|
272
254
|
success: true,
|
|
273
255
|
handlerId: registration.id,
|
|
@@ -690,8 +672,7 @@ var OperationQueue = class {
|
|
|
690
672
|
* 🆕 작업 완료 신호 - 대기 중인 프로세스들에게 알림
|
|
691
673
|
*/
|
|
692
674
|
notifyOperationComplete() {
|
|
693
|
-
|
|
694
|
-
resolvers.forEach((resolve) => resolve());
|
|
675
|
+
this.pendingResolvers.splice(0).forEach((resolve) => resolve());
|
|
695
676
|
}
|
|
696
677
|
/**
|
|
697
678
|
* 🆕 새로운 작업 추가 신호 - processQueue에서 호출
|
|
@@ -748,8 +729,7 @@ var OperationQueue = class {
|
|
|
748
729
|
});
|
|
749
730
|
this.queue = [];
|
|
750
731
|
this.processingPromise = null;
|
|
751
|
-
|
|
752
|
-
resolvers.forEach((resolve) => resolve());
|
|
732
|
+
this.pendingResolvers.splice(0).forEach((resolve) => resolve());
|
|
753
733
|
}
|
|
754
734
|
/**
|
|
755
735
|
* 큐 크기 조회
|
|
@@ -824,8 +804,7 @@ var ActionRegister = class {
|
|
|
824
804
|
*/
|
|
825
805
|
register(action, handler, config = {}) {
|
|
826
806
|
const handlerId = config.id || this.generateHandlerId(action);
|
|
827
|
-
|
|
828
|
-
return unregisterFn;
|
|
807
|
+
return this._performRegistrationSync(action, handler, config, handlerId);
|
|
829
808
|
}
|
|
830
809
|
/**
|
|
831
810
|
* 🆕 Unified logging method with cached debug mode check
|
|
@@ -1042,12 +1021,10 @@ var ActionRegister = class {
|
|
|
1042
1021
|
}
|
|
1043
1022
|
}
|
|
1044
1023
|
if (debounceMs !== void 0) {
|
|
1045
|
-
|
|
1046
|
-
if (!shouldProceed) return;
|
|
1024
|
+
if (!await this.actionGuard.debounce(actionKey, debounceMs)) return;
|
|
1047
1025
|
}
|
|
1048
1026
|
if (throttleMs !== void 0) {
|
|
1049
|
-
|
|
1050
|
-
if (!shouldProceed) return;
|
|
1027
|
+
if (!this.actionGuard.throttle(actionKey, throttleMs)) return;
|
|
1051
1028
|
}
|
|
1052
1029
|
const currentExecutionMode = options?.executionMode || this.actionExecutionModes.get(action) || this.executionMode;
|
|
1053
1030
|
const context = {
|
|
@@ -1178,8 +1155,7 @@ var ActionRegister = class {
|
|
|
1178
1155
|
let errors = [];
|
|
1179
1156
|
try {
|
|
1180
1157
|
await this.executePipeline(context, autoAbortController, options?.autoAbort);
|
|
1181
|
-
|
|
1182
|
-
errors = contextWithErrors.collectedErrors || [];
|
|
1158
|
+
errors = context.collectedErrors || [];
|
|
1183
1159
|
const executedCount = Math.min(context.currentIndex + (context.aborted ? 0 : 1), filteredHandlers.length);
|
|
1184
1160
|
for (let i = 0; i < executedCount; i++) {
|
|
1185
1161
|
const handler = filteredHandlers[i];
|
|
@@ -1188,8 +1164,7 @@ var ActionRegister = class {
|
|
|
1188
1164
|
if (handlerResult) handlerResult.executed = true;
|
|
1189
1165
|
}
|
|
1190
1166
|
} catch (error) {
|
|
1191
|
-
|
|
1192
|
-
errors = contextWithErrors.collectedErrors || [];
|
|
1167
|
+
errors = context.collectedErrors || [];
|
|
1193
1168
|
executionError = error instanceof Error ? error : new Error(String(error));
|
|
1194
1169
|
errors.push({
|
|
1195
1170
|
handlerId: "pipeline",
|
|
@@ -1265,8 +1240,7 @@ var ActionRegister = class {
|
|
|
1265
1240
|
}
|
|
1266
1241
|
}
|
|
1267
1242
|
if (debounceMs !== void 0) {
|
|
1268
|
-
|
|
1269
|
-
if (!shouldProceed) return {
|
|
1243
|
+
if (!await this.actionGuard.debounce(actionKey, debounceMs)) return {
|
|
1270
1244
|
success: false,
|
|
1271
1245
|
aborted: true,
|
|
1272
1246
|
abortReason: "Debounced execution",
|
|
@@ -1288,8 +1262,7 @@ var ActionRegister = class {
|
|
|
1288
1262
|
};
|
|
1289
1263
|
}
|
|
1290
1264
|
if (throttleMs !== void 0) {
|
|
1291
|
-
|
|
1292
|
-
if (!shouldProceed) return {
|
|
1265
|
+
if (!this.actionGuard.throttle(actionKey, throttleMs)) return {
|
|
1293
1266
|
success: false,
|
|
1294
1267
|
aborted: true,
|
|
1295
1268
|
abortReason: "Throttled execution",
|
|
@@ -1377,7 +1350,7 @@ var ActionRegister = class {
|
|
|
1377
1350
|
if (!filterOptions) return handlers;
|
|
1378
1351
|
const handlerIdSet = filterOptions.handlerIds ? new Set(filterOptions.handlerIds) : null;
|
|
1379
1352
|
const excludeIdSet = filterOptions.excludeHandlerIds ? new Set(filterOptions.excludeHandlerIds) : null;
|
|
1380
|
-
|
|
1353
|
+
return handlers.filter((registration) => {
|
|
1381
1354
|
const config = registration.config;
|
|
1382
1355
|
if (handlerIdSet && !handlerIdSet.has(config.id)) return false;
|
|
1383
1356
|
if (excludeIdSet && excludeIdSet.has(config.id)) return false;
|
|
@@ -1389,15 +1362,14 @@ var ActionRegister = class {
|
|
|
1389
1362
|
if (filterOptions.custom && !filterOptions.custom(config)) return false;
|
|
1390
1363
|
return true;
|
|
1391
1364
|
});
|
|
1392
|
-
return filtered;
|
|
1393
1365
|
}
|
|
1394
1366
|
processResults(context, resultOptions) {
|
|
1395
1367
|
const results = context.results;
|
|
1396
1368
|
if (context.terminated && context.terminationResult !== void 0) return context.terminationResult;
|
|
1397
1369
|
if (!resultOptions) return results.length > 0 ? results[results.length - 1] : void 0;
|
|
1398
|
-
if (!resultOptions.collect && !resultOptions.strategy) return
|
|
1370
|
+
if (!resultOptions.collect && !resultOptions.strategy) return;
|
|
1399
1371
|
const limitedResults = resultOptions.maxResults ? results.slice(0, resultOptions.maxResults) : results;
|
|
1400
|
-
if (limitedResults.length === 0) return
|
|
1372
|
+
if (limitedResults.length === 0) return;
|
|
1401
1373
|
switch (resultOptions.strategy) {
|
|
1402
1374
|
case "first": return limitedResults[0];
|
|
1403
1375
|
case "last": return limitedResults[limitedResults.length - 1];
|
|
@@ -1563,13 +1535,12 @@ var ActionRegister = class {
|
|
|
1563
1535
|
priority,
|
|
1564
1536
|
handlers: handlers.map((h) => ({ id: h.config.id }))
|
|
1565
1537
|
}));
|
|
1566
|
-
const executionStats = void 0;
|
|
1567
1538
|
return {
|
|
1568
1539
|
action,
|
|
1569
1540
|
handlerCount: pipeline.length,
|
|
1570
1541
|
totalHandlers: pipeline.length,
|
|
1571
1542
|
handlersByPriority,
|
|
1572
|
-
executionStats,
|
|
1543
|
+
executionStats: void 0,
|
|
1573
1544
|
lastRegistered: this.lastRegisteredTimestamps.get(action)
|
|
1574
1545
|
};
|
|
1575
1546
|
}
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/types.ts","../src/ActionRegister.ts","../src/action-guard.ts","../src/execution-modes.ts","../src/react-helpers.ts"],"sourcesContent":[],"mappings":";UAYiB,gBAAA;EAAA,CAAA,UAAA,EAAA,MAAgB,CAAA,EAAA,OAAA;AAwFjC;AAK0C,UALzB,kBAKyB,CAAA,IAAA,GAAA,EAAA,IAAA,IAAA,CAAA,CAAA;OAG1B,CAAA,MAAA,CAAA,EAAA,MAAA,CAAA,EAAA,IAAA;eAmCC,CAAA,QAAA,EAAA,CAAA,OAAA,EAtCmB,CAsCnB,EAAA,GAtCyB,CAsCzB,CAAA,EAAA,IAAA;YAGG,EAAA,EAtCJ,CAsCI;gBAGJ,CAAA,QAAA,EAAA,MAAA,CAAA,EAAA,IAAA;QAGwB,CAAA,MAAA,EATvB,CASuB,CAAA,EAAA,IAAA;WAAoB,CAAA,MAAA,EANxC,CAMwC,CAAA,EAAA,IAAA;YAAM,EAAA,EAHlD,CAGkD,EAAA;
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/types.ts","../src/ActionRegister.ts","../src/action-guard.ts","../src/execution-modes.ts","../src/react-helpers.ts"],"sourcesContent":[],"mappings":"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"}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/types.ts","../src/ActionRegister.ts","../src/action-guard.ts","../src/execution-modes.ts","../src/react-helpers.ts"],"sourcesContent":[],"mappings":";UAYiB,gBAAA;EAAA,CAAA,UAAA,EAAA,MAAgB,CAAA,EAAA,OAAA;AAwFjC;AAK0C,UALzB,kBAKyB,CAAA,IAAA,GAAA,EAAA,IAAA,IAAA,CAAA,CAAA;OAG1B,CAAA,MAAA,CAAA,EAAA,MAAA,CAAA,EAAA,IAAA;eAmCC,CAAA,QAAA,EAAA,CAAA,OAAA,EAtCmB,CAsCnB,EAAA,GAtCyB,CAsCzB,CAAA,EAAA,IAAA;YAGG,EAAA,EAtCJ,CAsCI;gBAGJ,CAAA,QAAA,EAAA,MAAA,CAAA,EAAA,IAAA;QAGwB,CAAA,MAAA,EATvB,CASuB,CAAA,EAAA,IAAA;WAAoB,CAAA,MAAA,EANxC,CAMwC,CAAA,EAAA,IAAA;YAAM,EAAA,EAHlD,CAGkD,EAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/types.ts","../src/ActionRegister.ts","../src/action-guard.ts","../src/execution-modes.ts","../src/react-helpers.ts"],"sourcesContent":[],"mappings":"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"}
|