@rivetkit/framework-base 2.1.4 → 2.1.6-rc.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.
- package/dist/mod.d.mts +13 -20
- package/dist/mod.d.ts +13 -20
- package/dist/mod.js +9 -16
- package/dist/mod.js.map +1 -1
- package/dist/mod.mjs +9 -16
- package/dist/mod.mjs.map +1 -1
- package/package.json +2 -2
package/dist/mod.d.mts
CHANGED
|
@@ -5,7 +5,7 @@ export { ActorConnStatus } from 'rivetkit/client';
|
|
|
5
5
|
|
|
6
6
|
type AnyActorRegistry = Registry<any>;
|
|
7
7
|
|
|
8
|
-
interface ActorStateReference
|
|
8
|
+
interface ActorStateReference {
|
|
9
9
|
/**
|
|
10
10
|
* The unique identifier for the actor.
|
|
11
11
|
* This is a hash generated from the actor's options.
|
|
@@ -17,12 +17,12 @@ interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
|
17
17
|
* The state of the actor, derived from the store.
|
|
18
18
|
* This includes the actor's connection and handle.
|
|
19
19
|
*/
|
|
20
|
-
handle: ActorHandle<
|
|
20
|
+
handle: ActorHandle<AnyActorDefinition> | null;
|
|
21
21
|
/**
|
|
22
22
|
* The connection to the actor.
|
|
23
23
|
* This is used to communicate with the actor in realtime.
|
|
24
24
|
*/
|
|
25
|
-
connection: ActorConn<
|
|
25
|
+
connection: ActorConn<AnyActorDefinition> | null;
|
|
26
26
|
/**
|
|
27
27
|
* The connection status of the actor.
|
|
28
28
|
*/
|
|
@@ -35,7 +35,7 @@ interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
|
35
35
|
* Options for the actor, including its name, key, parameters, and whether it is enabled.
|
|
36
36
|
*/
|
|
37
37
|
opts: {
|
|
38
|
-
name:
|
|
38
|
+
name: string;
|
|
39
39
|
/**
|
|
40
40
|
* Unique key for the actor instance.
|
|
41
41
|
* This can be a string or an array of strings to create multiple instances.
|
|
@@ -46,7 +46,7 @@ interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
|
46
46
|
* Parameters for the actor.
|
|
47
47
|
* These are additional options that can be passed to the actor.
|
|
48
48
|
*/
|
|
49
|
-
params?:
|
|
49
|
+
params?: unknown;
|
|
50
50
|
/** Region to create the actor in if it doesn't exist. */
|
|
51
51
|
createInRegion?: string;
|
|
52
52
|
/** Input data to pass to the actor. */
|
|
@@ -64,13 +64,13 @@ interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
|
64
64
|
noCreate?: boolean;
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
|
-
interface InternalRivetKitStore
|
|
68
|
-
actors: Record<string, ActorStateReference
|
|
67
|
+
interface InternalRivetKitStore {
|
|
68
|
+
actors: Record<string, ActorStateReference>;
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
71
|
* Options for configuring a actor in RivetKit.
|
|
72
72
|
*/
|
|
73
|
-
interface ActorOptions<Registry extends AnyActorRegistry, ActorName extends keyof ExtractActorsFromRegistry<Registry
|
|
73
|
+
interface ActorOptions<Registry extends AnyActorRegistry, ActorName extends keyof ExtractActorsFromRegistry<Registry> & string> {
|
|
74
74
|
/**
|
|
75
75
|
* Typesafe name of the actor.
|
|
76
76
|
* This should match the actor's name in the app's actor definitions.
|
|
@@ -86,7 +86,7 @@ interface ActorOptions<Registry extends AnyActorRegistry, ActorName extends keyo
|
|
|
86
86
|
/**
|
|
87
87
|
* Parameters for the actor.
|
|
88
88
|
*/
|
|
89
|
-
params?:
|
|
89
|
+
params?: ExtractActorsFromRegistry<Registry>[ActorName]["params"];
|
|
90
90
|
/** Region to create the actor in if it doesn't exist. */
|
|
91
91
|
createInRegion?: string;
|
|
92
92
|
/** Input data to pass to the actor. */
|
|
@@ -103,7 +103,7 @@ interface ActorOptions<Registry extends AnyActorRegistry, ActorName extends keyo
|
|
|
103
103
|
*/
|
|
104
104
|
noCreate?: boolean;
|
|
105
105
|
}
|
|
106
|
-
type ActorsStateDerived<Registry extends AnyActorRegistry, WorkerName extends keyof ExtractActorsFromRegistry<Registry
|
|
106
|
+
type ActorsStateDerived<Registry extends AnyActorRegistry, WorkerName extends keyof ExtractActorsFromRegistry<Registry> & string> = Derived<Omit<InternalRivetKitStore["actors"][string], "handle" | "connection"> & {
|
|
107
107
|
handle: ActorHandle<ExtractActorsFromRegistry<Registry>[WorkerName]> | null;
|
|
108
108
|
connection: ActorConn<ExtractActorsFromRegistry<Registry>[WorkerName]> | null;
|
|
109
109
|
/** @deprecated Use `connStatus === "connected"` instead */
|
|
@@ -113,20 +113,13 @@ type AnyActorOptions = ActorOptions<AnyActorRegistry, any>;
|
|
|
113
113
|
interface CreateRivetKitOptions<Registry extends AnyActorRegistry> {
|
|
114
114
|
hashFunction?: (opts: ActorOptions<Registry, any>) => string;
|
|
115
115
|
}
|
|
116
|
-
declare function createRivetKit<Registry extends AnyActorRegistry
|
|
117
|
-
getOrCreateActor: <ActorName extends keyof
|
|
118
|
-
state: ActorsStateDerived<Registry, ActorName>;
|
|
119
|
-
key: string;
|
|
120
|
-
mount: () => () => void;
|
|
121
|
-
create: () => void;
|
|
122
|
-
refCount: number;
|
|
123
|
-
cleanupTimeout: ReturnType<typeof setTimeout> | null;
|
|
124
|
-
} | {
|
|
116
|
+
declare function createRivetKit<Registry extends AnyActorRegistry>(client: Client<Registry>, createOpts?: CreateRivetKitOptions<Registry>): {
|
|
117
|
+
getOrCreateActor: <ActorName extends keyof ExtractActorsFromRegistry<Registry> & string>(actorOpts: ActorOptions<Registry, ActorName>) => {
|
|
125
118
|
mount: () => () => void;
|
|
126
119
|
state: ActorsStateDerived<Registry, ActorName>;
|
|
127
120
|
key: string;
|
|
128
121
|
};
|
|
129
|
-
store: Store<InternalRivetKitStore
|
|
122
|
+
store: Store<InternalRivetKitStore, (cb: InternalRivetKitStore) => InternalRivetKitStore>;
|
|
130
123
|
};
|
|
131
124
|
|
|
132
125
|
export { type ActorOptions, type ActorsStateDerived, type AnyActorOptions, type AnyActorRegistry, type CreateRivetKitOptions, createRivetKit };
|
package/dist/mod.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { ActorConnStatus } from 'rivetkit/client';
|
|
|
5
5
|
|
|
6
6
|
type AnyActorRegistry = Registry<any>;
|
|
7
7
|
|
|
8
|
-
interface ActorStateReference
|
|
8
|
+
interface ActorStateReference {
|
|
9
9
|
/**
|
|
10
10
|
* The unique identifier for the actor.
|
|
11
11
|
* This is a hash generated from the actor's options.
|
|
@@ -17,12 +17,12 @@ interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
|
17
17
|
* The state of the actor, derived from the store.
|
|
18
18
|
* This includes the actor's connection and handle.
|
|
19
19
|
*/
|
|
20
|
-
handle: ActorHandle<
|
|
20
|
+
handle: ActorHandle<AnyActorDefinition> | null;
|
|
21
21
|
/**
|
|
22
22
|
* The connection to the actor.
|
|
23
23
|
* This is used to communicate with the actor in realtime.
|
|
24
24
|
*/
|
|
25
|
-
connection: ActorConn<
|
|
25
|
+
connection: ActorConn<AnyActorDefinition> | null;
|
|
26
26
|
/**
|
|
27
27
|
* The connection status of the actor.
|
|
28
28
|
*/
|
|
@@ -35,7 +35,7 @@ interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
|
35
35
|
* Options for the actor, including its name, key, parameters, and whether it is enabled.
|
|
36
36
|
*/
|
|
37
37
|
opts: {
|
|
38
|
-
name:
|
|
38
|
+
name: string;
|
|
39
39
|
/**
|
|
40
40
|
* Unique key for the actor instance.
|
|
41
41
|
* This can be a string or an array of strings to create multiple instances.
|
|
@@ -46,7 +46,7 @@ interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
|
46
46
|
* Parameters for the actor.
|
|
47
47
|
* These are additional options that can be passed to the actor.
|
|
48
48
|
*/
|
|
49
|
-
params?:
|
|
49
|
+
params?: unknown;
|
|
50
50
|
/** Region to create the actor in if it doesn't exist. */
|
|
51
51
|
createInRegion?: string;
|
|
52
52
|
/** Input data to pass to the actor. */
|
|
@@ -64,13 +64,13 @@ interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
|
64
64
|
noCreate?: boolean;
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
|
-
interface InternalRivetKitStore
|
|
68
|
-
actors: Record<string, ActorStateReference
|
|
67
|
+
interface InternalRivetKitStore {
|
|
68
|
+
actors: Record<string, ActorStateReference>;
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
71
|
* Options for configuring a actor in RivetKit.
|
|
72
72
|
*/
|
|
73
|
-
interface ActorOptions<Registry extends AnyActorRegistry, ActorName extends keyof ExtractActorsFromRegistry<Registry
|
|
73
|
+
interface ActorOptions<Registry extends AnyActorRegistry, ActorName extends keyof ExtractActorsFromRegistry<Registry> & string> {
|
|
74
74
|
/**
|
|
75
75
|
* Typesafe name of the actor.
|
|
76
76
|
* This should match the actor's name in the app's actor definitions.
|
|
@@ -86,7 +86,7 @@ interface ActorOptions<Registry extends AnyActorRegistry, ActorName extends keyo
|
|
|
86
86
|
/**
|
|
87
87
|
* Parameters for the actor.
|
|
88
88
|
*/
|
|
89
|
-
params?:
|
|
89
|
+
params?: ExtractActorsFromRegistry<Registry>[ActorName]["params"];
|
|
90
90
|
/** Region to create the actor in if it doesn't exist. */
|
|
91
91
|
createInRegion?: string;
|
|
92
92
|
/** Input data to pass to the actor. */
|
|
@@ -103,7 +103,7 @@ interface ActorOptions<Registry extends AnyActorRegistry, ActorName extends keyo
|
|
|
103
103
|
*/
|
|
104
104
|
noCreate?: boolean;
|
|
105
105
|
}
|
|
106
|
-
type ActorsStateDerived<Registry extends AnyActorRegistry, WorkerName extends keyof ExtractActorsFromRegistry<Registry
|
|
106
|
+
type ActorsStateDerived<Registry extends AnyActorRegistry, WorkerName extends keyof ExtractActorsFromRegistry<Registry> & string> = Derived<Omit<InternalRivetKitStore["actors"][string], "handle" | "connection"> & {
|
|
107
107
|
handle: ActorHandle<ExtractActorsFromRegistry<Registry>[WorkerName]> | null;
|
|
108
108
|
connection: ActorConn<ExtractActorsFromRegistry<Registry>[WorkerName]> | null;
|
|
109
109
|
/** @deprecated Use `connStatus === "connected"` instead */
|
|
@@ -113,20 +113,13 @@ type AnyActorOptions = ActorOptions<AnyActorRegistry, any>;
|
|
|
113
113
|
interface CreateRivetKitOptions<Registry extends AnyActorRegistry> {
|
|
114
114
|
hashFunction?: (opts: ActorOptions<Registry, any>) => string;
|
|
115
115
|
}
|
|
116
|
-
declare function createRivetKit<Registry extends AnyActorRegistry
|
|
117
|
-
getOrCreateActor: <ActorName extends keyof
|
|
118
|
-
state: ActorsStateDerived<Registry, ActorName>;
|
|
119
|
-
key: string;
|
|
120
|
-
mount: () => () => void;
|
|
121
|
-
create: () => void;
|
|
122
|
-
refCount: number;
|
|
123
|
-
cleanupTimeout: ReturnType<typeof setTimeout> | null;
|
|
124
|
-
} | {
|
|
116
|
+
declare function createRivetKit<Registry extends AnyActorRegistry>(client: Client<Registry>, createOpts?: CreateRivetKitOptions<Registry>): {
|
|
117
|
+
getOrCreateActor: <ActorName extends keyof ExtractActorsFromRegistry<Registry> & string>(actorOpts: ActorOptions<Registry, ActorName>) => {
|
|
125
118
|
mount: () => () => void;
|
|
126
119
|
state: ActorsStateDerived<Registry, ActorName>;
|
|
127
120
|
key: string;
|
|
128
121
|
};
|
|
129
|
-
store: Store<InternalRivetKitStore
|
|
122
|
+
store: Store<InternalRivetKitStore, (cb: InternalRivetKitStore) => InternalRivetKitStore>;
|
|
130
123
|
};
|
|
131
124
|
|
|
132
125
|
export { type ActorOptions, type ActorsStateDerived, type AnyActorOptions, type AnyActorRegistry, type CreateRivetKitOptions, createRivetKit };
|
package/dist/mod.js
CHANGED
|
@@ -140,11 +140,12 @@ function getOrCreateActor(client, createOpts, store, cache, actorOpts) {
|
|
|
140
140
|
}
|
|
141
141
|
};
|
|
142
142
|
};
|
|
143
|
+
const boundCreate = () => create(client, store, key);
|
|
143
144
|
cache.set(key, {
|
|
144
145
|
state: derived,
|
|
145
146
|
key,
|
|
146
147
|
mount,
|
|
147
|
-
create:
|
|
148
|
+
create: boundCreate,
|
|
148
149
|
refCount: 0,
|
|
149
150
|
cleanupTimeout: null
|
|
150
151
|
});
|
|
@@ -166,21 +167,13 @@ function create(client, store, key) {
|
|
|
166
167
|
error: null
|
|
167
168
|
});
|
|
168
169
|
try {
|
|
169
|
-
const handle = actor.opts.noCreate ? client.get(
|
|
170
|
-
actor.opts.
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
)
|
|
176
|
-
actor.opts.name,
|
|
177
|
-
actor.opts.key,
|
|
178
|
-
{
|
|
179
|
-
params: actor.opts.params,
|
|
180
|
-
createInRegion: actor.opts.createInRegion,
|
|
181
|
-
createWithInput: actor.opts.createWithInput
|
|
182
|
-
}
|
|
183
|
-
);
|
|
170
|
+
const handle = actor.opts.noCreate ? client.get(actor.opts.name, actor.opts.key, {
|
|
171
|
+
params: actor.opts.params
|
|
172
|
+
}) : client.getOrCreate(actor.opts.name, actor.opts.key, {
|
|
173
|
+
params: actor.opts.params,
|
|
174
|
+
createInRegion: actor.opts.createInRegion,
|
|
175
|
+
createWithInput: actor.opts.createWithInput
|
|
176
|
+
});
|
|
184
177
|
const connection = handle.connect();
|
|
185
178
|
updateActor(store, key, {
|
|
186
179
|
handle,
|
package/dist/mod.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/rivet/rivet/rivetkit-typescript/packages/framework-base/dist/mod.js","../src/mod.ts"],"names":["store","cached"],"mappings":"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","file":"/home/runner/work/rivet/rivet/rivetkit-typescript/packages/framework-base/dist/mod.js","sourcesContent":[null,"import { Derived, Effect, Store } from \"@tanstack/store\";\nimport equal from \"fast-deep-equal\";\nimport type { AnyActorDefinition, Registry } from \"rivetkit\";\nimport {\n\ttype ActorConn,\n\ttype ActorConnStatus,\n\ttype ActorHandle,\n\ttype Client,\n\ttype ExtractActorsFromRegistry,\n} from \"rivetkit/client\";\n\nexport type AnyActorRegistry = Registry<any>;\n\nexport type { ActorConnStatus };\n\ninterface ActorStateReference<AD extends AnyActorDefinition> {\n\t/**\n\t * The unique identifier for the actor.\n\t * This is a hash generated from the actor's options.\n\t * It is used to identify the actor instance in the store.\n\t * @internal\n\t */\n\thash: string;\n\t/**\n\t * The state of the actor, derived from the store.\n\t * This includes the actor's connection and handle.\n\t */\n\thandle: ActorHandle<AD> | null;\n\t/**\n\t * The connection to the actor.\n\t * This is used to communicate with the actor in realtime.\n\t */\n\tconnection: ActorConn<AD> | null;\n\t/**\n\t * The connection status of the actor.\n\t */\n\tconnStatus: ActorConnStatus;\n\t/**\n\t * The error that occurred while trying to connect to the actor, if any.\n\t */\n\terror: Error | null;\n\t/**\n\t * Options for the actor, including its name, key, parameters, and whether it is enabled.\n\t */\n\topts: {\n\t\tname: keyof AD;\n\t\t/**\n\t\t * Unique key for the actor instance.\n\t\t * This can be a string or an array of strings to create multiple instances.\n\t\t * @example \"abc\" or [\"abc\", \"def\"]\n\t\t */\n\t\tkey: string | string[];\n\t\t/**\n\t\t * Parameters for the actor.\n\t\t * These are additional options that can be passed to the actor.\n\t\t */\n\t\tparams?: Record<string, string>;\n\t\t/** Region to create the actor in if it doesn't exist. */\n\t\tcreateInRegion?: string;\n\t\t/** Input data to pass to the actor. */\n\t\tcreateWithInput?: unknown;\n\t\t/**\n\t\t * Whether the actor is enabled.\n\t\t * Defaults to true.\n\t\t */\n\t\tenabled?: boolean;\n\t\t/**\n\t\t * If true, only gets the actor if it already exists. Does not create the actor.\n\t\t * Throws an error if the actor is not found.\n\t\t * Defaults to false.\n\t\t */\n\t\tnoCreate?: boolean;\n\t};\n}\n\ninterface InternalRivetKitStore<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n> {\n\tactors: Record<string, ActorStateReference<Actors>>;\n}\n\n/**\n * Options for configuring a actor in RivetKit.\n */\nexport interface ActorOptions<\n\tRegistry extends AnyActorRegistry,\n\tActorName extends keyof ExtractActorsFromRegistry<Registry>,\n> {\n\t/**\n\t * Typesafe name of the actor.\n\t * This should match the actor's name in the app's actor definitions.\n\t * @example \"chatRoom\"\n\t */\n\tname: ActorName;\n\t/**\n\t * Unique key for the actor instance.\n\t * This can be a string or an array of strings to create multiple instances.\n\t * @example \"abc\" or [\"abc\", \"def\"]\n\t */\n\tkey: string | string[];\n\t/**\n\t * Parameters for the actor.\n\t */\n\tparams?: Registry[ExtractActorsFromRegistry<Registry>][\"params\"];\n\t/** Region to create the actor in if it doesn't exist. */\n\tcreateInRegion?: string;\n\t/** Input data to pass to the actor. */\n\tcreateWithInput?: unknown;\n\t/**\n\t * Whether the actor is enabled.\n\t * Defaults to true.\n\t */\n\tenabled?: boolean;\n\t/**\n\t * If true, only gets the actor if it already exists. Does not create the actor.\n\t * Throws an error if the actor is not found.\n\t * Defaults to false.\n\t */\n\tnoCreate?: boolean;\n}\n\nexport type ActorsStateDerived<\n\tRegistry extends AnyActorRegistry,\n\tWorkerName extends keyof ExtractActorsFromRegistry<Registry>,\n> = Derived<\n\tOmit<\n\t\tInternalRivetKitStore<\n\t\t\tRegistry,\n\t\t\tExtractActorsFromRegistry<Registry>\n\t\t>[\"actors\"][string],\n\t\t\"handle\" | \"connection\"\n\t> & {\n\t\thandle: ActorHandle<\n\t\t\tExtractActorsFromRegistry<Registry>[WorkerName]\n\t\t> | null;\n\t\tconnection: ActorConn<\n\t\t\tExtractActorsFromRegistry<Registry>[WorkerName]\n\t\t> | null;\n\t\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\t\tisConnected: boolean;\n\t}\n>;\n\nexport type AnyActorOptions = ActorOptions<AnyActorRegistry, any>;\n\nexport interface CreateRivetKitOptions<Registry extends AnyActorRegistry> {\n\thashFunction?: (opts: ActorOptions<Registry, any>) => string;\n}\n\ntype ComputedActorState<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n> = InternalRivetKitStore<Registry, Actors>[\"actors\"][string] & {\n\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\tisConnected: boolean;\n};\n\ntype ActorCache<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n> = Map<\n\tstring,\n\t{\n\t\tstate: Derived<ComputedActorState<Registry, Actors>>;\n\t\tkey: string;\n\t\tmount: () => () => void;\n\t\tcreate: () => void;\n\t\trefCount: number;\n\t\tcleanupTimeout: ReturnType<typeof setTimeout> | null;\n\t}\n>;\n\nexport function createRivetKit<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n>(client: Client<Registry>, createOpts: CreateRivetKitOptions<Registry> = {}) {\n\tconst store = new Store<InternalRivetKitStore<Registry, Actors>>({\n\t\tactors: {},\n\t});\n\n\tconst cache: ActorCache<Registry, Actors> = new Map();\n\n\treturn {\n\t\tgetOrCreateActor: <ActorName extends keyof Actors>(\n\t\t\tactorOpts: ActorOptions<Registry, ActorName>,\n\t\t) => getOrCreateActor(client, createOpts, store, cache, actorOpts),\n\t\tstore,\n\t};\n}\n\ntype ActorUpdates<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n> = Partial<InternalRivetKitStore<Registry, Actors>[\"actors\"][string]>;\n\nfunction updateActor<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n>(\n\tstore: Store<InternalRivetKitStore<Registry, Actors>>,\n\tkey: string,\n\tupdates: ActorUpdates<Registry, Actors>,\n) {\n\tstore.setState((prev) => ({\n\t\t...prev,\n\t\tactors: {\n\t\t\t...prev.actors,\n\t\t\t[key]: { ...prev.actors[key], ...updates },\n\t\t},\n\t}));\n}\n\n// See README.md for lifecycle documentation.\nfunction getOrCreateActor<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n\tActorName extends keyof Actors,\n>(\n\tclient: Client<Registry>,\n\tcreateOpts: CreateRivetKitOptions<Registry>,\n\tstore: Store<InternalRivetKitStore<Registry, Actors>>,\n\tcache: ActorCache<Registry, Actors>,\n\tactorOpts: ActorOptions<Registry, ActorName>,\n) {\n\tconst hash = createOpts.hashFunction || defaultHashFunction;\n\n\tconst normalizedOpts = {\n\t\t...actorOpts,\n\t\tenabled: actorOpts.enabled ?? true,\n\t};\n\n\tconst key = hash(normalizedOpts);\n\n\t// Sync opts to store on every call (even for cached entries)\n\t// Use queueMicrotask for updates to avoid \"Cannot update a component while rendering\" React error\n\tconst existing = store.state.actors[key];\n\tif (!existing) {\n\t\tstore.setState((prev) => ({\n\t\t\t...prev,\n\t\t\tactors: {\n\t\t\t\t...prev.actors,\n\t\t\t\t[key]: {\n\t\t\t\t\thash: key,\n\t\t\t\t\tconnStatus: \"idle\",\n\t\t\t\t\tconnection: null,\n\t\t\t\t\thandle: null,\n\t\t\t\t\terror: null,\n\t\t\t\t\topts: normalizedOpts,\n\t\t\t\t},\n\t\t\t},\n\t\t}));\n\t} else if (!optsEqual(existing.opts, normalizedOpts)) {\n\t\t// Defer opts update to avoid triggering re-render during render\n\t\tqueueMicrotask(() => {\n\t\t\tupdateActor(store, key, { opts: normalizedOpts });\n\t\t});\n\t}\n\n\tconst cached = cache.get(key);\n\tif (cached) {\n\t\treturn {\n\t\t\t...cached,\n\t\t\tstate: cached.state as ActorsStateDerived<Registry, ActorName>,\n\t\t};\n\t}\n\n\tconst derived = new Derived({\n\t\tfn: ({ currDepVals: [store] }) => {\n\t\t\tconst actor = store.actors[key];\n\t\t\treturn {\n\t\t\t\t...actor,\n\t\t\t\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\t\t\t\tisConnected: actor.connStatus === \"connected\",\n\t\t\t};\n\t\t},\n\t\tdeps: [store],\n\t});\n\n\t// Handle enabled/disabled state changes.\n\t// Initial connection is triggered directly in mount() since Effect\n\t// only runs on state changes, not on mount.\n\tconst effect = new Effect({\n\t\tfn: () => {\n\t\t\tconst actor = store.state.actors[key];\n\t\t\tif (!actor) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Actor with key \"${key}\" not found in store. This indicates a bug in cleanup logic.`,\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Dispose connection if disabled\n\t\t\tif (!actor.opts.enabled && actor.connection) {\n\t\t\t\tactor.connection.dispose();\n\n\t\t\t\t// Reset state so re-enabling will reconnect\n\t\t\t\tupdateActor(store, key, {\n\t\t\t\t\tconnection: null,\n\t\t\t\t\thandle: null,\n\t\t\t\t\tconnStatus: \"idle\",\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Reconnect when re-enabled after being disabled\n\t\t\t// Defer to avoid \"Cannot update a component while rendering\" React error\n\t\t\tif (\n\t\t\t\tactor.connStatus === \"idle\" &&\n\t\t\t\tactor.opts.enabled\n\t\t\t) {\n\t\t\t\tqueueMicrotask(() => {\n\t\t\t\t\t// Re-check state after microtask in case it changed\n\t\t\t\t\tconst currentActor = store.state.actors[key];\n\t\t\t\t\tif (\n\t\t\t\t\t\tcurrentActor &&\n\t\t\t\t\t\tcurrentActor.connStatus === \"idle\" &&\n\t\t\t\t\t\tcurrentActor.opts.enabled\n\t\t\t\t\t) {\n\t\t\t\t\t\tcreate<Registry, Actors, ActorName>(client, store, key);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\t\tdeps: [derived],\n\t});\n\n\t// Track subscriptions for ref counting\n\tlet unsubscribeDerived: (() => void) | null = null;\n\tlet unsubscribeEffect: (() => void) | null = null;\n\n\tconst mount = () => {\n\t\tconst cached = cache.get(key);\n\t\tif (!cached) {\n\t\t\tthrow new Error(\n\t\t\t\t`Actor with key \"${key}\" not found in cache. This indicates a bug in cleanup logic.`,\n\t\t\t);\n\t\t}\n\n\t\t// Cancel pending cleanup\n\t\tif (cached.cleanupTimeout !== null) {\n\t\t\tclearTimeout(cached.cleanupTimeout);\n\t\t\tcached.cleanupTimeout = null;\n\t\t}\n\n\t\t// Increment ref count\n\t\tcached.refCount++;\n\n\t\t// Mount derived/effect on first reference (or re-mount after cleanup)\n\t\tif (cached.refCount === 1) {\n\t\t\tunsubscribeDerived = derived.mount();\n\t\t\tunsubscribeEffect = effect.mount();\n\n\t\t\t// Effect doesn't run immediately on mount, only on state changes.\n\t\t\t// Trigger initial connection if actor is enabled and idle.\n\t\t\tconst actor = store.state.actors[key];\n\t\t\tif (\n\t\t\t\tactor &&\n\t\t\t\tactor.opts.enabled &&\n\t\t\t\tactor.connStatus === \"idle\"\n\t\t\t) {\n\t\t\t\tcreate<Registry, Actors, ActorName>(client, store, key);\n\t\t\t}\n\t\t}\n\n\t\treturn () => {\n\t\t\t// Decrement ref count\n\t\t\tcached.refCount--;\n\n\t\t\tif (cached.refCount === 0) {\n\t\t\t\t// Deferred cleanup prevents needless reconnection when:\n\t\t\t\t// - React Strict Mode's unmount/remount cycle\n\t\t\t\t// - useActor hook moves between components in the same render cycle\n\t\t\t\tcached.cleanupTimeout = setTimeout(() => {\n\t\t\t\t\tcached.cleanupTimeout = null;\n\t\t\t\t\tif (cached.refCount > 0) return;\n\n\t\t\t\t\t// Unsubscribe from derived/effect\n\t\t\t\t\tunsubscribeDerived?.();\n\t\t\t\t\tunsubscribeEffect?.();\n\t\t\t\t\tunsubscribeDerived = null;\n\t\t\t\t\tunsubscribeEffect = null;\n\n\t\t\t\t\t// Dispose connection\n\t\t\t\t\tconst actor = store.state.actors[key];\n\t\t\t\t\tif (actor?.connection) {\n\t\t\t\t\t\tactor.connection.dispose();\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove from store and cache\n\t\t\t\t\tstore.setState((prev) => {\n\t\t\t\t\t\tconst { [key]: _, ...rest } = prev.actors;\n\t\t\t\t\t\treturn { ...prev, actors: rest };\n\t\t\t\t\t});\n\t\t\t\t\tcache.delete(key);\n\t\t\t\t}, 0);\n\t\t\t}\n\t\t};\n\t};\n\n\tcache.set(key, {\n\t\tstate: derived,\n\t\tkey,\n\t\tmount,\n\t\tcreate: create.bind(undefined, client, store, key),\n\t\trefCount: 0,\n\t\tcleanupTimeout: null,\n\t});\n\n\treturn {\n\t\tmount,\n\t\tstate: derived as ActorsStateDerived<Registry, ActorName>,\n\t\tkey,\n\t};\n}\n\nfunction create<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n\tActorName extends keyof Actors,\n>(\n\tclient: Client<Registry>,\n\tstore: Store<InternalRivetKitStore<Registry, Actors>>,\n\tkey: string,\n) {\n\tconst actor = store.state.actors[key];\n\tif (!actor) {\n\t\tthrow new Error(\n\t\t\t`Actor with key \"${key}\" not found in store. This indicates a bug in cleanup logic.`,\n\t\t);\n\t}\n\n\t// Save actor to map\n\tupdateActor(store, key, {\n\t\tconnStatus: \"connecting\",\n\t\terror: null,\n\t});\n\n\ttry {\n\t\tconst handle = actor.opts.noCreate\n\t\t\t? client.get(\n\t\t\t\t\tactor.opts.name as string,\n\t\t\t\t\tactor.opts.key,\n\t\t\t\t\t{\n\t\t\t\t\t\tparams: actor.opts.params,\n\t\t\t\t\t},\n\t\t\t\t)\n\t\t\t: client.getOrCreate(\n\t\t\t\t\tactor.opts.name as string,\n\t\t\t\t\tactor.opts.key,\n\t\t\t\t\t{\n\t\t\t\t\t\tparams: actor.opts.params,\n\t\t\t\t\t\tcreateInRegion: actor.opts.createInRegion,\n\t\t\t\t\t\tcreateWithInput: actor.opts.createWithInput,\n\t\t\t\t\t},\n\t\t\t\t);\n\n\t\tconst connection = handle.connect();\n\n\t\t// Store connection BEFORE registering callbacks to avoid race condition\n\t\t// where status change fires before connection is stored\n\t\tupdateActor(store, key, {\n\t\t\thandle: handle as ActorHandle<Actors[ActorName]>,\n\t\t\tconnection: connection as ActorConn<Actors[ActorName]>,\n\t\t});\n\n\t\t// Subscribe to connection state changes\n\t\tconnection.onStatusChange((status) => {\n\t\t\tstore.setState((prev) => {\n\t\t\t\t// Only update if this is still the active connection\n\t\t\t\tconst isActiveConnection = prev.actors[key]?.connection === connection;\n\t\t\t\tif (!isActiveConnection) return prev;\n\t\t\t\treturn {\n\t\t\t\t\t...prev,\n\t\t\t\t\tactors: {\n\t\t\t\t\t\t...prev.actors,\n\t\t\t\t\t\t[key]: {\n\t\t\t\t\t\t\t...prev.actors[key],\n\t\t\t\t\t\t\tconnStatus: status,\n\t\t\t\t\t\t\t// Only clear error when successfully connected\n\t\t\t\t\t\t\t...(status === \"connected\"\n\t\t\t\t\t\t\t\t? { error: null }\n\t\t\t\t\t\t\t\t: {}),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t};\n\t\t\t});\n\t\t});\n\n\t\t// onError is followed by onClose which will set connStatus to Disconnected\n\t\tconnection.onError((error) => {\n\t\t\tstore.setState((prev) => {\n\t\t\t\t// Only update if this is still the active connection\n\t\t\t\tif (prev.actors[key]?.connection !== connection) return prev;\n\t\t\t\treturn {\n\t\t\t\t\t...prev,\n\t\t\t\t\tactors: {\n\t\t\t\t\t\t...prev.actors,\n\t\t\t\t\t\t[key]: {\n\t\t\t\t\t\t\t...prev.actors[key],\n\t\t\t\t\t\t\terror,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t};\n\t\t\t});\n\t\t});\n\t} catch (error) {\n\t\tconsole.error(\"Failed to create actor connection\", error);\n\t\t// Use Disconnected so Effect won't auto-retry\n\t\t// User must re-enable or take action to retry\n\t\tupdateActor(store, key, {\n\t\t\tconnStatus: \"disconnected\",\n\t\t\terror: error as Error,\n\t\t});\n\t}\n}\n\nfunction defaultHashFunction({ name, key, params, noCreate }: AnyActorOptions) {\n\treturn JSON.stringify({ name, key, params, noCreate });\n}\n\nfunction optsEqual(a: AnyActorOptions, b: AnyActorOptions) {\n\treturn equal(a, b);\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/rivet/rivet/rivetkit-typescript/packages/framework-base/dist/mod.js","../src/mod.ts"],"names":["store","cached"],"mappings":"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","file":"/home/runner/work/rivet/rivet/rivetkit-typescript/packages/framework-base/dist/mod.js","sourcesContent":[null,"import { Derived, Effect, Store } from \"@tanstack/store\";\nimport equal from \"fast-deep-equal\";\nimport type { AnyActorDefinition, Registry } from \"rivetkit\";\nimport {\n\ttype ActorConn,\n\ttype ActorConnStatus,\n\ttype ActorHandle,\n\ttype Client,\n\ttype ExtractActorsFromRegistry,\n} from \"rivetkit/client\";\n\nexport type AnyActorRegistry = Registry<any>;\n\nexport type { ActorConnStatus };\n\ninterface ActorStateReference {\n\t/**\n\t * The unique identifier for the actor.\n\t * This is a hash generated from the actor's options.\n\t * It is used to identify the actor instance in the store.\n\t * @internal\n\t */\n\thash: string;\n\t/**\n\t * The state of the actor, derived from the store.\n\t * This includes the actor's connection and handle.\n\t */\n\thandle: ActorHandle<AnyActorDefinition> | null;\n\t/**\n\t * The connection to the actor.\n\t * This is used to communicate with the actor in realtime.\n\t */\n\tconnection: ActorConn<AnyActorDefinition> | null;\n\t/**\n\t * The connection status of the actor.\n\t */\n\tconnStatus: ActorConnStatus;\n\t/**\n\t * The error that occurred while trying to connect to the actor, if any.\n\t */\n\terror: Error | null;\n\t/**\n\t * Options for the actor, including its name, key, parameters, and whether it is enabled.\n\t */\n\topts: {\n\t\tname: string;\n\t\t/**\n\t\t * Unique key for the actor instance.\n\t\t * This can be a string or an array of strings to create multiple instances.\n\t\t * @example \"abc\" or [\"abc\", \"def\"]\n\t\t */\n\t\tkey: string | string[];\n\t\t/**\n\t\t * Parameters for the actor.\n\t\t * These are additional options that can be passed to the actor.\n\t\t */\n\t\tparams?: unknown;\n\t\t/** Region to create the actor in if it doesn't exist. */\n\t\tcreateInRegion?: string;\n\t\t/** Input data to pass to the actor. */\n\t\tcreateWithInput?: unknown;\n\t\t/**\n\t\t * Whether the actor is enabled.\n\t\t * Defaults to true.\n\t\t */\n\t\tenabled?: boolean;\n\t\t/**\n\t\t * If true, only gets the actor if it already exists. Does not create the actor.\n\t\t * Throws an error if the actor is not found.\n\t\t * Defaults to false.\n\t\t */\n\t\tnoCreate?: boolean;\n\t};\n}\n\ninterface InternalRivetKitStore {\n\tactors: Record<string, ActorStateReference>;\n}\n\n/**\n * Options for configuring a actor in RivetKit.\n */\nexport interface ActorOptions<\n\tRegistry extends AnyActorRegistry,\n\tActorName extends keyof ExtractActorsFromRegistry<Registry> & string,\n> {\n\t/**\n\t * Typesafe name of the actor.\n\t * This should match the actor's name in the app's actor definitions.\n\t * @example \"chatRoom\"\n\t */\n\tname: ActorName;\n\t/**\n\t * Unique key for the actor instance.\n\t * This can be a string or an array of strings to create multiple instances.\n\t * @example \"abc\" or [\"abc\", \"def\"]\n\t */\n\tkey: string | string[];\n\t/**\n\t * Parameters for the actor.\n\t */\n\tparams?: ExtractActorsFromRegistry<Registry>[ActorName][\"params\"];\n\t/** Region to create the actor in if it doesn't exist. */\n\tcreateInRegion?: string;\n\t/** Input data to pass to the actor. */\n\tcreateWithInput?: unknown;\n\t/**\n\t * Whether the actor is enabled.\n\t * Defaults to true.\n\t */\n\tenabled?: boolean;\n\t/**\n\t * If true, only gets the actor if it already exists. Does not create the actor.\n\t * Throws an error if the actor is not found.\n\t * Defaults to false.\n\t */\n\tnoCreate?: boolean;\n}\n\nexport type ActorsStateDerived<\n\tRegistry extends AnyActorRegistry,\n\tWorkerName extends keyof ExtractActorsFromRegistry<Registry> & string,\n> = Derived<\n\tOmit<InternalRivetKitStore[\"actors\"][string], \"handle\" | \"connection\"> & {\n\t\thandle: ActorHandle<\n\t\t\tExtractActorsFromRegistry<Registry>[WorkerName]\n\t\t> | null;\n\t\tconnection: ActorConn<\n\t\t\tExtractActorsFromRegistry<Registry>[WorkerName]\n\t\t> | null;\n\t\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\t\tisConnected: boolean;\n\t}\n>;\n\nexport type AnyActorOptions = ActorOptions<AnyActorRegistry, any>;\n\nexport interface CreateRivetKitOptions<Registry extends AnyActorRegistry> {\n\thashFunction?: (opts: ActorOptions<Registry, any>) => string;\n}\n\ntype ComputedActorState = InternalRivetKitStore[\"actors\"][string] & {\n\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\tisConnected: boolean;\n};\n\ntype ActorCache = Map<\n\tstring,\n\t{\n\t\tstate: Derived<ComputedActorState>;\n\t\tkey: string;\n\t\tmount: () => () => void;\n\t\tcreate: () => void;\n\t\trefCount: number;\n\t\tcleanupTimeout: ReturnType<typeof setTimeout> | null;\n\t}\n>;\n\nexport function createRivetKit<Registry extends AnyActorRegistry>(\n\tclient: Client<Registry>,\n\tcreateOpts: CreateRivetKitOptions<Registry> = {},\n) {\n\tconst store = new Store<InternalRivetKitStore>({\n\t\tactors: {},\n\t});\n\n\tconst cache: ActorCache = new Map();\n\n\treturn {\n\t\tgetOrCreateActor: <\n\t\t\tActorName extends keyof ExtractActorsFromRegistry<Registry> &\n\t\t\t\tstring,\n\t\t>(\n\t\t\tactorOpts: ActorOptions<Registry, ActorName>,\n\t\t): {\n\t\t\tmount: () => () => void;\n\t\t\tstate: ActorsStateDerived<Registry, ActorName>;\n\t\t\tkey: string;\n\t\t} => (getOrCreateActor as any)(client, createOpts, store, cache, actorOpts),\n\t\tstore,\n\t};\n}\n\ntype ActorUpdates = Partial<InternalRivetKitStore[\"actors\"][string]>;\n\nfunction updateActor(\n\tstore: Store<InternalRivetKitStore>,\n\tkey: string,\n\tupdates: ActorUpdates,\n) {\n\tstore.setState((prev) => ({\n\t\t...prev,\n\t\tactors: {\n\t\t\t...prev.actors,\n\t\t\t[key]: { ...prev.actors[key], ...updates },\n\t\t},\n\t}));\n}\n\n// See README.md for lifecycle documentation.\nfunction getOrCreateActor<\n\tRegistry extends AnyActorRegistry,\n\tActorName extends keyof ExtractActorsFromRegistry<Registry> & string,\n>(\n\tclient: Client<Registry>,\n\tcreateOpts: CreateRivetKitOptions<Registry>,\n\tstore: Store<InternalRivetKitStore>,\n\tcache: ActorCache,\n\tactorOpts: ActorOptions<Registry, ActorName>,\n) {\n\tconst hash = createOpts.hashFunction || defaultHashFunction;\n\n\tconst normalizedOpts = {\n\t\t...actorOpts,\n\t\tenabled: actorOpts.enabled ?? true,\n\t};\n\n\tconst key = hash(normalizedOpts);\n\n\t// Sync opts to store on every call (even for cached entries)\n\t// Use queueMicrotask for updates to avoid \"Cannot update a component while rendering\" React error\n\tconst existing = store.state.actors[key];\n\tif (!existing) {\n\t\tstore.setState((prev) => ({\n\t\t\t...prev,\n\t\t\tactors: {\n\t\t\t\t...prev.actors,\n\t\t\t\t[key]: {\n\t\t\t\t\thash: key,\n\t\t\t\t\tconnStatus: \"idle\",\n\t\t\t\t\tconnection: null,\n\t\t\t\t\thandle: null,\n\t\t\t\t\terror: null,\n\t\t\t\t\topts: normalizedOpts,\n\t\t\t\t},\n\t\t\t},\n\t\t}));\n\t} else if (!optsEqual(existing.opts, normalizedOpts)) {\n\t\t// Defer opts update to avoid triggering re-render during render\n\t\tqueueMicrotask(() => {\n\t\t\tupdateActor(store, key, { opts: normalizedOpts });\n\t\t});\n\t}\n\n\tconst cached = cache.get(key);\n\tif (cached) {\n\t\treturn {\n\t\t\t...cached,\n\t\t\tstate: cached.state as ActorsStateDerived<Registry, ActorName>,\n\t\t};\n\t}\n\n\tconst derived = new Derived({\n\t\tfn: ({ currDepVals: [store] }) => {\n\t\t\tconst actor = store.actors[key];\n\t\t\treturn {\n\t\t\t\t...actor,\n\t\t\t\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\t\t\t\tisConnected: actor.connStatus === \"connected\",\n\t\t\t};\n\t\t},\n\t\tdeps: [store],\n\t});\n\n\t// Handle enabled/disabled state changes.\n\t// Initial connection is triggered directly in mount() since Effect\n\t// only runs on state changes, not on mount.\n\tconst effect = new Effect({\n\t\tfn: () => {\n\t\t\tconst actor = store.state.actors[key];\n\t\t\tif (!actor) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Actor with key \"${key}\" not found in store. This indicates a bug in cleanup logic.`,\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Dispose connection if disabled\n\t\t\tif (!actor.opts.enabled && actor.connection) {\n\t\t\t\tactor.connection.dispose();\n\n\t\t\t\t// Reset state so re-enabling will reconnect\n\t\t\t\tupdateActor(store, key, {\n\t\t\t\t\tconnection: null,\n\t\t\t\t\thandle: null,\n\t\t\t\t\tconnStatus: \"idle\",\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Reconnect when re-enabled after being disabled\n\t\t\t// Defer to avoid \"Cannot update a component while rendering\" React error\n\t\t\tif (actor.connStatus === \"idle\" && actor.opts.enabled) {\n\t\t\t\tqueueMicrotask(() => {\n\t\t\t\t\t// Re-check state after microtask in case it changed\n\t\t\t\t\tconst currentActor = store.state.actors[key];\n\t\t\t\t\tif (\n\t\t\t\t\t\tcurrentActor &&\n\t\t\t\t\t\tcurrentActor.connStatus === \"idle\" &&\n\t\t\t\t\t\tcurrentActor.opts.enabled\n\t\t\t\t\t) {\n\t\t\t\t\t\t(create as Function)(client, store, key);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\t\tdeps: [derived],\n\t});\n\n\t// Track subscriptions for ref counting\n\tlet unsubscribeDerived: (() => void) | null = null;\n\tlet unsubscribeEffect: (() => void) | null = null;\n\n\tconst mount = () => {\n\t\tconst cached = cache.get(key);\n\t\tif (!cached) {\n\t\t\tthrow new Error(\n\t\t\t\t`Actor with key \"${key}\" not found in cache. This indicates a bug in cleanup logic.`,\n\t\t\t);\n\t\t}\n\n\t\t// Cancel pending cleanup\n\t\tif (cached.cleanupTimeout !== null) {\n\t\t\tclearTimeout(cached.cleanupTimeout);\n\t\t\tcached.cleanupTimeout = null;\n\t\t}\n\n\t\t// Increment ref count\n\t\tcached.refCount++;\n\n\t\t// Mount derived/effect on first reference (or re-mount after cleanup)\n\t\tif (cached.refCount === 1) {\n\t\t\tunsubscribeDerived = derived.mount();\n\t\t\tunsubscribeEffect = effect.mount();\n\n\t\t\t// Effect doesn't run immediately on mount, only on state changes.\n\t\t\t// Trigger initial connection if actor is enabled and idle.\n\t\t\tconst actor = store.state.actors[key];\n\t\t\tif (actor && actor.opts.enabled && actor.connStatus === \"idle\") {\n\t\t\t\t(create as Function)(client, store, key);\n\t\t\t}\n\t\t}\n\n\t\treturn () => {\n\t\t\t// Decrement ref count\n\t\t\tcached.refCount--;\n\n\t\t\tif (cached.refCount === 0) {\n\t\t\t\t// Deferred cleanup prevents needless reconnection when:\n\t\t\t\t// - React Strict Mode's unmount/remount cycle\n\t\t\t\t// - useActor hook moves between components in the same render cycle\n\t\t\t\tcached.cleanupTimeout = setTimeout(() => {\n\t\t\t\t\tcached.cleanupTimeout = null;\n\t\t\t\t\tif (cached.refCount > 0) return;\n\n\t\t\t\t\t// Unsubscribe from derived/effect\n\t\t\t\t\tunsubscribeDerived?.();\n\t\t\t\t\tunsubscribeEffect?.();\n\t\t\t\t\tunsubscribeDerived = null;\n\t\t\t\t\tunsubscribeEffect = null;\n\n\t\t\t\t\t// Dispose connection\n\t\t\t\t\tconst actor = store.state.actors[key];\n\t\t\t\t\tif (actor?.connection) {\n\t\t\t\t\t\tactor.connection.dispose();\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove from store and cache\n\t\t\t\t\tstore.setState((prev) => {\n\t\t\t\t\t\tconst { [key]: _, ...rest } = prev.actors;\n\t\t\t\t\t\treturn { ...prev, actors: rest };\n\t\t\t\t\t});\n\t\t\t\t\tcache.delete(key);\n\t\t\t\t}, 0);\n\t\t\t}\n\t\t};\n\t};\n\n\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\tconst boundCreate: () => void = () => (create as any)(client, store, key);\n\tcache.set(key, {\n\t\tstate: derived,\n\t\tkey,\n\t\tmount,\n\t\tcreate: boundCreate,\n\t\trefCount: 0,\n\t\tcleanupTimeout: null,\n\t});\n\n\treturn {\n\t\tmount,\n\t\tstate: derived as ActorsStateDerived<Registry, ActorName>,\n\t\tkey,\n\t};\n}\n\nfunction create<\n\tRegistry extends AnyActorRegistry,\n\tActorName extends keyof ExtractActorsFromRegistry<Registry> & string,\n>(client: Client<Registry>, store: Store<InternalRivetKitStore>, key: string) {\n\tconst actor = store.state.actors[key];\n\tif (!actor) {\n\t\tthrow new Error(\n\t\t\t`Actor with key \"${key}\" not found in store. This indicates a bug in cleanup logic.`,\n\t\t);\n\t}\n\n\t// Save actor to map\n\tupdateActor(store, key, {\n\t\tconnStatus: \"connecting\",\n\t\terror: null,\n\t});\n\n\ttry {\n\t\tconst handle = actor.opts.noCreate\n\t\t\t? client.get(actor.opts.name as string, actor.opts.key, {\n\t\t\t\t\tparams: actor.opts.params,\n\t\t\t\t})\n\t\t\t: client.getOrCreate(actor.opts.name as string, actor.opts.key, {\n\t\t\t\t\tparams: actor.opts.params,\n\t\t\t\t\tcreateInRegion: actor.opts.createInRegion,\n\t\t\t\t\tcreateWithInput: actor.opts.createWithInput,\n\t\t\t\t});\n\n\t\tconst connection = handle.connect();\n\n\t\t// Store connection BEFORE registering callbacks to avoid race condition\n\t\t// where status change fires before connection is stored\n\t\tupdateActor(store, key, {\n\t\t\thandle: handle as ActorHandle<\n\t\t\t\tExtractActorsFromRegistry<Registry>[ActorName]\n\t\t\t>,\n\t\t\tconnection: connection as ActorConn<\n\t\t\t\tExtractActorsFromRegistry<Registry>[ActorName]\n\t\t\t>,\n\t\t});\n\n\t\t// Subscribe to connection state changes\n\t\tconnection.onStatusChange((status) => {\n\t\t\tstore.setState((prev) => {\n\t\t\t\t// Only update if this is still the active connection\n\t\t\t\tconst isActiveConnection =\n\t\t\t\t\tprev.actors[key]?.connection === connection;\n\t\t\t\tif (!isActiveConnection) return prev;\n\t\t\t\treturn {\n\t\t\t\t\t...prev,\n\t\t\t\t\tactors: {\n\t\t\t\t\t\t...prev.actors,\n\t\t\t\t\t\t[key]: {\n\t\t\t\t\t\t\t...prev.actors[key],\n\t\t\t\t\t\t\tconnStatus: status,\n\t\t\t\t\t\t\t// Only clear error when successfully connected\n\t\t\t\t\t\t\t...(status === \"connected\" ? { error: null } : {}),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t};\n\t\t\t});\n\t\t});\n\n\t\t// onError is followed by onClose which will set connStatus to Disconnected\n\t\tconnection.onError((error) => {\n\t\t\tstore.setState((prev) => {\n\t\t\t\t// Only update if this is still the active connection\n\t\t\t\tif (prev.actors[key]?.connection !== connection) return prev;\n\t\t\t\treturn {\n\t\t\t\t\t...prev,\n\t\t\t\t\tactors: {\n\t\t\t\t\t\t...prev.actors,\n\t\t\t\t\t\t[key]: {\n\t\t\t\t\t\t\t...prev.actors[key],\n\t\t\t\t\t\t\terror,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t};\n\t\t\t});\n\t\t});\n\t} catch (error) {\n\t\tconsole.error(\"Failed to create actor connection\", error);\n\t\t// Use Disconnected so Effect won't auto-retry\n\t\t// User must re-enable or take action to retry\n\t\tupdateActor(store, key, {\n\t\t\tconnStatus: \"disconnected\",\n\t\t\terror: error as Error,\n\t\t});\n\t}\n}\n\nfunction defaultHashFunction({ name, key, params, noCreate }: AnyActorOptions) {\n\treturn JSON.stringify({ name, key, params, noCreate });\n}\n\nfunction optsEqual(a: AnyActorOptions, b: AnyActorOptions) {\n\treturn equal(a, b);\n}\n"]}
|
package/dist/mod.mjs
CHANGED
|
@@ -140,11 +140,12 @@ function getOrCreateActor(client, createOpts, store, cache, actorOpts) {
|
|
|
140
140
|
}
|
|
141
141
|
};
|
|
142
142
|
};
|
|
143
|
+
const boundCreate = () => create(client, store, key);
|
|
143
144
|
cache.set(key, {
|
|
144
145
|
state: derived,
|
|
145
146
|
key,
|
|
146
147
|
mount,
|
|
147
|
-
create:
|
|
148
|
+
create: boundCreate,
|
|
148
149
|
refCount: 0,
|
|
149
150
|
cleanupTimeout: null
|
|
150
151
|
});
|
|
@@ -166,21 +167,13 @@ function create(client, store, key) {
|
|
|
166
167
|
error: null
|
|
167
168
|
});
|
|
168
169
|
try {
|
|
169
|
-
const handle = actor.opts.noCreate ? client.get(
|
|
170
|
-
actor.opts.
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
)
|
|
176
|
-
actor.opts.name,
|
|
177
|
-
actor.opts.key,
|
|
178
|
-
{
|
|
179
|
-
params: actor.opts.params,
|
|
180
|
-
createInRegion: actor.opts.createInRegion,
|
|
181
|
-
createWithInput: actor.opts.createWithInput
|
|
182
|
-
}
|
|
183
|
-
);
|
|
170
|
+
const handle = actor.opts.noCreate ? client.get(actor.opts.name, actor.opts.key, {
|
|
171
|
+
params: actor.opts.params
|
|
172
|
+
}) : client.getOrCreate(actor.opts.name, actor.opts.key, {
|
|
173
|
+
params: actor.opts.params,
|
|
174
|
+
createInRegion: actor.opts.createInRegion,
|
|
175
|
+
createWithInput: actor.opts.createWithInput
|
|
176
|
+
});
|
|
184
177
|
const connection = handle.connect();
|
|
185
178
|
updateActor(store, key, {
|
|
186
179
|
handle,
|
package/dist/mod.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/mod.ts"],"sourcesContent":["import { Derived, Effect, Store } from \"@tanstack/store\";\nimport equal from \"fast-deep-equal\";\nimport type { AnyActorDefinition, Registry } from \"rivetkit\";\nimport {\n\ttype ActorConn,\n\ttype ActorConnStatus,\n\ttype ActorHandle,\n\ttype Client,\n\ttype ExtractActorsFromRegistry,\n} from \"rivetkit/client\";\n\nexport type AnyActorRegistry = Registry<any>;\n\nexport type { ActorConnStatus };\n\ninterface ActorStateReference<AD extends AnyActorDefinition> {\n\t/**\n\t * The unique identifier for the actor.\n\t * This is a hash generated from the actor's options.\n\t * It is used to identify the actor instance in the store.\n\t * @internal\n\t */\n\thash: string;\n\t/**\n\t * The state of the actor, derived from the store.\n\t * This includes the actor's connection and handle.\n\t */\n\thandle: ActorHandle<AD> | null;\n\t/**\n\t * The connection to the actor.\n\t * This is used to communicate with the actor in realtime.\n\t */\n\tconnection: ActorConn<AD> | null;\n\t/**\n\t * The connection status of the actor.\n\t */\n\tconnStatus: ActorConnStatus;\n\t/**\n\t * The error that occurred while trying to connect to the actor, if any.\n\t */\n\terror: Error | null;\n\t/**\n\t * Options for the actor, including its name, key, parameters, and whether it is enabled.\n\t */\n\topts: {\n\t\tname: keyof AD;\n\t\t/**\n\t\t * Unique key for the actor instance.\n\t\t * This can be a string or an array of strings to create multiple instances.\n\t\t * @example \"abc\" or [\"abc\", \"def\"]\n\t\t */\n\t\tkey: string | string[];\n\t\t/**\n\t\t * Parameters for the actor.\n\t\t * These are additional options that can be passed to the actor.\n\t\t */\n\t\tparams?: Record<string, string>;\n\t\t/** Region to create the actor in if it doesn't exist. */\n\t\tcreateInRegion?: string;\n\t\t/** Input data to pass to the actor. */\n\t\tcreateWithInput?: unknown;\n\t\t/**\n\t\t * Whether the actor is enabled.\n\t\t * Defaults to true.\n\t\t */\n\t\tenabled?: boolean;\n\t\t/**\n\t\t * If true, only gets the actor if it already exists. Does not create the actor.\n\t\t * Throws an error if the actor is not found.\n\t\t * Defaults to false.\n\t\t */\n\t\tnoCreate?: boolean;\n\t};\n}\n\ninterface InternalRivetKitStore<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n> {\n\tactors: Record<string, ActorStateReference<Actors>>;\n}\n\n/**\n * Options for configuring a actor in RivetKit.\n */\nexport interface ActorOptions<\n\tRegistry extends AnyActorRegistry,\n\tActorName extends keyof ExtractActorsFromRegistry<Registry>,\n> {\n\t/**\n\t * Typesafe name of the actor.\n\t * This should match the actor's name in the app's actor definitions.\n\t * @example \"chatRoom\"\n\t */\n\tname: ActorName;\n\t/**\n\t * Unique key for the actor instance.\n\t * This can be a string or an array of strings to create multiple instances.\n\t * @example \"abc\" or [\"abc\", \"def\"]\n\t */\n\tkey: string | string[];\n\t/**\n\t * Parameters for the actor.\n\t */\n\tparams?: Registry[ExtractActorsFromRegistry<Registry>][\"params\"];\n\t/** Region to create the actor in if it doesn't exist. */\n\tcreateInRegion?: string;\n\t/** Input data to pass to the actor. */\n\tcreateWithInput?: unknown;\n\t/**\n\t * Whether the actor is enabled.\n\t * Defaults to true.\n\t */\n\tenabled?: boolean;\n\t/**\n\t * If true, only gets the actor if it already exists. Does not create the actor.\n\t * Throws an error if the actor is not found.\n\t * Defaults to false.\n\t */\n\tnoCreate?: boolean;\n}\n\nexport type ActorsStateDerived<\n\tRegistry extends AnyActorRegistry,\n\tWorkerName extends keyof ExtractActorsFromRegistry<Registry>,\n> = Derived<\n\tOmit<\n\t\tInternalRivetKitStore<\n\t\t\tRegistry,\n\t\t\tExtractActorsFromRegistry<Registry>\n\t\t>[\"actors\"][string],\n\t\t\"handle\" | \"connection\"\n\t> & {\n\t\thandle: ActorHandle<\n\t\t\tExtractActorsFromRegistry<Registry>[WorkerName]\n\t\t> | null;\n\t\tconnection: ActorConn<\n\t\t\tExtractActorsFromRegistry<Registry>[WorkerName]\n\t\t> | null;\n\t\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\t\tisConnected: boolean;\n\t}\n>;\n\nexport type AnyActorOptions = ActorOptions<AnyActorRegistry, any>;\n\nexport interface CreateRivetKitOptions<Registry extends AnyActorRegistry> {\n\thashFunction?: (opts: ActorOptions<Registry, any>) => string;\n}\n\ntype ComputedActorState<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n> = InternalRivetKitStore<Registry, Actors>[\"actors\"][string] & {\n\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\tisConnected: boolean;\n};\n\ntype ActorCache<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n> = Map<\n\tstring,\n\t{\n\t\tstate: Derived<ComputedActorState<Registry, Actors>>;\n\t\tkey: string;\n\t\tmount: () => () => void;\n\t\tcreate: () => void;\n\t\trefCount: number;\n\t\tcleanupTimeout: ReturnType<typeof setTimeout> | null;\n\t}\n>;\n\nexport function createRivetKit<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n>(client: Client<Registry>, createOpts: CreateRivetKitOptions<Registry> = {}) {\n\tconst store = new Store<InternalRivetKitStore<Registry, Actors>>({\n\t\tactors: {},\n\t});\n\n\tconst cache: ActorCache<Registry, Actors> = new Map();\n\n\treturn {\n\t\tgetOrCreateActor: <ActorName extends keyof Actors>(\n\t\t\tactorOpts: ActorOptions<Registry, ActorName>,\n\t\t) => getOrCreateActor(client, createOpts, store, cache, actorOpts),\n\t\tstore,\n\t};\n}\n\ntype ActorUpdates<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n> = Partial<InternalRivetKitStore<Registry, Actors>[\"actors\"][string]>;\n\nfunction updateActor<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n>(\n\tstore: Store<InternalRivetKitStore<Registry, Actors>>,\n\tkey: string,\n\tupdates: ActorUpdates<Registry, Actors>,\n) {\n\tstore.setState((prev) => ({\n\t\t...prev,\n\t\tactors: {\n\t\t\t...prev.actors,\n\t\t\t[key]: { ...prev.actors[key], ...updates },\n\t\t},\n\t}));\n}\n\n// See README.md for lifecycle documentation.\nfunction getOrCreateActor<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n\tActorName extends keyof Actors,\n>(\n\tclient: Client<Registry>,\n\tcreateOpts: CreateRivetKitOptions<Registry>,\n\tstore: Store<InternalRivetKitStore<Registry, Actors>>,\n\tcache: ActorCache<Registry, Actors>,\n\tactorOpts: ActorOptions<Registry, ActorName>,\n) {\n\tconst hash = createOpts.hashFunction || defaultHashFunction;\n\n\tconst normalizedOpts = {\n\t\t...actorOpts,\n\t\tenabled: actorOpts.enabled ?? true,\n\t};\n\n\tconst key = hash(normalizedOpts);\n\n\t// Sync opts to store on every call (even for cached entries)\n\t// Use queueMicrotask for updates to avoid \"Cannot update a component while rendering\" React error\n\tconst existing = store.state.actors[key];\n\tif (!existing) {\n\t\tstore.setState((prev) => ({\n\t\t\t...prev,\n\t\t\tactors: {\n\t\t\t\t...prev.actors,\n\t\t\t\t[key]: {\n\t\t\t\t\thash: key,\n\t\t\t\t\tconnStatus: \"idle\",\n\t\t\t\t\tconnection: null,\n\t\t\t\t\thandle: null,\n\t\t\t\t\terror: null,\n\t\t\t\t\topts: normalizedOpts,\n\t\t\t\t},\n\t\t\t},\n\t\t}));\n\t} else if (!optsEqual(existing.opts, normalizedOpts)) {\n\t\t// Defer opts update to avoid triggering re-render during render\n\t\tqueueMicrotask(() => {\n\t\t\tupdateActor(store, key, { opts: normalizedOpts });\n\t\t});\n\t}\n\n\tconst cached = cache.get(key);\n\tif (cached) {\n\t\treturn {\n\t\t\t...cached,\n\t\t\tstate: cached.state as ActorsStateDerived<Registry, ActorName>,\n\t\t};\n\t}\n\n\tconst derived = new Derived({\n\t\tfn: ({ currDepVals: [store] }) => {\n\t\t\tconst actor = store.actors[key];\n\t\t\treturn {\n\t\t\t\t...actor,\n\t\t\t\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\t\t\t\tisConnected: actor.connStatus === \"connected\",\n\t\t\t};\n\t\t},\n\t\tdeps: [store],\n\t});\n\n\t// Handle enabled/disabled state changes.\n\t// Initial connection is triggered directly in mount() since Effect\n\t// only runs on state changes, not on mount.\n\tconst effect = new Effect({\n\t\tfn: () => {\n\t\t\tconst actor = store.state.actors[key];\n\t\t\tif (!actor) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Actor with key \"${key}\" not found in store. This indicates a bug in cleanup logic.`,\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Dispose connection if disabled\n\t\t\tif (!actor.opts.enabled && actor.connection) {\n\t\t\t\tactor.connection.dispose();\n\n\t\t\t\t// Reset state so re-enabling will reconnect\n\t\t\t\tupdateActor(store, key, {\n\t\t\t\t\tconnection: null,\n\t\t\t\t\thandle: null,\n\t\t\t\t\tconnStatus: \"idle\",\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Reconnect when re-enabled after being disabled\n\t\t\t// Defer to avoid \"Cannot update a component while rendering\" React error\n\t\t\tif (\n\t\t\t\tactor.connStatus === \"idle\" &&\n\t\t\t\tactor.opts.enabled\n\t\t\t) {\n\t\t\t\tqueueMicrotask(() => {\n\t\t\t\t\t// Re-check state after microtask in case it changed\n\t\t\t\t\tconst currentActor = store.state.actors[key];\n\t\t\t\t\tif (\n\t\t\t\t\t\tcurrentActor &&\n\t\t\t\t\t\tcurrentActor.connStatus === \"idle\" &&\n\t\t\t\t\t\tcurrentActor.opts.enabled\n\t\t\t\t\t) {\n\t\t\t\t\t\tcreate<Registry, Actors, ActorName>(client, store, key);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\t\tdeps: [derived],\n\t});\n\n\t// Track subscriptions for ref counting\n\tlet unsubscribeDerived: (() => void) | null = null;\n\tlet unsubscribeEffect: (() => void) | null = null;\n\n\tconst mount = () => {\n\t\tconst cached = cache.get(key);\n\t\tif (!cached) {\n\t\t\tthrow new Error(\n\t\t\t\t`Actor with key \"${key}\" not found in cache. This indicates a bug in cleanup logic.`,\n\t\t\t);\n\t\t}\n\n\t\t// Cancel pending cleanup\n\t\tif (cached.cleanupTimeout !== null) {\n\t\t\tclearTimeout(cached.cleanupTimeout);\n\t\t\tcached.cleanupTimeout = null;\n\t\t}\n\n\t\t// Increment ref count\n\t\tcached.refCount++;\n\n\t\t// Mount derived/effect on first reference (or re-mount after cleanup)\n\t\tif (cached.refCount === 1) {\n\t\t\tunsubscribeDerived = derived.mount();\n\t\t\tunsubscribeEffect = effect.mount();\n\n\t\t\t// Effect doesn't run immediately on mount, only on state changes.\n\t\t\t// Trigger initial connection if actor is enabled and idle.\n\t\t\tconst actor = store.state.actors[key];\n\t\t\tif (\n\t\t\t\tactor &&\n\t\t\t\tactor.opts.enabled &&\n\t\t\t\tactor.connStatus === \"idle\"\n\t\t\t) {\n\t\t\t\tcreate<Registry, Actors, ActorName>(client, store, key);\n\t\t\t}\n\t\t}\n\n\t\treturn () => {\n\t\t\t// Decrement ref count\n\t\t\tcached.refCount--;\n\n\t\t\tif (cached.refCount === 0) {\n\t\t\t\t// Deferred cleanup prevents needless reconnection when:\n\t\t\t\t// - React Strict Mode's unmount/remount cycle\n\t\t\t\t// - useActor hook moves between components in the same render cycle\n\t\t\t\tcached.cleanupTimeout = setTimeout(() => {\n\t\t\t\t\tcached.cleanupTimeout = null;\n\t\t\t\t\tif (cached.refCount > 0) return;\n\n\t\t\t\t\t// Unsubscribe from derived/effect\n\t\t\t\t\tunsubscribeDerived?.();\n\t\t\t\t\tunsubscribeEffect?.();\n\t\t\t\t\tunsubscribeDerived = null;\n\t\t\t\t\tunsubscribeEffect = null;\n\n\t\t\t\t\t// Dispose connection\n\t\t\t\t\tconst actor = store.state.actors[key];\n\t\t\t\t\tif (actor?.connection) {\n\t\t\t\t\t\tactor.connection.dispose();\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove from store and cache\n\t\t\t\t\tstore.setState((prev) => {\n\t\t\t\t\t\tconst { [key]: _, ...rest } = prev.actors;\n\t\t\t\t\t\treturn { ...prev, actors: rest };\n\t\t\t\t\t});\n\t\t\t\t\tcache.delete(key);\n\t\t\t\t}, 0);\n\t\t\t}\n\t\t};\n\t};\n\n\tcache.set(key, {\n\t\tstate: derived,\n\t\tkey,\n\t\tmount,\n\t\tcreate: create.bind(undefined, client, store, key),\n\t\trefCount: 0,\n\t\tcleanupTimeout: null,\n\t});\n\n\treturn {\n\t\tmount,\n\t\tstate: derived as ActorsStateDerived<Registry, ActorName>,\n\t\tkey,\n\t};\n}\n\nfunction create<\n\tRegistry extends AnyActorRegistry,\n\tActors extends ExtractActorsFromRegistry<Registry>,\n\tActorName extends keyof Actors,\n>(\n\tclient: Client<Registry>,\n\tstore: Store<InternalRivetKitStore<Registry, Actors>>,\n\tkey: string,\n) {\n\tconst actor = store.state.actors[key];\n\tif (!actor) {\n\t\tthrow new Error(\n\t\t\t`Actor with key \"${key}\" not found in store. This indicates a bug in cleanup logic.`,\n\t\t);\n\t}\n\n\t// Save actor to map\n\tupdateActor(store, key, {\n\t\tconnStatus: \"connecting\",\n\t\terror: null,\n\t});\n\n\ttry {\n\t\tconst handle = actor.opts.noCreate\n\t\t\t? client.get(\n\t\t\t\t\tactor.opts.name as string,\n\t\t\t\t\tactor.opts.key,\n\t\t\t\t\t{\n\t\t\t\t\t\tparams: actor.opts.params,\n\t\t\t\t\t},\n\t\t\t\t)\n\t\t\t: client.getOrCreate(\n\t\t\t\t\tactor.opts.name as string,\n\t\t\t\t\tactor.opts.key,\n\t\t\t\t\t{\n\t\t\t\t\t\tparams: actor.opts.params,\n\t\t\t\t\t\tcreateInRegion: actor.opts.createInRegion,\n\t\t\t\t\t\tcreateWithInput: actor.opts.createWithInput,\n\t\t\t\t\t},\n\t\t\t\t);\n\n\t\tconst connection = handle.connect();\n\n\t\t// Store connection BEFORE registering callbacks to avoid race condition\n\t\t// where status change fires before connection is stored\n\t\tupdateActor(store, key, {\n\t\t\thandle: handle as ActorHandle<Actors[ActorName]>,\n\t\t\tconnection: connection as ActorConn<Actors[ActorName]>,\n\t\t});\n\n\t\t// Subscribe to connection state changes\n\t\tconnection.onStatusChange((status) => {\n\t\t\tstore.setState((prev) => {\n\t\t\t\t// Only update if this is still the active connection\n\t\t\t\tconst isActiveConnection = prev.actors[key]?.connection === connection;\n\t\t\t\tif (!isActiveConnection) return prev;\n\t\t\t\treturn {\n\t\t\t\t\t...prev,\n\t\t\t\t\tactors: {\n\t\t\t\t\t\t...prev.actors,\n\t\t\t\t\t\t[key]: {\n\t\t\t\t\t\t\t...prev.actors[key],\n\t\t\t\t\t\t\tconnStatus: status,\n\t\t\t\t\t\t\t// Only clear error when successfully connected\n\t\t\t\t\t\t\t...(status === \"connected\"\n\t\t\t\t\t\t\t\t? { error: null }\n\t\t\t\t\t\t\t\t: {}),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t};\n\t\t\t});\n\t\t});\n\n\t\t// onError is followed by onClose which will set connStatus to Disconnected\n\t\tconnection.onError((error) => {\n\t\t\tstore.setState((prev) => {\n\t\t\t\t// Only update if this is still the active connection\n\t\t\t\tif (prev.actors[key]?.connection !== connection) return prev;\n\t\t\t\treturn {\n\t\t\t\t\t...prev,\n\t\t\t\t\tactors: {\n\t\t\t\t\t\t...prev.actors,\n\t\t\t\t\t\t[key]: {\n\t\t\t\t\t\t\t...prev.actors[key],\n\t\t\t\t\t\t\terror,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t};\n\t\t\t});\n\t\t});\n\t} catch (error) {\n\t\tconsole.error(\"Failed to create actor connection\", error);\n\t\t// Use Disconnected so Effect won't auto-retry\n\t\t// User must re-enable or take action to retry\n\t\tupdateActor(store, key, {\n\t\t\tconnStatus: \"disconnected\",\n\t\t\terror: error as Error,\n\t\t});\n\t}\n}\n\nfunction defaultHashFunction({ name, key, params, noCreate }: AnyActorOptions) {\n\treturn JSON.stringify({ name, key, params, noCreate });\n}\n\nfunction optsEqual(a: AnyActorOptions, b: AnyActorOptions) {\n\treturn equal(a, b);\n}\n"],"mappings":"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","names":["store","cached"]}
|
|
1
|
+
{"version":3,"sources":["../src/mod.ts"],"sourcesContent":["import { Derived, Effect, Store } from \"@tanstack/store\";\nimport equal from \"fast-deep-equal\";\nimport type { AnyActorDefinition, Registry } from \"rivetkit\";\nimport {\n\ttype ActorConn,\n\ttype ActorConnStatus,\n\ttype ActorHandle,\n\ttype Client,\n\ttype ExtractActorsFromRegistry,\n} from \"rivetkit/client\";\n\nexport type AnyActorRegistry = Registry<any>;\n\nexport type { ActorConnStatus };\n\ninterface ActorStateReference {\n\t/**\n\t * The unique identifier for the actor.\n\t * This is a hash generated from the actor's options.\n\t * It is used to identify the actor instance in the store.\n\t * @internal\n\t */\n\thash: string;\n\t/**\n\t * The state of the actor, derived from the store.\n\t * This includes the actor's connection and handle.\n\t */\n\thandle: ActorHandle<AnyActorDefinition> | null;\n\t/**\n\t * The connection to the actor.\n\t * This is used to communicate with the actor in realtime.\n\t */\n\tconnection: ActorConn<AnyActorDefinition> | null;\n\t/**\n\t * The connection status of the actor.\n\t */\n\tconnStatus: ActorConnStatus;\n\t/**\n\t * The error that occurred while trying to connect to the actor, if any.\n\t */\n\terror: Error | null;\n\t/**\n\t * Options for the actor, including its name, key, parameters, and whether it is enabled.\n\t */\n\topts: {\n\t\tname: string;\n\t\t/**\n\t\t * Unique key for the actor instance.\n\t\t * This can be a string or an array of strings to create multiple instances.\n\t\t * @example \"abc\" or [\"abc\", \"def\"]\n\t\t */\n\t\tkey: string | string[];\n\t\t/**\n\t\t * Parameters for the actor.\n\t\t * These are additional options that can be passed to the actor.\n\t\t */\n\t\tparams?: unknown;\n\t\t/** Region to create the actor in if it doesn't exist. */\n\t\tcreateInRegion?: string;\n\t\t/** Input data to pass to the actor. */\n\t\tcreateWithInput?: unknown;\n\t\t/**\n\t\t * Whether the actor is enabled.\n\t\t * Defaults to true.\n\t\t */\n\t\tenabled?: boolean;\n\t\t/**\n\t\t * If true, only gets the actor if it already exists. Does not create the actor.\n\t\t * Throws an error if the actor is not found.\n\t\t * Defaults to false.\n\t\t */\n\t\tnoCreate?: boolean;\n\t};\n}\n\ninterface InternalRivetKitStore {\n\tactors: Record<string, ActorStateReference>;\n}\n\n/**\n * Options for configuring a actor in RivetKit.\n */\nexport interface ActorOptions<\n\tRegistry extends AnyActorRegistry,\n\tActorName extends keyof ExtractActorsFromRegistry<Registry> & string,\n> {\n\t/**\n\t * Typesafe name of the actor.\n\t * This should match the actor's name in the app's actor definitions.\n\t * @example \"chatRoom\"\n\t */\n\tname: ActorName;\n\t/**\n\t * Unique key for the actor instance.\n\t * This can be a string or an array of strings to create multiple instances.\n\t * @example \"abc\" or [\"abc\", \"def\"]\n\t */\n\tkey: string | string[];\n\t/**\n\t * Parameters for the actor.\n\t */\n\tparams?: ExtractActorsFromRegistry<Registry>[ActorName][\"params\"];\n\t/** Region to create the actor in if it doesn't exist. */\n\tcreateInRegion?: string;\n\t/** Input data to pass to the actor. */\n\tcreateWithInput?: unknown;\n\t/**\n\t * Whether the actor is enabled.\n\t * Defaults to true.\n\t */\n\tenabled?: boolean;\n\t/**\n\t * If true, only gets the actor if it already exists. Does not create the actor.\n\t * Throws an error if the actor is not found.\n\t * Defaults to false.\n\t */\n\tnoCreate?: boolean;\n}\n\nexport type ActorsStateDerived<\n\tRegistry extends AnyActorRegistry,\n\tWorkerName extends keyof ExtractActorsFromRegistry<Registry> & string,\n> = Derived<\n\tOmit<InternalRivetKitStore[\"actors\"][string], \"handle\" | \"connection\"> & {\n\t\thandle: ActorHandle<\n\t\t\tExtractActorsFromRegistry<Registry>[WorkerName]\n\t\t> | null;\n\t\tconnection: ActorConn<\n\t\t\tExtractActorsFromRegistry<Registry>[WorkerName]\n\t\t> | null;\n\t\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\t\tisConnected: boolean;\n\t}\n>;\n\nexport type AnyActorOptions = ActorOptions<AnyActorRegistry, any>;\n\nexport interface CreateRivetKitOptions<Registry extends AnyActorRegistry> {\n\thashFunction?: (opts: ActorOptions<Registry, any>) => string;\n}\n\ntype ComputedActorState = InternalRivetKitStore[\"actors\"][string] & {\n\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\tisConnected: boolean;\n};\n\ntype ActorCache = Map<\n\tstring,\n\t{\n\t\tstate: Derived<ComputedActorState>;\n\t\tkey: string;\n\t\tmount: () => () => void;\n\t\tcreate: () => void;\n\t\trefCount: number;\n\t\tcleanupTimeout: ReturnType<typeof setTimeout> | null;\n\t}\n>;\n\nexport function createRivetKit<Registry extends AnyActorRegistry>(\n\tclient: Client<Registry>,\n\tcreateOpts: CreateRivetKitOptions<Registry> = {},\n) {\n\tconst store = new Store<InternalRivetKitStore>({\n\t\tactors: {},\n\t});\n\n\tconst cache: ActorCache = new Map();\n\n\treturn {\n\t\tgetOrCreateActor: <\n\t\t\tActorName extends keyof ExtractActorsFromRegistry<Registry> &\n\t\t\t\tstring,\n\t\t>(\n\t\t\tactorOpts: ActorOptions<Registry, ActorName>,\n\t\t): {\n\t\t\tmount: () => () => void;\n\t\t\tstate: ActorsStateDerived<Registry, ActorName>;\n\t\t\tkey: string;\n\t\t} => (getOrCreateActor as any)(client, createOpts, store, cache, actorOpts),\n\t\tstore,\n\t};\n}\n\ntype ActorUpdates = Partial<InternalRivetKitStore[\"actors\"][string]>;\n\nfunction updateActor(\n\tstore: Store<InternalRivetKitStore>,\n\tkey: string,\n\tupdates: ActorUpdates,\n) {\n\tstore.setState((prev) => ({\n\t\t...prev,\n\t\tactors: {\n\t\t\t...prev.actors,\n\t\t\t[key]: { ...prev.actors[key], ...updates },\n\t\t},\n\t}));\n}\n\n// See README.md for lifecycle documentation.\nfunction getOrCreateActor<\n\tRegistry extends AnyActorRegistry,\n\tActorName extends keyof ExtractActorsFromRegistry<Registry> & string,\n>(\n\tclient: Client<Registry>,\n\tcreateOpts: CreateRivetKitOptions<Registry>,\n\tstore: Store<InternalRivetKitStore>,\n\tcache: ActorCache,\n\tactorOpts: ActorOptions<Registry, ActorName>,\n) {\n\tconst hash = createOpts.hashFunction || defaultHashFunction;\n\n\tconst normalizedOpts = {\n\t\t...actorOpts,\n\t\tenabled: actorOpts.enabled ?? true,\n\t};\n\n\tconst key = hash(normalizedOpts);\n\n\t// Sync opts to store on every call (even for cached entries)\n\t// Use queueMicrotask for updates to avoid \"Cannot update a component while rendering\" React error\n\tconst existing = store.state.actors[key];\n\tif (!existing) {\n\t\tstore.setState((prev) => ({\n\t\t\t...prev,\n\t\t\tactors: {\n\t\t\t\t...prev.actors,\n\t\t\t\t[key]: {\n\t\t\t\t\thash: key,\n\t\t\t\t\tconnStatus: \"idle\",\n\t\t\t\t\tconnection: null,\n\t\t\t\t\thandle: null,\n\t\t\t\t\terror: null,\n\t\t\t\t\topts: normalizedOpts,\n\t\t\t\t},\n\t\t\t},\n\t\t}));\n\t} else if (!optsEqual(existing.opts, normalizedOpts)) {\n\t\t// Defer opts update to avoid triggering re-render during render\n\t\tqueueMicrotask(() => {\n\t\t\tupdateActor(store, key, { opts: normalizedOpts });\n\t\t});\n\t}\n\n\tconst cached = cache.get(key);\n\tif (cached) {\n\t\treturn {\n\t\t\t...cached,\n\t\t\tstate: cached.state as ActorsStateDerived<Registry, ActorName>,\n\t\t};\n\t}\n\n\tconst derived = new Derived({\n\t\tfn: ({ currDepVals: [store] }) => {\n\t\t\tconst actor = store.actors[key];\n\t\t\treturn {\n\t\t\t\t...actor,\n\t\t\t\t/** @deprecated Use `connStatus === \"connected\"` instead */\n\t\t\t\tisConnected: actor.connStatus === \"connected\",\n\t\t\t};\n\t\t},\n\t\tdeps: [store],\n\t});\n\n\t// Handle enabled/disabled state changes.\n\t// Initial connection is triggered directly in mount() since Effect\n\t// only runs on state changes, not on mount.\n\tconst effect = new Effect({\n\t\tfn: () => {\n\t\t\tconst actor = store.state.actors[key];\n\t\t\tif (!actor) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Actor with key \"${key}\" not found in store. This indicates a bug in cleanup logic.`,\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Dispose connection if disabled\n\t\t\tif (!actor.opts.enabled && actor.connection) {\n\t\t\t\tactor.connection.dispose();\n\n\t\t\t\t// Reset state so re-enabling will reconnect\n\t\t\t\tupdateActor(store, key, {\n\t\t\t\t\tconnection: null,\n\t\t\t\t\thandle: null,\n\t\t\t\t\tconnStatus: \"idle\",\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Reconnect when re-enabled after being disabled\n\t\t\t// Defer to avoid \"Cannot update a component while rendering\" React error\n\t\t\tif (actor.connStatus === \"idle\" && actor.opts.enabled) {\n\t\t\t\tqueueMicrotask(() => {\n\t\t\t\t\t// Re-check state after microtask in case it changed\n\t\t\t\t\tconst currentActor = store.state.actors[key];\n\t\t\t\t\tif (\n\t\t\t\t\t\tcurrentActor &&\n\t\t\t\t\t\tcurrentActor.connStatus === \"idle\" &&\n\t\t\t\t\t\tcurrentActor.opts.enabled\n\t\t\t\t\t) {\n\t\t\t\t\t\t(create as Function)(client, store, key);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\t\tdeps: [derived],\n\t});\n\n\t// Track subscriptions for ref counting\n\tlet unsubscribeDerived: (() => void) | null = null;\n\tlet unsubscribeEffect: (() => void) | null = null;\n\n\tconst mount = () => {\n\t\tconst cached = cache.get(key);\n\t\tif (!cached) {\n\t\t\tthrow new Error(\n\t\t\t\t`Actor with key \"${key}\" not found in cache. This indicates a bug in cleanup logic.`,\n\t\t\t);\n\t\t}\n\n\t\t// Cancel pending cleanup\n\t\tif (cached.cleanupTimeout !== null) {\n\t\t\tclearTimeout(cached.cleanupTimeout);\n\t\t\tcached.cleanupTimeout = null;\n\t\t}\n\n\t\t// Increment ref count\n\t\tcached.refCount++;\n\n\t\t// Mount derived/effect on first reference (or re-mount after cleanup)\n\t\tif (cached.refCount === 1) {\n\t\t\tunsubscribeDerived = derived.mount();\n\t\t\tunsubscribeEffect = effect.mount();\n\n\t\t\t// Effect doesn't run immediately on mount, only on state changes.\n\t\t\t// Trigger initial connection if actor is enabled and idle.\n\t\t\tconst actor = store.state.actors[key];\n\t\t\tif (actor && actor.opts.enabled && actor.connStatus === \"idle\") {\n\t\t\t\t(create as Function)(client, store, key);\n\t\t\t}\n\t\t}\n\n\t\treturn () => {\n\t\t\t// Decrement ref count\n\t\t\tcached.refCount--;\n\n\t\t\tif (cached.refCount === 0) {\n\t\t\t\t// Deferred cleanup prevents needless reconnection when:\n\t\t\t\t// - React Strict Mode's unmount/remount cycle\n\t\t\t\t// - useActor hook moves between components in the same render cycle\n\t\t\t\tcached.cleanupTimeout = setTimeout(() => {\n\t\t\t\t\tcached.cleanupTimeout = null;\n\t\t\t\t\tif (cached.refCount > 0) return;\n\n\t\t\t\t\t// Unsubscribe from derived/effect\n\t\t\t\t\tunsubscribeDerived?.();\n\t\t\t\t\tunsubscribeEffect?.();\n\t\t\t\t\tunsubscribeDerived = null;\n\t\t\t\t\tunsubscribeEffect = null;\n\n\t\t\t\t\t// Dispose connection\n\t\t\t\t\tconst actor = store.state.actors[key];\n\t\t\t\t\tif (actor?.connection) {\n\t\t\t\t\t\tactor.connection.dispose();\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove from store and cache\n\t\t\t\t\tstore.setState((prev) => {\n\t\t\t\t\t\tconst { [key]: _, ...rest } = prev.actors;\n\t\t\t\t\t\treturn { ...prev, actors: rest };\n\t\t\t\t\t});\n\t\t\t\t\tcache.delete(key);\n\t\t\t\t}, 0);\n\t\t\t}\n\t\t};\n\t};\n\n\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\tconst boundCreate: () => void = () => (create as any)(client, store, key);\n\tcache.set(key, {\n\t\tstate: derived,\n\t\tkey,\n\t\tmount,\n\t\tcreate: boundCreate,\n\t\trefCount: 0,\n\t\tcleanupTimeout: null,\n\t});\n\n\treturn {\n\t\tmount,\n\t\tstate: derived as ActorsStateDerived<Registry, ActorName>,\n\t\tkey,\n\t};\n}\n\nfunction create<\n\tRegistry extends AnyActorRegistry,\n\tActorName extends keyof ExtractActorsFromRegistry<Registry> & string,\n>(client: Client<Registry>, store: Store<InternalRivetKitStore>, key: string) {\n\tconst actor = store.state.actors[key];\n\tif (!actor) {\n\t\tthrow new Error(\n\t\t\t`Actor with key \"${key}\" not found in store. This indicates a bug in cleanup logic.`,\n\t\t);\n\t}\n\n\t// Save actor to map\n\tupdateActor(store, key, {\n\t\tconnStatus: \"connecting\",\n\t\terror: null,\n\t});\n\n\ttry {\n\t\tconst handle = actor.opts.noCreate\n\t\t\t? client.get(actor.opts.name as string, actor.opts.key, {\n\t\t\t\t\tparams: actor.opts.params,\n\t\t\t\t})\n\t\t\t: client.getOrCreate(actor.opts.name as string, actor.opts.key, {\n\t\t\t\t\tparams: actor.opts.params,\n\t\t\t\t\tcreateInRegion: actor.opts.createInRegion,\n\t\t\t\t\tcreateWithInput: actor.opts.createWithInput,\n\t\t\t\t});\n\n\t\tconst connection = handle.connect();\n\n\t\t// Store connection BEFORE registering callbacks to avoid race condition\n\t\t// where status change fires before connection is stored\n\t\tupdateActor(store, key, {\n\t\t\thandle: handle as ActorHandle<\n\t\t\t\tExtractActorsFromRegistry<Registry>[ActorName]\n\t\t\t>,\n\t\t\tconnection: connection as ActorConn<\n\t\t\t\tExtractActorsFromRegistry<Registry>[ActorName]\n\t\t\t>,\n\t\t});\n\n\t\t// Subscribe to connection state changes\n\t\tconnection.onStatusChange((status) => {\n\t\t\tstore.setState((prev) => {\n\t\t\t\t// Only update if this is still the active connection\n\t\t\t\tconst isActiveConnection =\n\t\t\t\t\tprev.actors[key]?.connection === connection;\n\t\t\t\tif (!isActiveConnection) return prev;\n\t\t\t\treturn {\n\t\t\t\t\t...prev,\n\t\t\t\t\tactors: {\n\t\t\t\t\t\t...prev.actors,\n\t\t\t\t\t\t[key]: {\n\t\t\t\t\t\t\t...prev.actors[key],\n\t\t\t\t\t\t\tconnStatus: status,\n\t\t\t\t\t\t\t// Only clear error when successfully connected\n\t\t\t\t\t\t\t...(status === \"connected\" ? { error: null } : {}),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t};\n\t\t\t});\n\t\t});\n\n\t\t// onError is followed by onClose which will set connStatus to Disconnected\n\t\tconnection.onError((error) => {\n\t\t\tstore.setState((prev) => {\n\t\t\t\t// Only update if this is still the active connection\n\t\t\t\tif (prev.actors[key]?.connection !== connection) return prev;\n\t\t\t\treturn {\n\t\t\t\t\t...prev,\n\t\t\t\t\tactors: {\n\t\t\t\t\t\t...prev.actors,\n\t\t\t\t\t\t[key]: {\n\t\t\t\t\t\t\t...prev.actors[key],\n\t\t\t\t\t\t\terror,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t};\n\t\t\t});\n\t\t});\n\t} catch (error) {\n\t\tconsole.error(\"Failed to create actor connection\", error);\n\t\t// Use Disconnected so Effect won't auto-retry\n\t\t// User must re-enable or take action to retry\n\t\tupdateActor(store, key, {\n\t\t\tconnStatus: \"disconnected\",\n\t\t\terror: error as Error,\n\t\t});\n\t}\n}\n\nfunction defaultHashFunction({ name, key, params, noCreate }: AnyActorOptions) {\n\treturn JSON.stringify({ name, key, params, noCreate });\n}\n\nfunction optsEqual(a: AnyActorOptions, b: AnyActorOptions) {\n\treturn equal(a, b);\n}\n"],"mappings":"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","names":["store","cached"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rivetkit/framework-base",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.6-rc.1",
|
|
4
4
|
"description": "Base framework utilities for RivetKit client integrations",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@tanstack/store": "^0.7.1",
|
|
40
40
|
"fast-deep-equal": "^3.1.3",
|
|
41
|
-
"rivetkit": "2.1.
|
|
41
|
+
"rivetkit": "2.1.6-rc.1"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsup src/mod.ts",
|