-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonitors.ts
35 lines (31 loc) · 1.08 KB
/
monitors.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { Watcher } from 'async-reactivity';
import { HttpSampleQuery, SocketSampleQuery } from "@async-reactivity-sample/business-logic";
{
const query = new HttpSampleQuery();
query.token.value = 'server-token';
query.filters.done.value = false;
new Watcher(query.items, async (itemsPromise) => {
const items = await itemsPromise;
const result = items.every(i => i.valid.value);
if (!result) {
console.warn('Invalid undone items exist');
} else {
console.log('All good');
}
});
}
{
const query = new SocketSampleQuery();
query.token.value = 'server-token';
query.filters.done.value = false;
new Watcher(query.items, async (itemsPromise) => {
const items = await itemsPromise;
const validity = await Promise.all(items.map(i => i.valid.value));
const result = validity.every(v => v);
if (!result) {
console.warn('Invalid undone items exist');
} else {
console.log('All good');
}
});
}