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