experimental-a2 0.8.1 → 0.9.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.
Files changed (93) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/actor-client.d.ts +46 -0
  3. package/dist/actor-client.d.ts.map +1 -0
  4. package/dist/actor-client.js +54 -0
  5. package/dist/actor-client.js.map +1 -0
  6. package/dist/actor-react.d.ts +54 -0
  7. package/dist/actor-react.d.ts.map +1 -0
  8. package/dist/actor-react.js +79 -0
  9. package/dist/actor-react.js.map +1 -0
  10. package/dist/actor-shared-BACubf4x.d.ts +136 -0
  11. package/dist/actor-shared-BACubf4x.d.ts.map +1 -0
  12. package/dist/actor-shared-DI7J5upy.js +127 -0
  13. package/dist/actor-shared-DI7J5upy.js.map +1 -0
  14. package/dist/actor.browser.d.ts +1 -0
  15. package/dist/actor.browser.js +13 -0
  16. package/dist/actor.browser.js.map +1 -0
  17. package/dist/actor.d.ts +176 -0
  18. package/dist/actor.d.ts.map +1 -0
  19. package/dist/actor.js +437 -0
  20. package/dist/actor.js.map +1 -0
  21. package/dist/ai-server.d.ts +2 -2
  22. package/dist/ai-server.js +2 -2
  23. package/dist/ai.d.ts +2 -2
  24. package/dist/client.d.ts +1 -1
  25. package/dist/client.d.ts.map +1 -1
  26. package/dist/client.js +4 -4
  27. package/dist/client.js.map +1 -1
  28. package/dist/{errors-BQuJpe82.js → errors-DCk6ch5n.js} +16 -2
  29. package/dist/{errors-BQuJpe82.js.map → errors-DCk6ch5n.js.map} +1 -1
  30. package/dist/{idempotent-replay-DuqEkYA7.js → idempotent-replay-DVOlyYbx.js} +2 -2
  31. package/dist/{idempotent-replay-DuqEkYA7.js.map → idempotent-replay-DVOlyYbx.js.map} +1 -1
  32. package/dist/index.d.ts +16 -3
  33. package/dist/index.d.ts.map +1 -1
  34. package/dist/index.js +2 -2
  35. package/dist/react.d.ts +1 -1
  36. package/dist/{contract-jIfaR085.d.ts → reducer-DJKWm3cp.d.ts} +39 -39
  37. package/dist/reducer-DJKWm3cp.d.ts.map +1 -0
  38. package/dist/scheduler-qstash.d.ts +2 -2
  39. package/dist/scheduler-qstash.js +2 -2
  40. package/dist/scheduler-vercel.d.ts +2 -2
  41. package/dist/scheduler-vercel.js +1 -1
  42. package/dist/{server-B2XNevQA.js → server-CBET-jSz.js} +6 -6
  43. package/dist/server-CBET-jSz.js.map +1 -0
  44. package/dist/{server-DjPhHnbI.d.ts → server-CKY3_lbw.d.ts} +3 -3
  45. package/dist/{server-DjPhHnbI.d.ts.map → server-CKY3_lbw.d.ts.map} +1 -1
  46. package/dist/server.d.ts +3 -3
  47. package/dist/server.js +1 -1
  48. package/dist/{store-RJO35BMj.d.ts → store-DGHeBtIQ.d.ts} +2 -2
  49. package/dist/{store-RJO35BMj.d.ts.map → store-DGHeBtIQ.d.ts.map} +1 -1
  50. package/dist/store-memory.d.ts +1 -1
  51. package/dist/store-memory.js +2 -2
  52. package/dist/store-postgres.d.ts +1 -1
  53. package/dist/store-postgres.js +2 -2
  54. package/dist/{store-redis-core-DT01r4GZ.js → store-redis-core-z-ykbyMg.js} +3 -3
  55. package/dist/{store-redis-core-DT01r4GZ.js.map → store-redis-core-z-ykbyMg.js.map} +1 -1
  56. package/dist/store-redis-http.d.ts +1 -1
  57. package/dist/store-redis-http.js +2 -2
  58. package/dist/store-redis.d.ts +1 -1
  59. package/dist/store-redis.js +2 -2
  60. package/dist/store-sqlite.d.ts +1 -1
  61. package/dist/store-sqlite.js +2 -2
  62. package/dist/{wire-B6te_wns.js → wire--yji6mO3.js} +2 -2
  63. package/dist/{wire-B6te_wns.js.map → wire--yji6mO3.js.map} +1 -1
  64. package/docs/actors/01-introduction.mdx +189 -0
  65. package/docs/actors/02-concurrency.mdx +154 -0
  66. package/docs/actors/03-timers.mdx +120 -0
  67. package/docs/actors/04-routes.mdx +352 -0
  68. package/docs/actors/meta.ts +1 -0
  69. package/docs/concepts/meta.ts +1 -0
  70. package/docs/guides/meta.ts +1 -0
  71. package/docs/index.mdx +3 -0
  72. package/docs/reference/02-errors.mdx +33 -0
  73. package/docs/reference/meta.ts +1 -0
  74. package/examples/playground/app/page.tsx +10 -1
  75. package/examples/playground/app/vault/[vaultId]/route.ts +19 -0
  76. package/examples/playground/app/vault/page.tsx +12 -0
  77. package/examples/playground/app/vault/server.ts +9 -0
  78. package/examples/playground/app/vault/vault-client.tsx +124 -0
  79. package/examples/playground/app/vault/vault.test.ts +147 -0
  80. package/examples/playground/app/vault/vault.ts +119 -0
  81. package/examples/playground/package.json +1 -1
  82. package/package.json +7 -1
  83. package/src/actor-client.ts +132 -0
  84. package/src/actor-react.ts +143 -0
  85. package/src/actor-shared.ts +356 -0
  86. package/src/actor.browser.ts +12 -0
  87. package/src/actor.ts +914 -0
  88. package/src/client.ts +9 -1
  89. package/src/errors.ts +15 -0
  90. package/src/index.ts +1 -1
  91. package/src/server.ts +13 -3
  92. package/dist/contract-jIfaR085.d.ts.map +0 -1
  93. package/dist/server-B2XNevQA.js.map +0 -1
@@ -0,0 +1,352 @@
1
+ ---
2
+ title: Routes, clients, and React
3
+ description: "One route serves an instance: GET streams live state, POST answers calls. Authorize per operation, project per mount, and mount it in React with one hook."
4
+ ---
5
+
6
+ ## The actor for this page
7
+
8
+ A vault with one internal field, so the projection section below has
9
+ something to hide:
10
+
11
+ ```ts vault.ts
12
+ import { NonRetriableError } from 'experimental-a2'
13
+ import { actor } from 'experimental-a2/actor'
14
+
15
+ interface Vault {
16
+ state: {
17
+ balance: number
18
+ /** Internal bookkeeping; not for subscribers. */
19
+ audit: string[]
20
+ }
21
+ events: {
22
+ deposit: { amount: number }
23
+ withdraw: { amount: number }
24
+ }
25
+ }
26
+
27
+ export type VaultState = Vault['state']
28
+
29
+ export const vault = actor<Vault>({
30
+ name: 'vault',
31
+ state: { balance: 0, audit: [] },
32
+ handlers: {
33
+ deposit: (ctx, input) => {
34
+ ctx.state.balance += input.amount
35
+ ctx.state.audit.push(`deposit ${input.amount}`)
36
+ },
37
+ withdraw: (ctx, input) => {
38
+ if (ctx.state.balance < input.amount) {
39
+ throw new NonRetriableError('insufficient funds')
40
+ }
41
+ ctx.state.balance -= input.amount
42
+ ctx.state.audit.push(`withdraw ${input.amount}`)
43
+ },
44
+ },
45
+ })
46
+ ```
47
+
48
+ ## The route
49
+
50
+ `handle.fetch` serves one instance over HTTP. Your route authenticates
51
+ and picks the instance; the library serves the rest.
52
+
53
+ ```ts app/vault/[vaultId]/route.ts
54
+ import { vault } from '@/vault'
55
+
56
+ async function respond(
57
+ request: Request,
58
+ context: { params: Promise<{ vaultId: string }> },
59
+ ): Promise<Response> {
60
+ const { vaultId } = await context.params
61
+ // here's where you'd do auth, or any other checks
62
+ return vault.actor(vaultId).fetch(request)
63
+ }
64
+
65
+ export const GET = respond
66
+ export const POST = respond
67
+ ```
68
+
69
+ `GET` is the live stream: a server-sent events response of the
70
+ instance's state commits, resumed after the `index` query parameter,
71
+ with heartbeats. The stream carries state and nothing else: subscribers
72
+ see what the actor is, never other callers' inputs, and a refusal
73
+ answers only its caller. The full mailbox stays server-side.
74
+
75
+ `POST` is the call lane. The body names a declared event:
76
+
77
+ ```json
78
+ { "event": "deposit", "input": { "amount": 100 }, "messageId": "m-1" }
79
+ ```
80
+
81
+ The response is the answer: `{ state, index }` on success, `409` with
82
+ the refusal's message when the handler says no, `400` for an undeclared
83
+ event. `messageId` is optional; send one to make retrying the request
84
+ idempotent.
85
+
86
+ ## Authorize
87
+
88
+ `authorize` is per-operation policy, checked before any write or
89
+ subscription. Authentication (who is asking) stays in your route;
90
+ `authorize` decides whether this operation is allowed.
91
+
92
+ ```ts
93
+ // app/vault/[vaultId]/route.ts, now with per-operation policy:
94
+ import { vault } from '@/vault'
95
+
96
+ export async function POST(
97
+ request: Request,
98
+ context: { params: Promise<{ vaultId: string }> },
99
+ ): Promise<Response> {
100
+ const { vaultId } = await context.params
101
+ return vault.actor(vaultId).fetch(request, {
102
+ authorize: (operation) =>
103
+ operation.type === 'call' && operation.event !== 'withdraw',
104
+ })
105
+ }
106
+ ```
107
+
108
+ The operation is a discriminated union: `{ type: 'stream', id,
109
+ startAfter }` for subscriptions, `{ type: 'call', id, event, input,
110
+ messageId? }` for calls. Returning `false` answers `403`.
111
+
112
+ ## Views: what each mount shows
113
+
114
+ State can be mixed-audience: internal bookkeeping next to public
115
+ fields. The definition stays audience-blind; audiences are a route
116
+ concern, like auth. A `view` is a request-time projection applied to
117
+ everything that mount serves: every state frame on the stream and
118
+ every call answer (the two must agree, or the call lane would leak
119
+ what the stream hides).
120
+
121
+ ```ts
122
+ // app/vault/[vaultId]/public/route.ts, a projected mount of the same actor:
123
+ import { vault } from '@/vault'
124
+
125
+ export async function GET(
126
+ request: Request,
127
+ context: { params: Promise<{ vaultId: string }> },
128
+ ): Promise<Response> {
129
+ const { vaultId } = await context.params
130
+ return vault.actor(vaultId).fetch(request, {
131
+ view: (state) => ({ balance: state.balance }),
132
+ })
133
+ }
134
+ ```
135
+
136
+ Different routes project the same actor differently: an admin mount
137
+ with no view sees everything, the public mount above hides `audit`.
138
+ Per-viewer views need no extra machinery, because the route already
139
+ holds the identity; a closure does it
140
+ (`view: (state) => ({ ...visible, mine: state.perUser[user.id] })`).
141
+ View output holds to the same plain-JSON floor as state itself.
142
+
143
+ Views are for internal-but-not-secret fields. Secrets do not belong in
144
+ state at all: state commits are log rows, and the log is forever. Keep
145
+ secrets outside, pass references, resolve them inside handlers.
146
+
147
+ ## Any client
148
+
149
+ `createActorClient` is the typed call surface over that route's `POST`
150
+ lane. It works anywhere: browsers, other frameworks, other servers.
151
+
152
+ ```ts
153
+ // in the browser, or any client at all:
154
+ import {
155
+ ActorRefusedError,
156
+ createActorClient,
157
+ } from 'experimental-a2/actor/client'
158
+ import type { vault } from '@/vault'
159
+
160
+ const savings = createActorClient<typeof vault>({ api: '/vault/savings' })
161
+
162
+ try {
163
+ const { state } = await savings.call.deposit({ amount: 100 })
164
+ // state is the answer: the fold after this deposit
165
+ } catch (error) {
166
+ if (error instanceof ActorRefusedError) {
167
+ // the server's refusal, revived with its message
168
+ }
169
+ }
170
+ ```
171
+
172
+ The import of `vault` is type-only, so it is erased at build time: the
173
+ server module never enters a client bundle. On a view-projected mount,
174
+ pass the projected shape as the second type argument
175
+ (`createActorClient<typeof vault, PublicVault>`) so answers carry it.
176
+
177
+ ## React
178
+
179
+ One hook. The server component hands down the first fold, the hook
180
+ keeps it live and exposes the same typed calls.
181
+
182
+ ```tsx app/vault/[vaultId]/page.tsx
183
+ import { vault } from '@/vault'
184
+ import { VaultClient } from './vault-client'
185
+
186
+ export default async function VaultPage({
187
+ params,
188
+ }: {
189
+ params: Promise<{ vaultId: string }>
190
+ }) {
191
+ const { vaultId } = await params
192
+ const initial = await vault.actor(vaultId).state()
193
+ return <VaultClient vaultId={vaultId} initial={initial} />
194
+ }
195
+ ```
196
+
197
+ ```tsx app/vault/[vaultId]/vault-client.tsx
198
+ 'use client'
199
+ import { useActor } from 'experimental-a2/actor/react'
200
+ import type { ActorSnapshot } from 'experimental-a2/actor/react'
201
+ import type { vault, VaultState } from '@/vault'
202
+
203
+ export function VaultClient({
204
+ vaultId,
205
+ initial,
206
+ }: {
207
+ vaultId: string
208
+ initial: ActorSnapshot<VaultState>
209
+ }) {
210
+ const { state, call, connection } = useActor<typeof vault>({
211
+ api: `/vault/${vaultId}`,
212
+ id: vaultId,
213
+ initial,
214
+ })
215
+
216
+ return (
217
+ <div>
218
+ <p>
219
+ Balance: {state.balance}
220
+ {connection.status === 'live' ? '' : ' (reconnecting)'}
221
+ </p>
222
+ <button onClick={() => void call.deposit({ amount: 25 })}>
223
+ Deposit $25
224
+ </button>
225
+ </div>
226
+ )
227
+ }
228
+ ```
229
+
230
+ What the hook gives you:
231
+
232
+ - **`state`**: the live view. Every commit streams in and replaces it;
233
+ the fold is library code, so no reducers, schemas, or contracts
234
+ appear in browser code.
235
+ - **`call`**: the same typed surface as `createActorClient`, because it
236
+ is one; `useActor` is a thin React wrapper over the client primitive
237
+ and the stream.
238
+ - **`index`**: the stream frontier, and **`events`**: the state-commit
239
+ feed this browser has observed, for activity-feed UI.
240
+ - **`connection`**: the same discriminated union as
241
+ [`useSession`](/guides/react#the-client-component), heartbeat
242
+ watchdog included.
243
+
244
+ Live, not optimistic. Handlers are server code deciding against
245
+ serialized fresh state, so there is nothing correct for the browser to
246
+ apply early; a local guess would be wrong exactly when the actor
247
+ matters. If a control needs pending UI, `await call.deposit(...)` is a
248
+ promise like any other.
249
+
250
+ On a view-projected mount, pass the projected shape as the second type
251
+ argument (`useActor<typeof vault, PublicVault>`); `initial`, `state`,
252
+ and the call answers all carry it.
253
+
254
+ ## Presence
255
+
256
+ Who is here, live: cursors, names, viewer counts. Presence is
257
+ ephemeral audience state. It replicates to the instance's subscribers
258
+ and expires; it never enters the log, and handlers cannot see it (an
259
+ actor decides from its log, never from who is watching).
260
+
261
+ Declare the vocabulary in the protocol as types, and arm the wire with
262
+ `presence: true`:
263
+
264
+ ```ts board.ts
265
+ import { actor } from 'experimental-a2/actor'
266
+
267
+ interface Board {
268
+ state: { strokes: number }
269
+ events: { draw: { path: string } }
270
+ presence: { cursor: { x: number; y: number }; name: string }
271
+ }
272
+
273
+ export const board = actor<Board>({
274
+ name: 'board',
275
+ state: { strokes: 0 },
276
+ presence: true,
277
+ handlers: {
278
+ draw: (ctx) => {
279
+ ctx.state.strokes += 1
280
+ },
281
+ },
282
+ })
283
+ ```
284
+
285
+ The route does not change: the same `GET` stream interleaves presence
286
+ updates between state commits, and the same `POST` lane accepts
287
+ presence announcements. In React, pass a `participant` identity and
288
+ use the map:
289
+
290
+ ```tsx app/board/[boardId]/board-client.tsx
291
+ 'use client'
292
+ import { useActor } from 'experimental-a2/actor/react'
293
+ import type { ActorSnapshot } from 'experimental-a2/actor/react'
294
+ import type { board } from '@/board'
295
+
296
+ export function BoardClient({
297
+ boardId,
298
+ initial,
299
+ user,
300
+ }: {
301
+ boardId: string
302
+ initial: ActorSnapshot<{ strokes: number }>
303
+ user: string
304
+ }) {
305
+ const { presence, setPresence } = useActor<typeof board>({
306
+ api: `/board/${boardId}`,
307
+ id: boardId,
308
+ initial,
309
+ participant: user,
310
+ })
311
+
312
+ return (
313
+ <div
314
+ onPointerMove={(event) =>
315
+ setPresence({ cursor: { x: event.clientX, y: event.clientY } })
316
+ }
317
+ >
318
+ {Object.keys(presence).length} here
319
+ </div>
320
+ )
321
+ }
322
+ ```
323
+
324
+ `setPresence` is fire-and-forget: throttled on the way out, resent
325
+ after a reconnect, `null` clears a field. The map holds each
326
+ participant's latest fields with their stamps; how long a value stays
327
+ painted is render logic, decided against `at`.
328
+
329
+ Three guards stand where presence enters, and none of them is a
330
+ schema:
331
+
332
+ - **Types**: the protocol types `setPresence` and the map, so honest
333
+ clients cannot send the wrong shape.
334
+ - **The floor**: the library rejects values that are not plain JSON
335
+ trees, values over 8 KB, and object-plumbing field names.
336
+ - **`authorize`**: every announcement arrives as
337
+ `{ type: 'presence', id, participant, values }` before it is
338
+ accepted. Clamp, verify the participant matches the authenticated
339
+ user, or rate-limit here.
340
+
341
+ What no guard does is make peer values trustworthy. Presence is
342
+ authored by whoever holds a connection: render it like user input.
343
+
344
+ ## The session wire underneath
345
+
346
+ `handle.fetch` serves the actor's two lanes and nothing else. When you
347
+ want the raw session protocol instead (the full event feed, pushes,
348
+ presence, the `ws` transport), the definition exposes the underlying
349
+ server: mount `def.server.fetch` and use the core
350
+ [client](/guides/react) against it. That wire shows the whole mailbox
351
+ to its subscribers, inputs included, so reserve it for trusted
352
+ audiences.
@@ -0,0 +1 @@
1
+ export default { order: 4 }
@@ -0,0 +1 @@
1
+ export default { order: 2 }
@@ -0,0 +1 @@
1
+ export default { order: 3 }
package/docs/index.mdx CHANGED
@@ -281,6 +281,9 @@ public package entry points. See [Complete examples](/guides/examples).
281
281
  <Card title="A2 and your database" href="/guides/application-data" icon="database">
282
282
  Decide what belongs in a session and what belongs in ordinary tables.
283
283
  </Card>
284
+ <Card title="Actors" href="/actors/introduction" icon="boxes">
285
+ Durable objects on the log: typed state, one message at a time.
286
+ </Card>
284
287
  <Card title="Complete examples" href="/guides/examples" icon="code">
285
288
  Read or copy the standalone Next.js playground included with the package.
286
289
  </Card>
@@ -58,6 +58,39 @@ contains the same id twice, and an id that was already used in a
58
58
  *different* session (event ids are globally unique). In every case,
59
59
  nothing is written.
60
60
 
61
+ ## NonRetriableError
62
+
63
+ The second exported error class. Throw it (or a subclass, matched by
64
+ `instanceof`) from a handler when the failure is deterministic: the
65
+ event dead-letters immediately instead of consuming the ten-failure
66
+ retry budget, because a guard that refuses this attempt will refuse
67
+ every retry identically. Any other thrown error keeps the ordinary
68
+ retry contract.
69
+
70
+ ```ts
71
+ import { z } from 'zod'
72
+ import * as a2 from 'experimental-a2'
73
+ import { NonRetriableError } from 'experimental-a2'
74
+ import { createServer } from 'experimental-a2/server'
75
+
76
+ const orders = a2.contract({
77
+ name: 'orders',
78
+ events: { created: z.object({ chargeable: z.boolean() }) },
79
+ })
80
+
81
+ export const ordersServer = createServer({
82
+ contract: orders,
83
+ handlers: {
84
+ created: async ({ event }) => {
85
+ if (!event.payload.chargeable) {
86
+ throw new NonRetriableError('this order cannot be charged')
87
+ }
88
+ // transient failures below retry as usual
89
+ },
90
+ },
91
+ })
92
+ ```
93
+
61
94
  ## What append never throws for
62
95
 
63
96
  - **A failing handler.** Appends always land; handler failures are retried
@@ -0,0 +1 @@
1
+ export default { order: 5 }
@@ -6,7 +6,7 @@ export default function HomePage(): ReactNode {
6
6
  <article>
7
7
  <h1>A durable event log, live in your browser</h1>
8
8
  <p className="lede">
9
- Seven small demos, one model: append an event, let a handler react, fold
9
+ Eight small demos, one model: append an event, let a handler react, fold
10
10
  the log into a view — on the server for the first paint, in the browser
11
11
  for every moment after.
12
12
  </p>
@@ -64,6 +64,15 @@ export default function HomePage(): ReactNode {
64
64
  under a fresh claim.
65
65
  </p>
66
66
  </Link>
67
+ <Link className="card" href="/vault">
68
+ <h2>Vault (actor)</h2>
69
+ <p>
70
+ A durable actor: send messages to one vault's mailbox, watch it
71
+ process them one at a time against its state — serialized
72
+ read-modify-write, refusals as answers, and the whole transcript in
73
+ the log. Built on <code>experimental-a2/actor</code>.
74
+ </p>
75
+ </Link>
67
76
  <Link className="card" href="/counter">
68
77
  <h2>Counter</h2>
69
78
  <p>
@@ -0,0 +1,19 @@
1
+ /**
2
+ * The vault's ingress — the actor mirror of `server.fetch`: your route
3
+ * authenticates and picks the instance, `handle.fetch` serves the rest
4
+ * (GET → the state-plane SSE, POST → the call lane).
5
+ */
6
+ import { vault } from '../server'
7
+
8
+ async function respond(
9
+ request: Request,
10
+ context: { params: Promise<{ vaultId: string }> },
11
+ ): Promise<Response> {
12
+ const { vaultId } = await context.params
13
+ // here's where you'd authenticate; per-operation policy goes in
14
+ // fetch's { authorize } option
15
+ return vault.actor(vaultId).fetch(request)
16
+ }
17
+
18
+ export const GET = respond
19
+ export const POST = respond
@@ -0,0 +1,12 @@
1
+ import type { ReactNode } from 'react'
2
+ import { vault } from './server'
3
+ import { VaultClient } from './vault-client'
4
+
5
+ export const dynamic = 'force-dynamic'
6
+
7
+ const VAULT_ID = 'shared'
8
+
9
+ export default async function VaultPage(): Promise<ReactNode> {
10
+ const initial = await vault.actor(VAULT_ID).state()
11
+ return <VaultClient vaultId={VAULT_ID} initial={initial} />
12
+ }
@@ -0,0 +1,9 @@
1
+ import 'server-only'
2
+ import { store } from '@/lib/store'
3
+ import { createVault } from './vault'
4
+
5
+ export type { VaultState } from './vault'
6
+
7
+ export const vault: ReturnType<typeof createVault> = createVault(
8
+ store ? { store } : {},
9
+ )
@@ -0,0 +1,124 @@
1
+ 'use client'
2
+ import type { ReactNode } from 'react'
3
+ import { useEffect, useState } from 'react'
4
+ import { ActorRefusedError } from 'experimental-a2/actor/client'
5
+ import { useActor } from 'experimental-a2/actor/react'
6
+ import type { ActorSnapshot } from 'experimental-a2/actor/react'
7
+ import type { vault, VaultState } from '@/app/vault/server'
8
+ import { ActivityFeed } from '@/app/components/activity-feed'
9
+ import { ConnectionPill } from '@/app/components/connection-pill'
10
+
11
+ const ACTIVITY_LIMIT = 50
12
+
13
+ export function VaultClient({
14
+ vaultId,
15
+ initial,
16
+ }: {
17
+ vaultId: string
18
+ initial: ActorSnapshot<VaultState>
19
+ }): ReactNode {
20
+ const [participant] = useState(
21
+ () => `guest-${Math.random().toString(36).slice(2, 8)}`,
22
+ )
23
+ const { state, call, events, index, connection, presence, setPresence } =
24
+ useActor<typeof vault>({
25
+ api: `/vault/${vaultId}`,
26
+ id: vaultId,
27
+ initial,
28
+ participant,
29
+ })
30
+ const [answer, setAnswer] = useState<string | null>(null)
31
+
32
+ useEffect(() => {
33
+ setPresence({ viewing: true })
34
+ }, [setPresence])
35
+ const here = Object.keys(presence).length
36
+
37
+ const run = async (invoke: () => Promise<unknown>): Promise<void> => {
38
+ try {
39
+ await invoke()
40
+ setAnswer(null)
41
+ } catch (err) {
42
+ setAnswer(
43
+ err instanceof ActorRefusedError
44
+ ? err.message
45
+ : err instanceof Error
46
+ ? err.message
47
+ : String(err),
48
+ )
49
+ }
50
+ }
51
+
52
+ // deployed state may predate the `pending` field
53
+ const pending = Object.entries(state.pending ?? {})
54
+ const visibleEvents = events.slice(-ACTIVITY_LIMIT)
55
+
56
+ return (
57
+ <article>
58
+ <header className="session-header">
59
+ <h1>Vault</h1>
60
+ <ConnectionPill connection={connection} />
61
+ <span className="badge live">shared</span>
62
+ {here > 1 ? <span className="badge">{here} viewing</span> : null}
63
+ </header>
64
+ <p className="lede">
65
+ One durable actor per vault id — serial brain, concurrent muscle. A
66
+ withdrawal is a saga: the action <em>reserves</em> instantly (balance
67
+ drops, a pending transfer appears), a <em>task</em> runs the slow
68
+ 2-second transfer off the lane, and its result comes back as a message
69
+ that <em>settles</em> or <em>refunds</em>. The lane is never blocked:
70
+ keep depositing while transfers are in flight.
71
+ </p>
72
+
73
+ <section className="counter-panel" aria-label="Vault controls">
74
+ <output className="counter-value" aria-live="polite">
75
+ ${state.balance}
76
+ </output>
77
+ <div className="counter-actions">
78
+ <button
79
+ type="button"
80
+ onClick={() => void run(() => call.deposit({ amount: 25 }))}
81
+ >
82
+ Deposit $25
83
+ </button>
84
+ <button
85
+ type="button"
86
+ className="secondary"
87
+ onClick={() => void run(() => call.withdraw({ amount: 60 }))}
88
+ >
89
+ Withdraw $60
90
+ </button>
91
+ <button
92
+ type="button"
93
+ className="secondary"
94
+ onClick={() => void run(() => call.withdraw({ amount: 19 }))}
95
+ >
96
+ Withdraw $19 (bounces)
97
+ </button>
98
+ </div>
99
+ <p className="hint" aria-live="polite">
100
+ {pending.length > 0
101
+ ? `${pending.length} transfer${pending.length === 1 ? '' : 's'} in flight: ${pending
102
+ .map(([, amount]) => `$${amount}`)
103
+ .join(', ')}`
104
+ : `${state.deposits} deposits, ${state.withdrawals} settled withdrawals`}
105
+ </p>
106
+ </section>
107
+
108
+ {answer ? <p className="error">refused: {answer}</p> : null}
109
+ <p className="hint">
110
+ Watch the state plane below narrate the saga: <code>withdraw</code> (the
111
+ reserve commits with the transfer trigger, atomically), then two seconds
112
+ later <code>settle</code> — or <code>refund</code> for amounts ending in
113
+ 9, the demo bank&apos;s bounce policy. Withdrawing more than the balance
114
+ is refused instantly by the guard; the reserve means in-flight transfers
115
+ can never oversell the balance, from any number of tabs.
116
+ </p>
117
+
118
+ <ActivityFeed events={visibleEvents} index={index} />
119
+ {events.length > ACTIVITY_LIMIT ? (
120
+ <p className="hint">Showing the latest {ACTIVITY_LIMIT} events.</p>
121
+ ) : null}
122
+ </article>
123
+ )
124
+ }