@vanyamate/sec 0.3.1-batch-beta.4 → 0.3.1-batch-beta.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/dist/index.cjs +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +88 -88
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let d=0,E=new Map;const S=()=>d+=1,k=()=>{d-=1,m()&&
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let d=0,E=new Map;const S=()=>d+=1,k=()=>{d-=1,m()&&y()},m=()=>d===0,p=(n,o)=>{S(),E.set(n,o),queueMicrotask(k)},y=()=>{E.forEach(n=>n()),E.clear()},i=function(n,o){n&&o()},w=function(n,o={enabled:!0,instantListenerExecution:!1}){const f=new Set;let s=n,{enabled:c=!0,instantListenerExecution:u=!1}=o;const l={on:(e,r,t)=>(r==="onBefore"?e.onBefore((...a)=>i(c,()=>l.set(t(n,{args:a})))):r==="onSuccess"?e.onSuccess((a,...b)=>i(c,()=>l.set(t(n,{result:a,args:b})))):r==="onError"?e.onError((a,...b)=>i(c,()=>l.set(t(n,{error:a,args:b})))):e.onFinally((...a)=>i(c,()=>l.set(t(n,{args:a})))),l),get(){return n},set(e){n=e,p(this,()=>{s!==n&&(s=n,f.forEach(r=>r(n)))})},subscribe(e){return f.add(e),u&&e(n),()=>f.delete(e)},enableOn(e,r){return e.subscribe(()=>{c=!0,r!==void 0&&l.set(r)}),l},disableOn(e,r){return e.subscribe(()=>{c=!1,r!==void 0&&l.set(r)}),l}};return l},h=function(){return{afterAll:[],beforeAll:[],other:[]}},B=function(n){const o=h(),f=h(),s=h(),c=h(),u=n??(async e=>e),l=async function(...e){return o.beforeAll.forEach(r=>r(...e)),o.other.forEach(r=>r(...e)),o.afterAll.forEach(r=>r(...e)),u(...e).then(r=>(f.beforeAll.forEach(t=>t(r,...e)),f.other.forEach(t=>t(r,...e)),f.afterAll.forEach(t=>t(r,...e)),r)).catch(r=>{throw s.beforeAll.forEach(t=>t(r,...e)),s.other.forEach(t=>t(r,...e)),s.afterAll.forEach(t=>t(r,...e)),r}).finally(()=>{c.beforeAll.forEach(r=>r(...e)),c.other.forEach(r=>r(...e)),c.afterAll.forEach(r=>r(...e))})};return l.onBefore=(e,r)=>{switch(r){case"beforeAll":o.beforeAll.push(e);break;case"afterAll":o.afterAll.push(e);break;default:o.other.push(e)}},l.onSuccess=(e,r)=>{switch(r){case"beforeAll":f.beforeAll.push(e);break;case"afterAll":f.afterAll.push(e);break;default:f.other.push(e)}},l.onError=(e,r)=>{switch(r){case"beforeAll":s.beforeAll.push(e);break;case"afterAll":s.afterAll.push(e);break;default:s.other.push(e)}},l.onFinally=(e,r)=>{switch(r){case"beforeAll":c.beforeAll.push(e);break;case"afterAll":c.afterAll.push(e);break;default:c.other.push(e)}},l},C=function(n,o,f={enabled:!0,instantListenerExecution:!1}){let s,c;s=c=o(n);const u=new Set;let{enabled:l=!0,instantListenerExecution:e=!1}=f;n.forEach(t=>{t.subscribe(()=>{i(l,()=>{p(r,()=>{s=o(n),s!==c&&(c=s,u.forEach(a=>a(s)))})})})});const r={on:()=>{throw new Error("Cannot call 'on' on combined store")},get(){return s},set(){throw new Error("Cannot call 'set' on combined store")},subscribe(t){return u.add(t),e&&t(s),()=>u.delete(t)},enableOn(t){return t.subscribe(()=>l=!0),r},disableOn(t){return t.subscribe(()=>l=!1),r}};return r},F=function(n){const o=[],f={on:(s,c)=>(s==="onBefore"?c.onBefore(()=>o.forEach(u=>u()),n):s==="onSuccess"?c.onSuccess(()=>o.forEach(u=>u()),n):s==="onError"?c.onError(()=>o.forEach(u=>u()),n):c.onFinally(()=>o.forEach(u=>u()),n),f),subscribe:s=>{o.push(s)}};return f},A=function(n){return()=>n},L=function(n){const o=w(!1);return n.forEach(f=>{o.on(f,"onBefore",A(!0)),o.on(f,"onFinally",A(!1))}),o},x=function(){return(n,{result:o})=>o};exports.combine=C;exports.effect=B;exports.enableCheck=i;exports.marker=F;exports.pending=L;exports.result=x;exports.store=w;exports.to=A;
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare type Effect<AsyncAction extends EffectAction> = {
|
|
|
8
8
|
onFinally: (callback: EffectFinallyCallback<AsyncAction>, position?: EffectSubscribePosition) => void;
|
|
9
9
|
};
|
|
10
10
|
|
|
11
|
-
export declare const effect: <Action extends EffectAction>(action
|
|
11
|
+
export declare const effect: <Action extends EffectAction>(action?: Action) => Effect<Action>;
|
|
12
12
|
|
|
13
13
|
export declare type EffectAction = (...args: Array<any>) => Promise<any>;
|
|
14
14
|
|
|
@@ -28,6 +28,8 @@ export declare type EffectSubscribePosition = 'beforeAll' | 'afterAll' | undefin
|
|
|
28
28
|
|
|
29
29
|
export declare type EffectSuccessCallback<AsyncAction extends EffectAction> = (result: Awaited<ReturnType<AsyncAction>>, ...args: Parameters<AsyncAction>) => void;
|
|
30
30
|
|
|
31
|
+
export declare type EmptyEffect<State> = (state: State) => Promise<State>;
|
|
32
|
+
|
|
31
33
|
export declare const enableCheck: (enabled: boolean, callback: () => void) => void;
|
|
32
34
|
|
|
33
35
|
export declare type Marker<State> = {
|
package/dist/index.js
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
let A = 0, E = /* @__PURE__ */ new Map();
|
|
2
2
|
const w = () => A += 1, B = () => {
|
|
3
3
|
A -= 1, S() && k();
|
|
4
|
-
}, S = () => A === 0, p = (
|
|
5
|
-
w(), E.set(
|
|
4
|
+
}, S = () => A === 0, p = (n, o) => {
|
|
5
|
+
w(), E.set(n, o), queueMicrotask(B);
|
|
6
6
|
}, k = () => {
|
|
7
|
-
E.forEach((
|
|
8
|
-
}, i = function(
|
|
9
|
-
|
|
10
|
-
},
|
|
7
|
+
E.forEach((n) => n()), E.clear();
|
|
8
|
+
}, i = function(n, o) {
|
|
9
|
+
n && o();
|
|
10
|
+
}, y = function(n, o = { enabled: !0, instantListenerExecution: !1 }) {
|
|
11
11
|
const f = /* @__PURE__ */ new Set();
|
|
12
|
-
let s =
|
|
13
|
-
const
|
|
14
|
-
on: (e,
|
|
12
|
+
let s = n, { enabled: c = !0, instantListenerExecution: u = !1 } = o;
|
|
13
|
+
const l = {
|
|
14
|
+
on: (e, r, t) => (r === "onBefore" ? e.onBefore(
|
|
15
15
|
(...a) => i(
|
|
16
16
|
c,
|
|
17
|
-
() =>
|
|
18
|
-
|
|
17
|
+
() => l.set(
|
|
18
|
+
t(n, { args: a })
|
|
19
19
|
)
|
|
20
20
|
)
|
|
21
|
-
) :
|
|
21
|
+
) : r === "onSuccess" ? e.onSuccess(
|
|
22
22
|
(a, ...b) => i(
|
|
23
23
|
c,
|
|
24
|
-
() =>
|
|
25
|
-
|
|
24
|
+
() => l.set(
|
|
25
|
+
t(n, {
|
|
26
26
|
result: a,
|
|
27
27
|
args: b
|
|
28
28
|
})
|
|
29
29
|
)
|
|
30
30
|
)
|
|
31
|
-
) :
|
|
31
|
+
) : r === "onError" ? e.onError(
|
|
32
32
|
(a, ...b) => i(
|
|
33
33
|
c,
|
|
34
|
-
() =>
|
|
35
|
-
|
|
34
|
+
() => l.set(
|
|
35
|
+
t(n, {
|
|
36
36
|
error: a,
|
|
37
37
|
args: b
|
|
38
38
|
})
|
|
@@ -41,108 +41,108 @@ const w = () => A += 1, B = () => {
|
|
|
41
41
|
) : e.onFinally(
|
|
42
42
|
(...a) => i(
|
|
43
43
|
c,
|
|
44
|
-
() =>
|
|
45
|
-
|
|
44
|
+
() => l.set(
|
|
45
|
+
t(n, { args: a })
|
|
46
46
|
)
|
|
47
47
|
)
|
|
48
|
-
),
|
|
48
|
+
), l),
|
|
49
49
|
get() {
|
|
50
|
-
return
|
|
50
|
+
return n;
|
|
51
51
|
},
|
|
52
52
|
set(e) {
|
|
53
|
-
|
|
54
|
-
s !==
|
|
53
|
+
n = e, p(this, () => {
|
|
54
|
+
s !== n && (s = n, f.forEach((r) => r(n)));
|
|
55
55
|
});
|
|
56
56
|
},
|
|
57
57
|
subscribe(e) {
|
|
58
|
-
return f.add(e),
|
|
58
|
+
return f.add(e), u && e(n), () => f.delete(e);
|
|
59
59
|
},
|
|
60
|
-
enableOn(e,
|
|
60
|
+
enableOn(e, r) {
|
|
61
61
|
return e.subscribe(() => {
|
|
62
|
-
c = !0,
|
|
63
|
-
}),
|
|
62
|
+
c = !0, r !== void 0 && l.set(r);
|
|
63
|
+
}), l;
|
|
64
64
|
},
|
|
65
|
-
disableOn(e,
|
|
65
|
+
disableOn(e, r) {
|
|
66
66
|
return e.subscribe(() => {
|
|
67
|
-
c = !1,
|
|
68
|
-
}),
|
|
67
|
+
c = !1, r !== void 0 && l.set(r);
|
|
68
|
+
}), l;
|
|
69
69
|
}
|
|
70
70
|
};
|
|
71
|
-
return
|
|
71
|
+
return l;
|
|
72
72
|
}, h = function() {
|
|
73
73
|
return {
|
|
74
74
|
afterAll: [],
|
|
75
75
|
beforeAll: [],
|
|
76
76
|
other: []
|
|
77
77
|
};
|
|
78
|
-
},
|
|
79
|
-
const
|
|
80
|
-
return
|
|
81
|
-
throw s.beforeAll.forEach((
|
|
78
|
+
}, C = function(n) {
|
|
79
|
+
const o = h(), f = h(), s = h(), c = h(), u = n ?? (async (e) => e), l = async function(...e) {
|
|
80
|
+
return o.beforeAll.forEach((r) => r(...e)), o.other.forEach((r) => r(...e)), o.afterAll.forEach((r) => r(...e)), u(...e).then((r) => (f.beforeAll.forEach((t) => t(r, ...e)), f.other.forEach((t) => t(r, ...e)), f.afterAll.forEach((t) => t(r, ...e)), r)).catch((r) => {
|
|
81
|
+
throw s.beforeAll.forEach((t) => t(r, ...e)), s.other.forEach((t) => t(r, ...e)), s.afterAll.forEach((t) => t(r, ...e)), r;
|
|
82
82
|
}).finally(() => {
|
|
83
|
-
c.beforeAll.forEach((
|
|
83
|
+
c.beforeAll.forEach((r) => r(...e)), c.other.forEach((r) => r(...e)), c.afterAll.forEach((r) => r(...e));
|
|
84
84
|
});
|
|
85
85
|
};
|
|
86
|
-
return l.onBefore = (
|
|
87
|
-
switch (
|
|
86
|
+
return l.onBefore = (e, r) => {
|
|
87
|
+
switch (r) {
|
|
88
88
|
case "beforeAll":
|
|
89
|
-
|
|
89
|
+
o.beforeAll.push(e);
|
|
90
90
|
break;
|
|
91
91
|
case "afterAll":
|
|
92
|
-
|
|
92
|
+
o.afterAll.push(e);
|
|
93
93
|
break;
|
|
94
94
|
default:
|
|
95
|
-
|
|
95
|
+
o.other.push(e);
|
|
96
96
|
}
|
|
97
|
-
}, l.onSuccess = (
|
|
98
|
-
switch (
|
|
97
|
+
}, l.onSuccess = (e, r) => {
|
|
98
|
+
switch (r) {
|
|
99
99
|
case "beforeAll":
|
|
100
|
-
f.beforeAll.push(
|
|
100
|
+
f.beforeAll.push(e);
|
|
101
101
|
break;
|
|
102
102
|
case "afterAll":
|
|
103
|
-
f.afterAll.push(
|
|
103
|
+
f.afterAll.push(e);
|
|
104
104
|
break;
|
|
105
105
|
default:
|
|
106
|
-
f.other.push(
|
|
106
|
+
f.other.push(e);
|
|
107
107
|
}
|
|
108
|
-
}, l.onError = (
|
|
109
|
-
switch (
|
|
108
|
+
}, l.onError = (e, r) => {
|
|
109
|
+
switch (r) {
|
|
110
110
|
case "beforeAll":
|
|
111
|
-
s.beforeAll.push(
|
|
111
|
+
s.beforeAll.push(e);
|
|
112
112
|
break;
|
|
113
113
|
case "afterAll":
|
|
114
|
-
s.afterAll.push(
|
|
114
|
+
s.afterAll.push(e);
|
|
115
115
|
break;
|
|
116
116
|
default:
|
|
117
|
-
s.other.push(
|
|
117
|
+
s.other.push(e);
|
|
118
118
|
}
|
|
119
|
-
}, l.onFinally = (
|
|
120
|
-
switch (
|
|
119
|
+
}, l.onFinally = (e, r) => {
|
|
120
|
+
switch (r) {
|
|
121
121
|
case "beforeAll":
|
|
122
|
-
c.beforeAll.push(
|
|
122
|
+
c.beforeAll.push(e);
|
|
123
123
|
break;
|
|
124
124
|
case "afterAll":
|
|
125
|
-
c.afterAll.push(
|
|
125
|
+
c.afterAll.push(e);
|
|
126
126
|
break;
|
|
127
127
|
default:
|
|
128
|
-
c.other.push(
|
|
128
|
+
c.other.push(e);
|
|
129
129
|
}
|
|
130
130
|
}, l;
|
|
131
|
-
},
|
|
131
|
+
}, m = function(n, o, f = { enabled: !0, instantListenerExecution: !1 }) {
|
|
132
132
|
let s, c;
|
|
133
|
-
s = c =
|
|
134
|
-
const
|
|
135
|
-
let { enabled:
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
i(
|
|
139
|
-
p(
|
|
140
|
-
s =
|
|
133
|
+
s = c = o(n);
|
|
134
|
+
const u = /* @__PURE__ */ new Set();
|
|
135
|
+
let { enabled: l = !0, instantListenerExecution: e = !1 } = f;
|
|
136
|
+
n.forEach((t) => {
|
|
137
|
+
t.subscribe(() => {
|
|
138
|
+
i(l, () => {
|
|
139
|
+
p(r, () => {
|
|
140
|
+
s = o(n), s !== c && (c = s, u.forEach((a) => a(s)));
|
|
141
141
|
});
|
|
142
142
|
});
|
|
143
143
|
});
|
|
144
144
|
});
|
|
145
|
-
const
|
|
145
|
+
const r = {
|
|
146
146
|
on: () => {
|
|
147
147
|
throw new Error("Cannot call 'on' on combined store");
|
|
148
148
|
},
|
|
@@ -152,42 +152,42 @@ const w = () => A += 1, B = () => {
|
|
|
152
152
|
set() {
|
|
153
153
|
throw new Error("Cannot call 'set' on combined store");
|
|
154
154
|
},
|
|
155
|
-
subscribe(
|
|
156
|
-
return
|
|
155
|
+
subscribe(t) {
|
|
156
|
+
return u.add(t), e && t(s), () => u.delete(t);
|
|
157
157
|
},
|
|
158
|
-
enableOn(
|
|
159
|
-
return
|
|
158
|
+
enableOn(t) {
|
|
159
|
+
return t.subscribe(() => l = !0), r;
|
|
160
160
|
},
|
|
161
|
-
disableOn(
|
|
162
|
-
return
|
|
161
|
+
disableOn(t) {
|
|
162
|
+
return t.subscribe(() => l = !1), r;
|
|
163
163
|
}
|
|
164
164
|
};
|
|
165
|
-
return
|
|
166
|
-
}, x = function(
|
|
167
|
-
const
|
|
168
|
-
on: (s, c) => (s === "onBefore" ? c.onBefore(() =>
|
|
165
|
+
return r;
|
|
166
|
+
}, x = function(n) {
|
|
167
|
+
const o = [], f = {
|
|
168
|
+
on: (s, c) => (s === "onBefore" ? c.onBefore(() => o.forEach((u) => u()), n) : s === "onSuccess" ? c.onSuccess(() => o.forEach((u) => u()), n) : s === "onError" ? c.onError(() => o.forEach((u) => u()), n) : c.onFinally(() => o.forEach((u) => u()), n), f),
|
|
169
169
|
subscribe: (s) => {
|
|
170
|
-
|
|
170
|
+
o.push(s);
|
|
171
171
|
}
|
|
172
172
|
};
|
|
173
173
|
return f;
|
|
174
|
-
}, d = function(
|
|
175
|
-
return () =>
|
|
176
|
-
}, F = function(
|
|
177
|
-
const
|
|
178
|
-
return
|
|
179
|
-
|
|
180
|
-
}),
|
|
174
|
+
}, d = function(n) {
|
|
175
|
+
return () => n;
|
|
176
|
+
}, F = function(n) {
|
|
177
|
+
const o = y(!1);
|
|
178
|
+
return n.forEach((f) => {
|
|
179
|
+
o.on(f, "onBefore", d(!0)), o.on(f, "onFinally", d(!1));
|
|
180
|
+
}), o;
|
|
181
181
|
}, L = function() {
|
|
182
|
-
return (
|
|
182
|
+
return (n, { result: o }) => o;
|
|
183
183
|
};
|
|
184
184
|
export {
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
m as combine,
|
|
186
|
+
C as effect,
|
|
187
187
|
i as enableCheck,
|
|
188
188
|
x as marker,
|
|
189
189
|
F as pending,
|
|
190
190
|
L as result,
|
|
191
|
-
|
|
191
|
+
y as store,
|
|
192
192
|
d as to
|
|
193
193
|
};
|