@dxos/effect 0.8.4-main.c4373fc → 0.8.4-main.c85a9c8dae

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 (61) hide show
  1. package/dist/lib/browser/chunk-CGS2ULMK.mjs +11 -0
  2. package/dist/lib/browser/chunk-CGS2ULMK.mjs.map +7 -0
  3. package/dist/lib/browser/index.mjs +419 -245
  4. package/dist/lib/browser/index.mjs.map +4 -4
  5. package/dist/lib/browser/meta.json +1 -1
  6. package/dist/lib/browser/testing.mjs +39 -0
  7. package/dist/lib/browser/testing.mjs.map +7 -0
  8. package/dist/lib/node-esm/chunk-HSLMI22Q.mjs +11 -0
  9. package/dist/lib/node-esm/chunk-HSLMI22Q.mjs.map +7 -0
  10. package/dist/lib/node-esm/index.mjs +419 -245
  11. package/dist/lib/node-esm/index.mjs.map +4 -4
  12. package/dist/lib/node-esm/meta.json +1 -1
  13. package/dist/lib/node-esm/testing.mjs +39 -0
  14. package/dist/lib/node-esm/testing.mjs.map +7 -0
  15. package/dist/types/src/Performance.d.ts +25 -0
  16. package/dist/types/src/Performance.d.ts.map +1 -0
  17. package/dist/types/src/RuntimeProvider.d.ts +21 -0
  18. package/dist/types/src/RuntimeProvider.d.ts.map +1 -0
  19. package/dist/types/src/ast.d.ts +34 -21
  20. package/dist/types/src/ast.d.ts.map +1 -1
  21. package/dist/types/src/atom-kvs.d.ts +19 -0
  22. package/dist/types/src/atom-kvs.d.ts.map +1 -0
  23. package/dist/types/src/dynamic-runtime.d.ts +56 -0
  24. package/dist/types/src/dynamic-runtime.d.ts.map +1 -0
  25. package/dist/types/src/dynamic-runtime.test.d.ts +2 -0
  26. package/dist/types/src/dynamic-runtime.test.d.ts.map +1 -0
  27. package/dist/types/src/errors.d.ts +12 -0
  28. package/dist/types/src/errors.d.ts.map +1 -1
  29. package/dist/types/src/index.d.ts +6 -3
  30. package/dist/types/src/index.d.ts.map +1 -1
  31. package/dist/types/src/{jsonPath.d.ts → json-path.d.ts} +11 -3
  32. package/dist/types/src/json-path.d.ts.map +1 -0
  33. package/dist/types/src/json-path.test.d.ts +2 -0
  34. package/dist/types/src/json-path.test.d.ts.map +1 -0
  35. package/dist/types/src/resource.d.ts +5 -1
  36. package/dist/types/src/resource.d.ts.map +1 -1
  37. package/dist/types/src/testing.d.ts +1 -0
  38. package/dist/types/src/testing.d.ts.map +1 -1
  39. package/dist/types/tsconfig.tsbuildinfo +1 -1
  40. package/package.json +30 -11
  41. package/src/Performance.ts +45 -0
  42. package/src/RuntimeProvider.ts +35 -0
  43. package/src/ast.test.ts +35 -8
  44. package/src/ast.ts +106 -89
  45. package/src/atom-kvs.ts +35 -0
  46. package/src/dynamic-runtime.test.ts +465 -0
  47. package/src/dynamic-runtime.ts +195 -0
  48. package/src/errors.ts +69 -8
  49. package/src/index.ts +6 -3
  50. package/src/interrupt.test.ts +3 -1
  51. package/src/{jsonPath.test.ts → json-path.test.ts} +47 -8
  52. package/src/{jsonPath.ts → json-path.ts} +27 -3
  53. package/src/layers.test.ts +4 -2
  54. package/src/otel.test.ts +1 -0
  55. package/src/resource.test.ts +2 -2
  56. package/src/resource.ts +9 -4
  57. package/src/sanity.test.ts +24 -10
  58. package/src/testing.ts +3 -1
  59. package/dist/types/src/jsonPath.d.ts.map +0 -1
  60. package/dist/types/src/jsonPath.test.d.ts +0 -2
  61. package/dist/types/src/jsonPath.test.d.ts.map +0 -1
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@dxos/effect",
3
- "version": "0.8.4-main.c4373fc",
3
+ "version": "0.8.4-main.c85a9c8dae",
4
4
  "description": "Effect utils.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/dxos/dxos"
10
+ },
7
11
  "license": "MIT",
8
12
  "author": "info@dxos.org",
9
13
  "type": "module",
@@ -13,37 +17,52 @@
13
17
  "types": "./dist/types/src/index.d.ts",
14
18
  "browser": "./dist/lib/browser/index.mjs",
15
19
  "node": "./dist/lib/node-esm/index.mjs"
20
+ },
21
+ "./testing": {
22
+ "source": "./src/testing.ts",
23
+ "types": "./dist/types/src/testing.d.ts",
24
+ "browser": "./dist/lib/browser/testing.mjs",
25
+ "node": "./dist/lib/node-esm/testing.mjs"
16
26
  }
17
27
  },
18
28
  "types": "dist/types/src/index.d.ts",
19
29
  "typesVersions": {
20
- "*": {}
30
+ "*": {
31
+ "testing": [
32
+ "./dist/types/src/testing.d.ts"
33
+ ]
34
+ }
21
35
  },
22
36
  "files": [
23
37
  "dist",
24
38
  "src"
25
39
  ],
26
40
  "dependencies": {
27
- "@effect/opentelemetry": "^0.58.0",
41
+ "@effect-atom/atom-react": "^0.5.0",
42
+ "@effect/opentelemetry": "^0.61.0",
28
43
  "@opentelemetry/api": "^1.9.0",
29
- "jsonpath-plus": "10.2.0",
30
- "@dxos/context": "0.8.4-main.c4373fc",
31
- "@dxos/node-std": "0.8.4-main.c4373fc",
32
- "@dxos/util": "0.8.4-main.c4373fc",
33
- "@dxos/invariant": "0.8.4-main.c4373fc"
44
+ "jsonpath-plus": "^10.3.0",
45
+ "@dxos/invariant": "0.8.4-main.c85a9c8dae",
46
+ "@dxos/node-std": "0.8.4-main.c85a9c8dae",
47
+ "@dxos/context": "0.8.4-main.c85a9c8dae",
48
+ "@dxos/util": "0.8.4-main.c85a9c8dae"
34
49
  },
35
50
  "devDependencies": {
51
+ "@effect/platform": "0.94.4",
52
+ "@effect/platform-browser": "0.74.0",
36
53
  "@opentelemetry/api-logs": "^0.203.0",
37
54
  "@opentelemetry/resources": "^2.1.0",
38
55
  "@opentelemetry/sdk-logs": "^0.203.0",
39
56
  "@opentelemetry/sdk-node": "^0.203.0",
40
57
  "@opentelemetry/sdk-trace-node": "^2.1.0",
41
58
  "@opentelemetry/semantic-conventions": "^1.37.0",
42
- "effect": "3.18.3",
43
- "@dxos/log": "0.8.4-main.c4373fc"
59
+ "effect": "3.19.16",
60
+ "@dxos/log": "0.8.4-main.c85a9c8dae"
44
61
  },
45
62
  "peerDependencies": {
46
- "effect": "^3.13.3"
63
+ "@effect/platform": "0.94.4",
64
+ "@effect/platform-browser": "0.74.0",
65
+ "effect": "3.19.16"
47
66
  },
48
67
  "publishConfig": {
49
68
  "access": "public"
@@ -0,0 +1,45 @@
1
+ //
2
+ // Copyright 2026 DXOS.org
3
+ //
4
+
5
+ import * as Effect from 'effect/Effect';
6
+ import type * as Exit from 'effect/Exit';
7
+
8
+ export interface AddTrackEntryOptions {
9
+ name: string;
10
+ devtools?: {
11
+ /**
12
+ * @example 'track-entry'
13
+ */
14
+ dataType: string;
15
+ track: string;
16
+ trackGroup: string;
17
+ /**
18
+ * @example 'tertiary-dark'
19
+ */
20
+ color: string;
21
+ properties?: [string, any][];
22
+ tooltipText?: string;
23
+ };
24
+ detail?: Record<string, unknown>;
25
+ }
26
+
27
+ /**
28
+ * Puts the effect span on the performance timeline in DevTools.
29
+ */
30
+ export const addTrackEntry =
31
+ <A, E>(options: AddTrackEntryOptions | ((exit: Exit.Exit<A, E>) => AddTrackEntryOptions)) =>
32
+ <R>(effect: Effect.Effect<A, E, R>): Effect.Effect<A, E, R> =>
33
+ Effect.gen(function* () {
34
+ const start = performance.now();
35
+ const exit = yield* Effect.exit(effect);
36
+ const resolvedOptions = typeof options === 'function' ? options(exit) : options;
37
+ performance.measure(resolvedOptions.name, {
38
+ start: start,
39
+ detail: {
40
+ ...resolvedOptions.detail,
41
+ devtools: resolvedOptions.devtools,
42
+ },
43
+ });
44
+ return yield* exit;
45
+ });
@@ -0,0 +1,35 @@
1
+ //
2
+ // Copyright 2026 DXOS.org
3
+ //
4
+
5
+ import * as Effect from 'effect/Effect';
6
+ import * as Runtime from 'effect/Runtime';
7
+
8
+ import { runAndForwardErrors, unwrapExit } from './errors';
9
+
10
+ /**
11
+ * Provides effect runtime with services to run effects.
12
+ */
13
+ export type RuntimeProvider<R> = Effect.Effect<Runtime.Runtime<R>>;
14
+
15
+ /**
16
+ * @returns Runtime provider from the current context.
17
+ */
18
+ export const currentRuntime = <R = never>() => Effect.runtime<R>().pipe(Effect.map(Effect.succeed));
19
+
20
+ /**
21
+ * Run effect, within runitme, clean errors and fix stack-traces.
22
+ */
23
+ export const runPromise =
24
+ <R>(provider: RuntimeProvider<R>) =>
25
+ async <A>(effect: Effect.Effect<A, any, R>): Promise<A> => {
26
+ const runtime = await runAndForwardErrors(provider);
27
+ return unwrapExit(await effect.pipe(Runtime.runPromiseExit(runtime)));
28
+ };
29
+
30
+ /**
31
+ * Provide services from runtime provider to effect.
32
+ */
33
+ export const provide: {
34
+ <R2>(runtime: RuntimeProvider<R2>): <A, E, R>(self: Effect.Effect<A, E, R>) => Effect.Effect<A, E, Exclude<R, R2>>;
35
+ } = (runtimeProvider) => (effect) => Effect.flatMap(runtimeProvider, (runtime) => Effect.provide(effect, runtime));
package/src/ast.test.ts CHANGED
@@ -15,13 +15,13 @@ import {
15
15
  getAnnotation,
16
16
  getDiscriminatedType,
17
17
  getDiscriminatingProps,
18
- getSimpleType,
18
+ getProperties,
19
19
  isArrayType,
20
+ isDiscriminatedUnion,
20
21
  isOption,
21
- isSimpleType,
22
22
  visit,
23
23
  } from './ast';
24
- import { type JsonPath, type JsonProp } from './jsonPath';
24
+ import { type JsonPath, type JsonProp } from './json-path';
25
25
 
26
26
  const ZipCode = Schema.String.pipe(
27
27
  Schema.pattern(/^\d{5}$/, {
@@ -65,10 +65,9 @@ describe('AST', () => {
65
65
 
66
66
  const prop = findProperty(TestSchema, 'name' as JsonProp);
67
67
  invariant(prop);
68
- const node = findNode(prop, isSimpleType);
68
+ const node = findNode(prop, (node) => node._tag === 'StringKeyword');
69
69
  invariant(node);
70
- const type = getSimpleType(node);
71
- expect(type).to.eq('string');
70
+ expect(node._tag).to.eq('StringKeyword');
72
71
  });
73
72
 
74
73
  test('findProperty', ({ expect }) => {
@@ -92,6 +91,30 @@ describe('AST', () => {
92
91
  }
93
92
  });
94
93
 
94
+ test('getProperties preserves annotation on property type after refinements', ({ expect }) => {
95
+ // When a property is e.g. Format.Text.pipe(nonEmptyString(), maxLength(), Schema.annotations({ title, description })),
96
+ // the form uses getProperties(schema.ast) and then Format.FormatAnnotation.getFromAst(property.type).
97
+ // Custom title and description from the outer Schema.annotations() must not be lost.
98
+ const WithRefinements = Schema.Struct({
99
+ message: Schema.String.annotations({ title: 'Feedback' }).pipe(
100
+ Schema.minLength(1),
101
+ Schema.maxLength(4096),
102
+ Schema.annotations({
103
+ title: 'Feedback label',
104
+ description: 'Feedback placeholder',
105
+ }),
106
+ ),
107
+ });
108
+ const properties = getProperties(WithRefinements.ast);
109
+ const messageProp = properties.find((p) => p.name === 'message');
110
+ invariant(messageProp);
111
+ const title = findAnnotation(messageProp.type, SchemaAST.TitleAnnotationId);
112
+ const description = findAnnotation(messageProp.type, SchemaAST.DescriptionAnnotationId);
113
+ // Outer Schema.annotations() wins so form labels/placeholders are preserved.
114
+ expect(title).to.eq('Feedback label');
115
+ expect(description).to.eq('Feedback placeholder');
116
+ });
117
+
95
118
  test('findAnnotation', ({ expect }) => {
96
119
  const TestSchema = Schema.NonEmptyString.pipe(Schema.pattern(/^\d{5}$/)).annotations({
97
120
  title: 'original title',
@@ -137,7 +160,11 @@ describe('AST', () => {
137
160
  });
138
161
 
139
162
  const props: string[] = [];
140
- visit(TestSchema.ast, (_, path) => props.push(path.join('.')));
163
+ visit(
164
+ TestSchema.ast,
165
+ (_, path) => props.push(path.join('.')),
166
+ (node, path, depth) => depth < 3,
167
+ );
141
168
  });
142
169
 
143
170
  test('discriminated unions', ({ expect }) => {
@@ -152,7 +179,7 @@ describe('AST', () => {
152
179
  expect(isOption(TestUnionSchema.ast)).to.be.false;
153
180
  expect(getDiscriminatingProps(TestUnionSchema.ast)).to.deep.eq(['kind']);
154
181
 
155
- const node = findNode(TestUnionSchema.ast, isSimpleType);
182
+ const node = findNode(TestUnionSchema.ast, isDiscriminatedUnion);
156
183
  expect(node).to.eq(TestUnionSchema.ast);
157
184
  }
158
185
 
package/src/ast.ts CHANGED
@@ -10,7 +10,7 @@ import * as SchemaAST from 'effect/SchemaAST';
10
10
  import { invariant } from '@dxos/invariant';
11
11
  import { isNonNullable } from '@dxos/util';
12
12
 
13
- import { type JsonPath, type JsonProp } from './jsonPath';
13
+ import { type JsonPath, type JsonProp } from './json-path';
14
14
 
15
15
  //
16
16
  // Refs
@@ -19,75 +19,56 @@ import { type JsonPath, type JsonProp } from './jsonPath';
19
19
  // https://effect-ts.github.io/effect/schema/SchemaAST.ts.html
20
20
  //
21
21
 
22
- // TODO(wittjosiah): What is a "simple type"?
23
- export type SimpleType = 'object' | 'string' | 'number' | 'boolean' | 'enum' | 'literal';
24
-
25
- const isTupleType = (node: SchemaAST.AST): boolean => {
26
- // NOTE: Arrays are represented as tuples with no elements and a rest part.
27
- return SchemaAST.isTupleType(node) && node.elements.length > 0;
28
- };
29
-
30
22
  /**
31
- * Get the base type; e.g., traverse through refinements.
23
+ * Unwraps and collects refinement filters.
32
24
  */
33
- export const getSimpleType = (node: SchemaAST.AST): SimpleType | undefined => {
34
- if (
35
- SchemaAST.isDeclaration(node) ||
36
- SchemaAST.isObjectKeyword(node) ||
37
- SchemaAST.isTypeLiteral(node) ||
38
- // TODO(wittjosiah): Tuples are actually arrays.
39
- isTupleType(node) ||
40
- isDiscriminatedUnion(node)
41
- ) {
42
- return 'object';
25
+ const reduceRefinements = (
26
+ type: SchemaAST.AST,
27
+ refinements: SchemaAST.Refinement['filter'][] = [],
28
+ ): { type: SchemaAST.AST; refinements: SchemaAST.Refinement['filter'][] } => {
29
+ if (SchemaAST.isRefinement(type)) {
30
+ const filter = type.filter;
31
+ const nextType = {
32
+ ...type.from,
33
+ annotations: { ...type.from.annotations, ...type.annotations },
34
+ } as SchemaAST.AST;
35
+ return reduceRefinements(nextType, [...refinements, filter]);
43
36
  }
44
37
 
45
- if (SchemaAST.isStringKeyword(node)) {
46
- return 'string';
47
- }
48
- if (SchemaAST.isNumberKeyword(node)) {
49
- return 'number';
50
- }
51
- if (SchemaAST.isBooleanKeyword(node)) {
52
- return 'boolean';
53
- }
54
-
55
- if (SchemaAST.isEnums(node)) {
56
- return 'enum';
57
- }
38
+ return { type, refinements };
39
+ };
58
40
 
59
- if (SchemaAST.isLiteral(node)) {
60
- return 'literal';
61
- }
41
+ /**
42
+ * Get the base type of a property.
43
+ *
44
+ * Unwraps refinements and optional unions.
45
+ */
46
+ export const getBaseType = (
47
+ prop: SchemaAST.PropertySignature | SchemaProperty,
48
+ ): { type: SchemaAST.AST; refinements: SchemaAST.Refinement['filter'][] } => {
49
+ const encoded = SchemaAST.encodedBoundAST(prop.type);
50
+ // Extract property ast from optional union.
51
+ const unwrapped = prop.isOptional && encoded._tag === 'Union' ? encoded.types[0] : encoded;
52
+ return reduceRefinements(unwrapped);
62
53
  };
63
54
 
64
- export const isSimpleType = (node: SchemaAST.AST): boolean => !!getSimpleType(node);
55
+ export type SchemaProperty = Pick<SchemaAST.PropertySignature, 'name' | 'type' | 'isOptional' | 'isReadonly'> & {
56
+ /** Can be used to validate the property to the spec of the initial AST. */
57
+ refinements: SchemaAST.Refinement['filter'][];
58
+ };
65
59
 
66
- export namespace SimpleType {
67
- /**
68
- * Returns the default empty value for a given SimpleType.
69
- * Used for initializing new array values etc.
70
- */
71
- export const getDefaultValue = (type: SimpleType): any => {
72
- switch (type) {
73
- case 'string': {
74
- return '';
75
- }
76
- case 'number': {
77
- return 0;
78
- }
79
- case 'boolean': {
80
- return false;
81
- }
82
- case 'object': {
83
- return {};
84
- }
85
- default: {
86
- throw new Error(`Unsupported type for default value: ${type}`);
87
- }
88
- }
89
- };
90
- }
60
+ /**
61
+ * Get the property types of an AST.
62
+ */
63
+ export const getProperties = (ast: SchemaAST.AST): SchemaProperty[] => {
64
+ const properties = SchemaAST.getPropertySignatures(ast);
65
+ return properties.map((prop) => ({
66
+ ...getBaseType(prop),
67
+ name: prop.name,
68
+ isOptional: prop.isOptional,
69
+ isReadonly: prop.isReadonly,
70
+ }));
71
+ };
91
72
 
92
73
  //
93
74
  // Branded types
@@ -111,23 +92,14 @@ export type TestFn = (node: SchemaAST.AST, path: Path, depth: number) => VisitRe
111
92
 
112
93
  export type VisitorFn = (node: SchemaAST.AST, path: Path, depth: number) => void;
113
94
 
114
- const defaultTest: TestFn = isSimpleType;
115
-
116
95
  /**
117
96
  * Visit leaf nodes.
118
97
  * Refs:
119
98
  * - https://github.com/syntax-tree/unist-util-visit?tab=readme-ov-file#visitor
120
99
  * - https://github.com/syntax-tree/unist-util-is?tab=readme-ov-file#test
121
100
  */
122
- export const visit: {
123
- (node: SchemaAST.AST, visitor: VisitorFn): void;
124
- (node: SchemaAST.AST, test: TestFn, visitor: VisitorFn): void;
125
- } = (node: SchemaAST.AST, testOrVisitor: TestFn | VisitorFn, visitor?: VisitorFn): void => {
126
- if (!visitor) {
127
- visitNode(node, defaultTest, testOrVisitor);
128
- } else {
129
- visitNode(node, testOrVisitor as TestFn, visitor);
130
- }
101
+ export const visit = (node: SchemaAST.AST, testOrVisitor: TestFn | VisitorFn, visitor: VisitorFn): void => {
102
+ visitNode(node, testOrVisitor as TestFn, visitor);
131
103
  };
132
104
 
133
105
  const visitNode = (
@@ -214,6 +186,12 @@ export const findNode = (node: SchemaAST.AST, test: (node: SchemaAST.AST) => boo
214
186
  return child;
215
187
  }
216
188
  }
189
+ for (const prop of getIndexSignatures(node)) {
190
+ const child = findNode(prop.type, test);
191
+ if (child) {
192
+ return child;
193
+ }
194
+ }
217
195
  }
218
196
 
219
197
  // Tuple.
@@ -276,10 +254,10 @@ export const findProperty = (
276
254
  //
277
255
 
278
256
  const defaultAnnotations: Record<string, SchemaAST.Annotated> = {
279
- ['ObjectKeyword' as const]: SchemaAST.objectKeyword,
280
- ['StringKeyword' as const]: SchemaAST.stringKeyword,
281
- ['NumberKeyword' as const]: SchemaAST.numberKeyword,
282
- ['BooleanKeyword' as const]: SchemaAST.booleanKeyword,
257
+ ObjectKeyword: SchemaAST.objectKeyword,
258
+ StringKeyword: SchemaAST.stringKeyword,
259
+ NumberKeyword: SchemaAST.numberKeyword,
260
+ BooleanKeyword: SchemaAST.booleanKeyword,
283
261
  };
284
262
 
285
263
  /**
@@ -338,10 +316,31 @@ export const isOption = (node: SchemaAST.AST): boolean => {
338
316
  /**
339
317
  * Determines if the node is a union of literal types.
340
318
  */
341
- export const isLiteralUnion = (node: SchemaAST.AST): boolean => {
319
+ export const isLiteralUnion = (node: SchemaAST.AST): node is SchemaAST.Union<SchemaAST.Literal> => {
342
320
  return SchemaAST.isUnion(node) && node.types.every(SchemaAST.isLiteral);
343
321
  };
344
322
 
323
+ /**
324
+ * Determines if the node is an array type.
325
+ */
326
+ export const isArrayType = (node: SchemaAST.AST): node is SchemaAST.TupleType => {
327
+ return SchemaAST.isTupleType(node) && node.elements.length === 0 && node.rest.length === 1;
328
+ };
329
+
330
+ /**
331
+ * Get the type of the array elements.
332
+ */
333
+ export const getArrayElementType = (node: SchemaAST.AST): SchemaAST.AST | undefined => {
334
+ return isArrayType(node) ? node.rest.at(0)?.type : undefined;
335
+ };
336
+
337
+ /**
338
+ * Determines if the node is a tuple type.
339
+ */
340
+ export const isTupleType = (node: SchemaAST.AST): boolean => {
341
+ return SchemaAST.isTupleType(node) && node.elements.length > 0;
342
+ };
343
+
345
344
  /**
346
345
  * Determines if the node is a discriminated union.
347
346
  */
@@ -421,6 +420,20 @@ export const getDiscriminatedType = (
421
420
  return schema.ast;
422
421
  };
423
422
 
423
+ /**
424
+ * Determines if the node is a nested object type.
425
+ */
426
+ export const isNestedType = (node: SchemaAST.AST): boolean => {
427
+ return (
428
+ SchemaAST.isDeclaration(node) ||
429
+ SchemaAST.isObjectKeyword(node) ||
430
+ SchemaAST.isTypeLiteral(node) ||
431
+ // TODO(wittjosiah): Tuples are actually arrays.
432
+ isTupleType(node) ||
433
+ isDiscriminatedUnion(node)
434
+ );
435
+ };
436
+
424
437
  /**
425
438
  * Maps AST nodes.
426
439
  * The user is responsible for recursively calling {@link mapAst} on the SchemaAST.
@@ -444,6 +457,7 @@ export const mapAst = (
444
457
  ),
445
458
  ),
446
459
  ast.indexSignatures,
460
+ ast.annotations,
447
461
  );
448
462
  }
449
463
  case 'Union': {
@@ -468,15 +482,18 @@ export const mapAst = (
468
482
  }
469
483
  };
470
484
 
471
- /**
472
- * @returns true if AST is for Array(T) or optional(Array(T)).
473
- */
474
- export const isArrayType = (node: SchemaAST.AST): boolean => {
475
- return (
476
- SchemaAST.isTupleType(node) ||
477
- (SchemaAST.isUnion(node) &&
478
- node.types.some(isArrayType) &&
479
- node.types.some(SchemaAST.isUndefinedKeyword) &&
480
- node.types.length === 2)
481
- );
485
+ const getIndexSignatures = (ast: SchemaAST.AST): Array<SchemaAST.IndexSignature> => {
486
+ const annotation = SchemaAST.getSurrogateAnnotation(ast);
487
+ if (Option.isSome(annotation)) {
488
+ return getIndexSignatures(annotation.value);
489
+ }
490
+ switch (ast._tag) {
491
+ case 'TypeLiteral':
492
+ return ast.indexSignatures.slice();
493
+ case 'Suspend':
494
+ return getIndexSignatures(ast.f());
495
+ case 'Refinement':
496
+ return getIndexSignatures(ast.from);
497
+ }
498
+ return [];
482
499
  };
@@ -0,0 +1,35 @@
1
+ //
2
+ // Copyright 2025 DXOS.org
3
+ //
4
+
5
+ import * as BrowserKeyValueStore from '@effect/platform-browser/BrowserKeyValueStore';
6
+ import { Atom } from '@effect-atom/atom-react';
7
+ import type * as Schema from 'effect/Schema';
8
+
9
+ // TODO(wittjosiah): This is currently provided for convenience but maybe should be removed.
10
+ const defaultRuntime = Atom.runtime(BrowserKeyValueStore.layerLocalStorage);
11
+
12
+ /**
13
+ * Creates a KVS-backed atom for structured settings using Atom.kvs.
14
+ * The entire object is stored as a single localStorage key with JSON serialization.
15
+ *
16
+ * @param options.key - The localStorage key to store the value under.
17
+ * @param options.schema - Effect Schema for the value type.
18
+ * @param options.defaultValue - Function returning the default value.
19
+ * @param options.runtime - Optional custom Atom runtime (defaults to localStorage).
20
+ * @returns A writable atom that persists to localStorage.
21
+ */
22
+ export const createKvsStore = <T extends Record<string, any>>(options: {
23
+ key: string;
24
+ schema: Schema.Schema<T>;
25
+ defaultValue: () => T;
26
+ runtime?: ReturnType<typeof Atom.runtime>;
27
+ }): Atom.Writable<T> => {
28
+ const runtime = options.runtime ?? defaultRuntime;
29
+ return Atom.kvs({
30
+ runtime,
31
+ key: options.key,
32
+ schema: options.schema,
33
+ defaultValue: options.defaultValue,
34
+ }).pipe(Atom.keepAlive);
35
+ };