@ersbeth/picoflow 1.0.1 → 1.1.1

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.
Files changed (183) hide show
  1. package/.cursor/plans/unifier-flowresource-avec-flowderivation-c9506e24.plan.md +372 -0
  2. package/README.md +17 -1
  3. package/biome.json +4 -1
  4. package/dist/picoflow.js +1155 -582
  5. package/dist/types/flow/base/flowDisposable.d.ts +67 -0
  6. package/dist/types/flow/base/flowDisposable.d.ts.map +1 -0
  7. package/dist/types/flow/base/flowEffect.d.ts +127 -0
  8. package/dist/types/flow/base/flowEffect.d.ts.map +1 -0
  9. package/dist/types/flow/base/flowGraph.d.ts +97 -0
  10. package/dist/types/flow/base/flowGraph.d.ts.map +1 -0
  11. package/dist/types/flow/base/flowSignal.d.ts +134 -0
  12. package/dist/types/flow/base/flowSignal.d.ts.map +1 -0
  13. package/dist/types/flow/base/flowTracker.d.ts +15 -0
  14. package/dist/types/flow/base/flowTracker.d.ts.map +1 -0
  15. package/dist/types/flow/base/index.d.ts +7 -0
  16. package/dist/types/flow/base/index.d.ts.map +1 -0
  17. package/dist/types/flow/base/utils.d.ts +20 -0
  18. package/dist/types/flow/base/utils.d.ts.map +1 -0
  19. package/dist/types/{advanced/array.d.ts → flow/collections/flowArray.d.ts} +50 -12
  20. package/dist/types/flow/collections/flowArray.d.ts.map +1 -0
  21. package/dist/types/flow/collections/flowMap.d.ts +224 -0
  22. package/dist/types/flow/collections/flowMap.d.ts.map +1 -0
  23. package/dist/types/flow/collections/index.d.ts +3 -0
  24. package/dist/types/flow/collections/index.d.ts.map +1 -0
  25. package/dist/types/flow/index.d.ts +4 -0
  26. package/dist/types/flow/index.d.ts.map +1 -0
  27. package/dist/types/flow/nodes/async/flowConstantAsync.d.ts +137 -0
  28. package/dist/types/flow/nodes/async/flowConstantAsync.d.ts.map +1 -0
  29. package/dist/types/flow/nodes/async/flowDerivationAsync.d.ts +137 -0
  30. package/dist/types/flow/nodes/async/flowDerivationAsync.d.ts.map +1 -0
  31. package/dist/types/flow/nodes/async/flowNodeAsync.d.ts +343 -0
  32. package/dist/types/flow/nodes/async/flowNodeAsync.d.ts.map +1 -0
  33. package/dist/types/flow/nodes/async/flowReadonlyAsync.d.ts +81 -0
  34. package/dist/types/flow/nodes/async/flowReadonlyAsync.d.ts.map +1 -0
  35. package/dist/types/flow/nodes/async/flowStateAsync.d.ts +111 -0
  36. package/dist/types/flow/nodes/async/flowStateAsync.d.ts.map +1 -0
  37. package/dist/types/flow/nodes/async/index.d.ts +6 -0
  38. package/dist/types/flow/nodes/async/index.d.ts.map +1 -0
  39. package/dist/types/flow/nodes/index.d.ts +3 -0
  40. package/dist/types/flow/nodes/index.d.ts.map +1 -0
  41. package/dist/types/flow/nodes/sync/flowConstant.d.ts +108 -0
  42. package/dist/types/flow/nodes/sync/flowConstant.d.ts.map +1 -0
  43. package/dist/types/flow/nodes/sync/flowDerivation.d.ts +100 -0
  44. package/dist/types/flow/nodes/sync/flowDerivation.d.ts.map +1 -0
  45. package/dist/types/flow/nodes/sync/flowNode.d.ts +314 -0
  46. package/dist/types/flow/nodes/sync/flowNode.d.ts.map +1 -0
  47. package/dist/types/flow/nodes/sync/flowReadonly.d.ts +57 -0
  48. package/dist/types/flow/nodes/sync/flowReadonly.d.ts.map +1 -0
  49. package/dist/types/flow/nodes/sync/flowState.d.ts +96 -0
  50. package/dist/types/flow/nodes/sync/flowState.d.ts.map +1 -0
  51. package/dist/types/flow/nodes/sync/index.d.ts +6 -0
  52. package/dist/types/flow/nodes/sync/index.d.ts.map +1 -0
  53. package/dist/types/index.d.ts +2 -4
  54. package/dist/types/index.d.ts.map +1 -1
  55. package/dist/types/solid/converters.d.ts +34 -45
  56. package/dist/types/solid/converters.d.ts.map +1 -1
  57. package/dist/types/solid/index.d.ts +2 -2
  58. package/dist/types/solid/index.d.ts.map +1 -1
  59. package/dist/types/solid/primitives.d.ts +1 -0
  60. package/dist/types/solid/primitives.d.ts.map +1 -1
  61. package/docs/.vitepress/config.mts +1 -1
  62. package/docs/api/typedoc-sidebar.json +81 -1
  63. package/package.json +60 -58
  64. package/src/flow/base/flowDisposable.ts +71 -0
  65. package/src/flow/base/flowEffect.ts +171 -0
  66. package/src/flow/base/flowGraph.ts +288 -0
  67. package/src/flow/base/flowSignal.ts +207 -0
  68. package/src/flow/base/flowTracker.ts +17 -0
  69. package/src/flow/base/index.ts +6 -0
  70. package/src/flow/base/utils.ts +19 -0
  71. package/src/flow/collections/flowArray.ts +409 -0
  72. package/src/flow/collections/flowMap.ts +398 -0
  73. package/src/flow/collections/index.ts +2 -0
  74. package/src/flow/index.ts +3 -0
  75. package/src/flow/nodes/async/flowConstantAsync.ts +142 -0
  76. package/src/flow/nodes/async/flowDerivationAsync.ts +143 -0
  77. package/src/flow/nodes/async/flowNodeAsync.ts +474 -0
  78. package/src/flow/nodes/async/flowReadonlyAsync.ts +81 -0
  79. package/src/flow/nodes/async/flowStateAsync.ts +116 -0
  80. package/src/flow/nodes/async/index.ts +5 -0
  81. package/src/flow/nodes/await/advanced/index.ts +5 -0
  82. package/src/{advanced → flow/nodes/await/advanced}/resource.ts +37 -3
  83. package/src/{advanced → flow/nodes/await/advanced}/resourceAsync.ts +35 -3
  84. package/src/{advanced → flow/nodes/await/advanced}/stream.ts +40 -2
  85. package/src/{advanced → flow/nodes/await/advanced}/streamAsync.ts +38 -3
  86. package/src/flow/nodes/await/flowConstantAwait.ts +154 -0
  87. package/src/flow/nodes/await/flowDerivationAwait.ts +154 -0
  88. package/src/flow/nodes/await/flowNodeAwait.ts +508 -0
  89. package/src/flow/nodes/await/flowReadonlyAwait.ts +89 -0
  90. package/src/flow/nodes/await/flowStateAwait.ts +130 -0
  91. package/src/flow/nodes/await/index.ts +5 -0
  92. package/src/flow/nodes/index.ts +3 -0
  93. package/src/flow/nodes/sync/flowConstant.ts +111 -0
  94. package/src/flow/nodes/sync/flowDerivation.ts +105 -0
  95. package/src/flow/nodes/sync/flowNode.ts +439 -0
  96. package/src/flow/nodes/sync/flowReadonly.ts +57 -0
  97. package/src/flow/nodes/sync/flowState.ts +101 -0
  98. package/src/flow/nodes/sync/index.ts +5 -0
  99. package/src/index.ts +2 -47
  100. package/src/solid/converters.ts +60 -199
  101. package/src/solid/index.ts +2 -8
  102. package/src/solid/primitives.ts +4 -0
  103. package/test/base/flowEffect.test.ts +108 -0
  104. package/test/base/flowGraph.test.ts +485 -0
  105. package/test/base/flowSignal.test.ts +372 -0
  106. package/test/collections/flowArray.asyncStates.test.ts +1553 -0
  107. package/test/collections/flowArray.scalars.test.ts +1129 -0
  108. package/test/collections/flowArray.states.test.ts +1365 -0
  109. package/test/collections/flowMap.asyncStates.test.ts +1105 -0
  110. package/test/collections/flowMap.scalars.test.ts +877 -0
  111. package/test/collections/flowMap.states.test.ts +1097 -0
  112. package/test/nodes/async/flowConstantAsync.test.ts +860 -0
  113. package/test/nodes/async/flowDerivationAsync.test.ts +1517 -0
  114. package/test/nodes/async/flowStateAsync.test.ts +1387 -0
  115. package/test/{resource.test.ts → nodes/await/advanced/resource.test.ts} +21 -19
  116. package/test/{resourceAsync.test.ts → nodes/await/advanced/resourceAsync.test.ts} +3 -1
  117. package/test/{stream.test.ts → nodes/await/advanced/stream.test.ts} +30 -28
  118. package/test/{streamAsync.test.ts → nodes/await/advanced/streamAsync.test.ts} +16 -14
  119. package/test/nodes/await/flowConstantAwait.test.ts +643 -0
  120. package/test/nodes/await/flowDerivationAwait.test.ts +1583 -0
  121. package/test/nodes/await/flowStateAwait.test.ts +999 -0
  122. package/test/nodes/mixed/derivation.test.ts +1527 -0
  123. package/test/nodes/sync/flowConstant.test.ts +620 -0
  124. package/test/nodes/sync/flowDerivation.test.ts +1373 -0
  125. package/test/nodes/sync/flowState.test.ts +945 -0
  126. package/test/solid/converters.test.ts +721 -0
  127. package/test/solid/primitives.test.ts +1031 -0
  128. package/tsconfig.json +2 -1
  129. package/vitest.config.ts +7 -1
  130. package/IMPLEMENTATION_GUIDE.md +0 -1578
  131. package/dist/types/advanced/array.d.ts.map +0 -1
  132. package/dist/types/advanced/index.d.ts +0 -9
  133. package/dist/types/advanced/index.d.ts.map +0 -1
  134. package/dist/types/advanced/map.d.ts +0 -166
  135. package/dist/types/advanced/map.d.ts.map +0 -1
  136. package/dist/types/advanced/resource.d.ts +0 -78
  137. package/dist/types/advanced/resource.d.ts.map +0 -1
  138. package/dist/types/advanced/resourceAsync.d.ts +0 -56
  139. package/dist/types/advanced/resourceAsync.d.ts.map +0 -1
  140. package/dist/types/advanced/stream.d.ts +0 -117
  141. package/dist/types/advanced/stream.d.ts.map +0 -1
  142. package/dist/types/advanced/streamAsync.d.ts +0 -97
  143. package/dist/types/advanced/streamAsync.d.ts.map +0 -1
  144. package/dist/types/basic/constant.d.ts +0 -60
  145. package/dist/types/basic/constant.d.ts.map +0 -1
  146. package/dist/types/basic/derivation.d.ts +0 -89
  147. package/dist/types/basic/derivation.d.ts.map +0 -1
  148. package/dist/types/basic/disposable.d.ts +0 -82
  149. package/dist/types/basic/disposable.d.ts.map +0 -1
  150. package/dist/types/basic/effect.d.ts +0 -67
  151. package/dist/types/basic/effect.d.ts.map +0 -1
  152. package/dist/types/basic/index.d.ts +0 -10
  153. package/dist/types/basic/index.d.ts.map +0 -1
  154. package/dist/types/basic/observable.d.ts +0 -83
  155. package/dist/types/basic/observable.d.ts.map +0 -1
  156. package/dist/types/basic/signal.d.ts +0 -69
  157. package/dist/types/basic/signal.d.ts.map +0 -1
  158. package/dist/types/basic/state.d.ts +0 -47
  159. package/dist/types/basic/state.d.ts.map +0 -1
  160. package/dist/types/basic/trackingContext.d.ts +0 -33
  161. package/dist/types/basic/trackingContext.d.ts.map +0 -1
  162. package/dist/types/creators.d.ts +0 -340
  163. package/dist/types/creators.d.ts.map +0 -1
  164. package/src/advanced/array.ts +0 -222
  165. package/src/advanced/index.ts +0 -12
  166. package/src/advanced/map.ts +0 -193
  167. package/src/basic/constant.ts +0 -97
  168. package/src/basic/derivation.ts +0 -147
  169. package/src/basic/disposable.ts +0 -86
  170. package/src/basic/effect.ts +0 -104
  171. package/src/basic/index.ts +0 -9
  172. package/src/basic/observable.ts +0 -109
  173. package/src/basic/signal.ts +0 -145
  174. package/src/basic/state.ts +0 -60
  175. package/src/basic/trackingContext.ts +0 -45
  176. package/src/creators.ts +0 -395
  177. package/test/array.test.ts +0 -600
  178. package/test/constant.test.ts +0 -44
  179. package/test/derivation.test.ts +0 -539
  180. package/test/effect.test.ts +0 -29
  181. package/test/map.test.ts +0 -240
  182. package/test/signal.test.ts +0 -72
  183. package/test/state.test.ts +0 -212
@@ -0,0 +1,130 @@
1
+ import { FlowNodeAwait } from "./flowNodeAwait";
2
+
3
+ /**
4
+ * Represents a reactive state that holds a mutable value, with asynchronous values.
5
+ *
6
+ * @typeParam T - The type of the state value (not the Promise itself).
7
+ *
8
+ * @remarks
9
+ * `FlowStateAwait` is a type alias of {@link FlowNodeAwait}, providing a mutable reactive state that can be
10
+ * updated using the `set()` method. It provides all the reactive capabilities of `FlowNodeAwait`
11
+ * (lazy computation, caching) with the ability to mutate the value.
12
+ *
13
+ * Unlike {@link FlowConstantAwait}, which is immutable and computes once, states can be updated at any
14
+ * time. Unlike {@link FlowDerivationAwait}, which recomputes when dependencies change, states are
15
+ * updated explicitly via `set()`.
16
+ *
17
+ * **Key Difference from FlowStateAsync:**
18
+ * Unlike {@link FlowStateAsync}, which returns Promises from `get()`, FlowStateAwait returns
19
+ * the resolved value directly. This makes the API more convenient for reactive code that doesn't want
20
+ * to deal with Promises in every access. The Promise is awaited internally and the resolved value is cached.
21
+ *
22
+ * **Asynchronous Nature:**
23
+ * FlowStateAwait works with Promises internally, but provides a synchronous-looking API:
24
+ * - `get(t)` returns the resolved value synchronously (`T | undefined`). The value may be `undefined`
25
+ * if the Promise hasn't resolved yet on first access.
26
+ * - `pick()` returns a `Promise<T>` that must be awaited. Use this when you need to ensure the value
27
+ * is fully resolved before proceeding.
28
+ * - The Promise is awaited internally and the resolved value is cached until the state is updated.
29
+ * - The `set()` method returns `Promise<void>` and must be awaited.
30
+ *
31
+ * **Reading Values:**
32
+ * You can read the state value using `get(t)` for tracked access (creates reactive dependency)
33
+ * or `pick()` for untracked access (reads without creating dependency):
34
+ * - `get(t)` returns the resolved value synchronously (`T | undefined`)
35
+ * - `pick()` returns a `Promise<T>` that must be awaited
36
+ *
37
+ * **Updating Values:**
38
+ * When the state is updated with a new value that differs from the current value (strict equality),
39
+ * all dependent effects and derivations are automatically notified and re-executed. If the new value
40
+ * is strictly equal to the current value, no notification occurs. The `set()` method accepts either
41
+ * a `Promise<T>` or a function `(current: T) => Promise<T>` and returns `Promise<void>`.
42
+ *
43
+ * @example
44
+ * ```typescript
45
+ * const $count = stateAwait(Promise.resolve(0));
46
+ *
47
+ * // Read with tracking
48
+ * effect((t) => {
49
+ * const value = $count.get(t); // Synchronous - returns resolved value, effect re-runs when $count changes
50
+ * console.log(value);
51
+ * });
52
+ *
53
+ * // Read without tracking
54
+ * const snapshot = await $count.pick(); // Async - returns Promise
55
+ *
56
+ * // Update the value
57
+ * await $count.set(Promise.resolve(1));
58
+ * await $count.set(async (current) => Promise.resolve(current + 1));
59
+ * ```
60
+ *
61
+ * @public
62
+ */
63
+ export type FlowStateAwait<T> = Omit<FlowNodeAwait<T>, "refresh">;
64
+
65
+ /**
66
+ * Creates a new reactive state holding a mutable value.
67
+ *
68
+ * @typeParam T - The type of the state value (not the Promise itself).
69
+ *
70
+ * @param value - The initial value for the state, or a function that returns the initial value.
71
+ * If a function is provided, it is called lazily only when the value is first accessed via
72
+ * `get()` or `pick()`. If a direct Promise is provided, it is stored immediately and resolved internally.
73
+ *
74
+ * @returns A new instance of {@link FlowStateAwait} that provides reactive access to the mutable value.
75
+ *
76
+ * @remarks
77
+ * State is the most common reactive primitive - a mutable container that notifies dependents
78
+ * when its value changes. Use `set()` to update the value (returns `Promise<void>`) and `get(t)`
79
+ * or `pick()` to read it:
80
+ * - `get(t)` returns the resolved value synchronously (`T | undefined`)
81
+ * - `pick()` returns a `Promise<T>` that must be awaited
82
+ *
83
+ * **Asynchronous Nature:**
84
+ * FlowStateAwait works with Promises internally, but provides a synchronous-looking API:
85
+ * - `get(t)` returns the resolved value synchronously (`T | undefined`). The value may be `undefined`
86
+ * if the Promise hasn't resolved yet on first access.
87
+ * - `pick()` returns a `Promise<T>` that must be awaited. Use this when you need to ensure the value
88
+ * is fully resolved before proceeding.
89
+ * - The Promise is awaited internally and the resolved value is cached until the state is updated.
90
+ * - The `set()` method returns `Promise<void>` and must be awaited.
91
+ *
92
+ * **Lazy Initialization:**
93
+ * When a function is provided, the initialization is lazy - the function is not called immediately
94
+ * upon creation. It executes only when:
95
+ * - The value is first read via `get(t)` or `pick()`
96
+ * - The state is watched via `watch()`
97
+ *
98
+ * This is useful for expensive async initializations that may not be needed immediately.
99
+ *
100
+ * **When to Use States:**
101
+ * - Use `stateAwait()` for mutable values that can be updated directly
102
+ * - Use `constantAwait()` for values that compute once and never change
103
+ * - Use `derivationAwait()` for values that recompute when dependencies change
104
+ *
105
+ * @example
106
+ * ```typescript
107
+ * // Direct Promise - initialized immediately
108
+ * const $count = stateAwait(Promise.resolve(0));
109
+ *
110
+ * // Lazy initialization - computed on first access
111
+ * const $config = stateAwait(async () => {
112
+ * return await loadConfiguration();
113
+ * });
114
+ *
115
+ * effect((t) => {
116
+ * const value = $count.get(t); // Synchronous - returns resolved value
117
+ * console.log(value);
118
+ * });
119
+ *
120
+ * await $count.set(Promise.resolve(1)); // Logs: 1
121
+ * await $count.set(async (current) => Promise.resolve(current + 1)); // Logs: 2
122
+ * ```
123
+ *
124
+ * @public
125
+ */
126
+ export function stateAwait<T>(
127
+ value: Promise<T> | (() => Promise<T>),
128
+ ): FlowStateAwait<T> {
129
+ return new FlowNodeAwait(value);
130
+ }
@@ -0,0 +1,5 @@
1
+ export * from "./flowConstantAwait";
2
+ export * from "./flowDerivationAwait";
3
+ export * from "./flowNodeAwait";
4
+ export * from "./flowReadonlyAwait";
5
+ export * from "./flowStateAwait";
@@ -0,0 +1,3 @@
1
+ export * from "./async";
2
+ export * from "./sync";
3
+ // export * from "./await";
@@ -0,0 +1,111 @@
1
+ import type { NotPromise } from "../../base";
2
+ import { FlowNode } from "./flowNode";
3
+
4
+ /**
5
+ * Represents a constant value that can be computed lazily upon first access.
6
+ *
7
+ * @typeParam T - The type of the constant value.
8
+ *
9
+ * @remarks
10
+ * `FlowConstant` is a type alias based on {@link FlowNode} with the `set()` method removed,
11
+ * making it immutable. It provides all the reactive capabilities of `FlowNode` (
12
+ * lazy computation, caching) but prevents value mutation after initialization.
13
+ *
14
+ * Unlike {@link FlowState}, which is mutable via the `set()` method, a constant's value never
15
+ * changes after it's computed. This makes it ideal for values that should remain stable throughout
16
+ * the application lifecycle.
17
+ *
18
+ * **Lazy Computation:**
19
+ * Constants are created using the `constant()` factory function, which accepts a compute function.
20
+ * The computation doesn't run immediately upon creation. It executes only when:
21
+ * - The value is first read via `get()` or `pick()`
22
+ * - The constant is watched via `watch()`
23
+ * This allows you to defer expensive computations until they're actually needed.
24
+ *
25
+ * **Caching:**
26
+ * Once computed, the value is cached permanently. All subsequent accesses return the cached value
27
+ * without re-computation, ensuring the value remains constant and the computation runs only once.
28
+ *
29
+ * **Use Cases:**
30
+ * - Configuration values that don't change
31
+ * - Expensive computations that should only run once
32
+ * - Initialization values for other reactive primitives
33
+ * - Values derived from external sources that shouldn't be modified
34
+ *
35
+ * @example
36
+ * ```typescript
37
+ * // Lazy initialization - computed on first access
38
+ * const $expensiveValue = constant(() => {
39
+ * return performExpensiveCalculation();
40
+ * });
41
+ *
42
+ * // First access triggers computation
43
+ * const value1 = await $expensiveValue.pick();
44
+ *
45
+ * // Subsequent accesses return cached value
46
+ * const value2 = await $expensiveValue.pick();
47
+ *
48
+ * // Value cannot be changed (set() method is not available)
49
+ * // $expensiveValue.set(100); // TypeScript error: Property 'set' does not exist
50
+ * ```
51
+ *
52
+ * @public
53
+ */
54
+ export type FlowConstant<T> = Omit<FlowNode<T>, "set" | "refresh">;
55
+
56
+ /**
57
+ * Creates a new reactive constant with lazy initialization.
58
+ *
59
+ * @typeParam T - The type of the constant value.
60
+ *
61
+ * @param value - A function that computes the constant value. This function is called lazily
62
+ * only when the value is first accessed via `get()` or `pick()`.
63
+ *
64
+ * @returns A new instance of {@link FlowConstant} that provides reactive access to the computed value.
65
+ *
66
+ * @remarks
67
+ * Constants are immutable reactive values that are computed once and cached permanently. Unlike
68
+ * states (created with `state()`), constants cannot be modified after initialization - they don't
69
+ * have a `set()` method.
70
+ *
71
+ * **Lazy Computation:**
72
+ * The compute function is not executed immediately upon creation. It runs only when:
73
+ * - The value is first read via `get(t)` or `pick()`
74
+ * - The constant is watched via `watch()`
75
+ *
76
+ * This lazy computation is useful for:
77
+ * - Expensive computations that may not be needed immediately
78
+ * - Values that depend on resources not available at construction time
79
+ * - Deferring computation until the value is actually needed
80
+ *
81
+ * **When to Use Constants:**
82
+ * - Use `constant()` for values that should never change after initialization
83
+ * - Use `state()` for mutable values that can be updated
84
+ * - Use `derivation()` for values that recompute when dependencies change
85
+ *
86
+ * @example
87
+ * ```typescript
88
+ * // Expensive computation that runs only once
89
+ * const $config = constant(() => {
90
+ * return loadConfigurationFromFile();
91
+ * });
92
+ *
93
+ * // Computation hasn't run yet
94
+ * // First access triggers it
95
+ * const config = await $config.pick();
96
+ *
97
+ * // Subsequent accesses return cached value
98
+ * const config2 = await $config.pick();
99
+ *
100
+ * // Use in reactive context
101
+ * effect((t) => {
102
+ * const cfg = $config.get(t);
103
+ * console.log(`API URL: ${cfg.apiUrl}`);
104
+ * });
105
+ * ```
106
+ *
107
+ * @public
108
+ */
109
+ export function constant<T>(value: () => NotPromise<T>): FlowConstant<T> {
110
+ return new FlowNode(value);
111
+ }
@@ -0,0 +1,105 @@
1
+ import type { FlowTracker, NotPromise } from "../../base";
2
+ import { FlowNode } from "./flowNode";
3
+
4
+ /**
5
+ * Represents a reactive derivation whose value is computed based on other reactive signals.
6
+ *
7
+ * @typeParam T - The type of the computed value.
8
+ *
9
+ * @remarks
10
+ * `FlowDerivation` is a type alias based on {@link FlowNode} with the `set()` method removed,
11
+ * making it immutable. It provides all the reactive capabilities of `FlowNode` (dependency tracking,
12
+ * lazy computation, caching) but prevents value mutation after initialization.
13
+ *
14
+ * Unlike {@link FlowConstant}, which computes its value once and never changes, derivations
15
+ * automatically recompute when any tracked dependency changes. This makes them ideal for
16
+ * creating derived state that stays in sync with its sources.
17
+ *
18
+ * **Lazy Computation:**
19
+ * The compute function doesn't run immediately upon creation. It executes only when:
20
+ * - The value is first read via `get()` or `pick()`
21
+ * - The derivation is watched via `watch()`
22
+ *
23
+ * **Automatic Recomputation:**
24
+ * When a tracked dependency changes, the derivation is marked as "dirty" but doesn't recompute
25
+ * immediately. Recomputation happens lazily on the next value access. This prevents unnecessary
26
+ * computations when multiple dependencies change in quick succession. You can also force
27
+ * recomputation using the `refresh()` method.
28
+ *
29
+ * **Dynamic Dependencies:**
30
+ * Dependencies are tracked dynamically during each computation. If the compute function
31
+ * conditionally tracks different observables, the dependency graph updates automatically.
32
+ *
33
+ * @example
34
+ * ```typescript
35
+ * const $firstName = state('John');
36
+ * const $lastName = state('Doe');
37
+ *
38
+ * const $fullName = derivation((t) => {
39
+ * return `${$firstName.get(t)} ${$lastName.get(t)}`;
40
+ * });
41
+ *
42
+ * // Compute function hasn't run yet (lazy)
43
+ * const name = await $fullName.pick(); // Now it computes: "John Doe"
44
+ *
45
+ * // When dependencies change, derivation recomputes automatically
46
+ * await $firstName.set('Jane');
47
+ * const newName = await $fullName.pick(); // "Jane Doe" (recomputed)
48
+ * ```
49
+ *
50
+ * @public
51
+ */
52
+ export type FlowDerivation<T> = Omit<FlowNode<T>, "set">;
53
+
54
+ /**
55
+ * Creates a new reactive derivation whose value is computed based on other reactive signals.
56
+ *
57
+ * @typeParam T - The type of the derived value.
58
+ *
59
+ * @param fn - A function that computes the derived value using a tracking context. The function
60
+ * receives a tracking context (`t`) that should be used to access dependencies via `.get(t)`.
61
+ * The function is not executed immediately; it runs lazily on first access.
62
+ *
63
+ * @returns A new instance of {@link FlowDerivation} that provides reactive access to the computed value.
64
+ *
65
+ * @remarks
66
+ * A derivation is a computed reactive value that automatically tracks its dependencies and
67
+ * recomputes when they change. The computation is lazy - it runs only when the value is
68
+ * accessed, not on construction. Use derivations to create derived state without manual
69
+ * dependency management.
70
+ *
71
+ * **Lazy Computation:**
72
+ * The compute function is not executed immediately upon creation. It runs only when:
73
+ * - The value is first read via `get(t)` or `pick()`
74
+ * - The derivation is watched via `watch()`
75
+ *
76
+ * **When to Use Derivations:**
77
+ * - Use `derivation()` for values that should recompute when dependencies change
78
+ * - Use `constant()` for values that compute once and never change
79
+ * - Use `state()` for mutable values that can be updated directly
80
+ *
81
+ * @example
82
+ * ```typescript
83
+ * const $firstName = state('John');
84
+ * const $lastName = state('Doe');
85
+ *
86
+ * const $fullName = derivation((t) => {
87
+ * return `${$firstName.get(t)} ${$lastName.get(t)}`;
88
+ * });
89
+ *
90
+ * // Use in reactive context
91
+ * effect((t) => {
92
+ * console.log($fullName.get(t)); // Logs: "John Doe"
93
+ * });
94
+ *
95
+ * // When dependencies change, derivation recomputes automatically
96
+ * await $firstName.set('Jane'); // Logs: "Jane Doe"
97
+ * ```
98
+ *
99
+ * @public
100
+ */
101
+ export function derivation<T>(
102
+ fn: (t: FlowTracker) => NotPromise<T>,
103
+ ): FlowDerivation<T> {
104
+ return new FlowNode(fn);
105
+ }