tagu-tagu 4.2.0 → 4.3.0

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/README.md CHANGED
@@ -449,6 +449,35 @@ document.body.appendChild(EffectExample());
449
449
  ```
450
450
  [JSFiddle](https://jsfiddle.net/do_the_simplest/ge3mbua4/3/)
451
451
 
452
+ Cleanup in `useEffect`:
453
+ ```typescript
454
+ import { button, div, useEffect, useState } from "tagu-tagu";
455
+
456
+ function EffectWithCleanupExample() {
457
+ const count = useState(0);
458
+
459
+ function incrementCount() {
460
+ count.set(count.get() + 1);
461
+ }
462
+
463
+ useEffect((effect) => {
464
+ const countValue = count.get();
465
+ effect.onCleanup(() => {
466
+ console.log("Cleanup:", countValue);
467
+ });
468
+ console.log("Count:", countValue);
469
+ });
470
+
471
+ return div([
472
+ div("See console"),
473
+ button("+", { on: { click: incrementCount } }),
474
+ ]);
475
+ }
476
+
477
+ document.body.appendChild(EffectWithCleanupExample());
478
+ ```
479
+ [JSFiddle](https://jsfiddle.net/do_the_simplest/7L9yb6vd/2/)
480
+
452
481
  ### `If`
453
482
 
454
483
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tagu-tagu",
3
- "version": "4.2.0",
3
+ "version": "4.3.0",
4
4
  "description": "A lightweight helper for vanilla `HTMLElement`, with reactivity.",
5
5
  "keywords": [
6
6
  "front-end",
@@ -0,0 +1,59 @@
1
+ import { useState } from "../signal/Signal";
2
+ import type { ControlFlow } from "./ControlFlow";
3
+ import { Switch } from "./Switch";
4
+
5
+ export function Await(
6
+ promise: Promise<Element>,
7
+ options?: {
8
+ pending?: () => Element;
9
+ rejected?: (error: any) => Element;
10
+ },
11
+ ): ControlFlow;
12
+ export function Await<T>(
13
+ promise: Promise<T>,
14
+ options?: {
15
+ pending?: () => Element;
16
+ fulfilled: (value: T) => Element;
17
+ rejected?: (error: any) => Element;
18
+ },
19
+ ): ControlFlow;
20
+ export function Await<T>(
21
+ promise: Promise<T>,
22
+ options?: {
23
+ pending?: () => Element;
24
+ fulfilled?: (value: T) => Element;
25
+ rejected?: (error: any) => Element;
26
+ },
27
+ ) {
28
+ const pending = "pending";
29
+ const fulfilled = "fulfilled";
30
+ const rejected = "rejected";
31
+ const promiseState = useState(pending);
32
+
33
+ let value: T;
34
+ let error: any;
35
+ promise
36
+ .then((v) => {
37
+ value = v;
38
+ promiseState.set(fulfilled);
39
+ })
40
+ .catch((reason) => {
41
+ error = reason;
42
+ promiseState.set(rejected);
43
+ });
44
+
45
+ const switchOptions = {} as Record<string, () => Element>;
46
+
47
+ if (options?.pending) {
48
+ switchOptions[pending] = options.pending;
49
+ }
50
+
51
+ switchOptions[fulfilled] = () =>
52
+ options?.fulfilled?.(value) ?? (value as Element);
53
+
54
+ if (options?.rejected) {
55
+ switchOptions[rejected] = () => options.rejected!(error);
56
+ }
57
+
58
+ return Switch(promiseState, switchOptions);
59
+ }