@dxos/plugin-debug 0.8.4-main.5ea62a8 → 0.8.4-main.72ec0f3
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/lib/browser/{DevtoolsOverviewContainer-EPD6EWT5.mjs → DevtoolsOverviewContainer-JXVZVPHN.mjs} +2 -2
- package/dist/lib/browser/{DevtoolsOverviewContainer-EPD6EWT5.mjs.map → DevtoolsOverviewContainer-JXVZVPHN.mjs.map} +1 -1
- package/dist/lib/browser/{SpaceGenerator-C7XYY4YG.mjs → SpaceGenerator-46TAISVE.mjs} +226 -53
- package/dist/lib/browser/SpaceGenerator-46TAISVE.mjs.map +7 -0
- package/dist/lib/browser/{app-graph-builder-JTIEFOWZ.mjs → app-graph-builder-CRH2HJKT.mjs} +60 -59
- package/dist/lib/browser/app-graph-builder-CRH2HJKT.mjs.map +7 -0
- package/dist/lib/browser/{chunk-AJA6RYN3.mjs → chunk-SRV2AIGJ.mjs} +2 -2
- package/dist/lib/browser/chunk-SRV2AIGJ.mjs.map +7 -0
- package/dist/lib/browser/chunk-WZFZ4ESO.mjs +20 -0
- package/dist/lib/browser/chunk-WZFZ4ESO.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +11 -14
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/{react-context-NVAGLAJD.mjs → react-context-P2YDWEWI.mjs} +6 -6
- package/dist/lib/browser/react-context-P2YDWEWI.mjs.map +7 -0
- package/dist/lib/browser/{react-surface-446ZZTL6.mjs → react-surface-2SNVZDEA.mjs} +86 -85
- package/dist/lib/browser/react-surface-2SNVZDEA.mjs.map +7 -0
- package/dist/lib/browser/{settings-LSSWLM5I.mjs → settings-SQXR3OAH.mjs} +5 -5
- package/dist/lib/browser/{settings-LSSWLM5I.mjs.map → settings-SQXR3OAH.mjs.map} +1 -1
- package/dist/types/src/DebugPlugin.d.ts +1 -1
- package/dist/types/src/DebugPlugin.d.ts.map +1 -1
- package/dist/types/src/capabilities/app-graph-builder.d.ts.map +1 -1
- package/dist/types/src/capabilities/react-surface.d.ts.map +1 -1
- package/dist/types/src/components/DebugObjectPanel.d.ts.map +1 -1
- package/dist/types/src/components/DebugSettings.d.ts.map +1 -1
- package/dist/types/src/components/SpaceGenerator/ObjectGenerator.d.ts +2 -2
- package/dist/types/src/components/SpaceGenerator/ObjectGenerator.d.ts.map +1 -1
- package/dist/types/src/components/SpaceGenerator/SpaceGenerator.stories.d.ts +0 -1
- package/dist/types/src/components/SpaceGenerator/SpaceGenerator.stories.d.ts.map +1 -1
- package/dist/types/src/components/SpaceGenerator/presets.d.ts +6 -32
- package/dist/types/src/components/SpaceGenerator/presets.d.ts.map +1 -1
- package/dist/types/src/components/Wireframe.d.ts +1 -1
- package/dist/types/src/components/Wireframe.d.ts.map +1 -1
- package/dist/types/src/meta.d.ts +0 -1
- package/dist/types/src/meta.d.ts.map +1 -1
- package/dist/types/src/translations.d.ts +1 -1
- package/dist/types/src/types.d.ts +1 -1
- package/dist/types/src/types.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +67 -64
- package/src/DebugPlugin.tsx +5 -6
- package/src/capabilities/app-graph-builder.ts +59 -58
- package/src/capabilities/react-context.tsx +2 -2
- package/src/capabilities/react-surface.tsx +70 -50
- package/src/components/DebugObjectPanel.tsx +2 -4
- package/src/components/DebugSettings.tsx +39 -18
- package/src/components/DebugStatus.tsx +2 -2
- package/src/components/DevtoolsOverviewContainer.tsx +1 -1
- package/src/components/SpaceGenerator/ObjectGenerator.tsx +19 -25
- package/src/components/SpaceGenerator/SchemaTable.tsx +2 -2
- package/src/components/SpaceGenerator/SpaceGenerator.stories.tsx +3 -5
- package/src/components/SpaceGenerator/SpaceGenerator.tsx +7 -7
- package/src/components/SpaceGenerator/draw-util.ts +2 -2
- package/src/components/SpaceGenerator/presets.ts +179 -13
- package/src/components/Wireframe.tsx +3 -4
- package/src/meta.ts +6 -5
- package/src/translations.ts +1 -1
- package/src/types.ts +1 -1
- package/dist/lib/browser/SpaceGenerator-C7XYY4YG.mjs.map +0 -7
- package/dist/lib/browser/app-graph-builder-JTIEFOWZ.mjs.map +0 -7
- package/dist/lib/browser/chunk-5XPIRNQS.mjs +0 -18
- package/dist/lib/browser/chunk-5XPIRNQS.mjs.map +0 -7
- package/dist/lib/browser/chunk-AJA6RYN3.mjs.map +0 -7
- package/dist/lib/browser/react-context-NVAGLAJD.mjs.map +0 -7
- package/dist/lib/browser/react-surface-446ZZTL6.mjs.map +0 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/components/DevtoolsOverviewContainer.tsx
|
|
2
2
|
import { useSignals as _useSignals } from "@preact-signals/safe-react/tracking";
|
|
3
3
|
import React from "react";
|
|
4
|
-
import { Surface } from "@dxos/app-framework";
|
|
4
|
+
import { Surface } from "@dxos/app-framework/react";
|
|
5
5
|
import { StatsPanel, useStats } from "@dxos/devtools";
|
|
6
6
|
var DevtoolsOverviewContainer = () => {
|
|
7
7
|
var _effect = _useSignals();
|
|
@@ -22,4 +22,4 @@ export {
|
|
|
22
22
|
DevtoolsOverviewContainer,
|
|
23
23
|
DevtoolsOverviewContainer_default as default
|
|
24
24
|
};
|
|
25
|
-
//# sourceMappingURL=DevtoolsOverviewContainer-
|
|
25
|
+
//# sourceMappingURL=DevtoolsOverviewContainer-JXVZVPHN.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/components/DevtoolsOverviewContainer.tsx"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport React from 'react';\n\nimport { Surface } from '@dxos/app-framework';\nimport { StatsPanel, useStats } from '@dxos/devtools';\n\nexport const DevtoolsOverviewContainer = () => {\n const [stats, refreshStats] = useStats();\n\n return (\n <StatsPanel stats={stats} onRefresh={refreshStats}>\n <Surface role='devtools-overview' />\n </StatsPanel>\n );\n};\n\nexport default DevtoolsOverviewContainer;\n"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport React from 'react';\n\nimport { Surface } from '@dxos/app-framework/react';\nimport { StatsPanel, useStats } from '@dxos/devtools';\n\nexport const DevtoolsOverviewContainer = () => {\n const [stats, refreshStats] = useStats();\n\n return (\n <StatsPanel stats={stats} onRefresh={refreshStats}>\n <Surface role='devtools-overview' />\n </StatsPanel>\n );\n};\n\nexport default DevtoolsOverviewContainer;\n"],
|
|
5
5
|
"mappings": ";;AAIA,OAAOA,WAAW;AAElB,SAASC,eAAe;AACxB,SAASC,YAAYC,gBAAgB;AAE9B,IAAMC,4BAA4B,MAAA;;;AACvC,UAAM,CAACC,OAAOC,YAAAA,IAAgBC,SAAAA;AAE9B,WACE,sBAAA,cAACC,YAAAA;MAAWH;MAAcI,WAAWH;OACnC,sBAAA,cAACI,SAAAA;MAAQC,MAAK;;;;;AAGpB;AAEA,IAAA,oCAAeP;",
|
|
6
6
|
"names": ["React", "Surface", "StatsPanel", "useStats", "DevtoolsOverviewContainer", "stats", "refreshStats", "useStats", "StatsPanel", "onRefresh", "Surface", "role"]
|
|
7
7
|
}
|
|
@@ -1,52 +1,53 @@
|
|
|
1
1
|
// src/components/SpaceGenerator/SpaceGenerator.tsx
|
|
2
2
|
import { useSignals as _useSignals2 } from "@preact-signals/safe-react/tracking";
|
|
3
3
|
import React2, { useCallback, useMemo, useState } from "react";
|
|
4
|
-
import { useIntentDispatcher } from "@dxos/app-framework";
|
|
4
|
+
import { useIntentDispatcher } from "@dxos/app-framework/react";
|
|
5
5
|
import { ComputeGraph as ComputeGraph2 } from "@dxos/conductor";
|
|
6
|
-
import { Filter as
|
|
7
|
-
import { Markdown as
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
6
|
+
import { Filter as Filter3 } from "@dxos/echo";
|
|
7
|
+
import { Markdown as Markdown3 } from "@dxos/plugin-markdown/types";
|
|
8
|
+
import { Sheet as Sheet2 } from "@dxos/plugin-sheet/types";
|
|
9
|
+
import { Diagram as Diagram2 } from "@dxos/plugin-sketch/types";
|
|
10
10
|
import { useClient } from "@dxos/react-client";
|
|
11
11
|
import { getTypename } from "@dxos/react-client/echo";
|
|
12
12
|
import { IconButton as IconButton2, Input, Toolbar, useAsyncEffect } from "@dxos/react-ui";
|
|
13
13
|
import { SyntaxHighlighter } from "@dxos/react-ui-syntax-highlighter";
|
|
14
|
-
import {
|
|
14
|
+
import { Organization as Organization2, Person as Person2, Task } from "@dxos/types";
|
|
15
15
|
import { jsonKeyReplacer, sortKeys } from "@dxos/util";
|
|
16
16
|
|
|
17
17
|
// src/components/SpaceGenerator/ObjectGenerator.tsx
|
|
18
18
|
import { createIntent } from "@dxos/app-framework";
|
|
19
19
|
import { addressToA1Notation } from "@dxos/compute";
|
|
20
20
|
import { ComputeGraph, ComputeGraphModel, DEFAULT_OUTPUT, NODE_INPUT, NODE_OUTPUT } from "@dxos/conductor";
|
|
21
|
-
import { DXN, Filter, Key,
|
|
21
|
+
import { DXN, Filter, Key, Type } from "@dxos/echo";
|
|
22
22
|
import { Markdown } from "@dxos/plugin-markdown/types";
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import { CanvasType, DiagramType } from "@dxos/plugin-sketch/types";
|
|
23
|
+
import { Sheet } from "@dxos/plugin-sheet/types";
|
|
24
|
+
import { Diagram } from "@dxos/plugin-sketch/types";
|
|
26
25
|
import { SpaceAction } from "@dxos/plugin-space/types";
|
|
27
26
|
import { faker } from "@dxos/random";
|
|
28
|
-
import {
|
|
27
|
+
import { View, getTypenameFromQuery } from "@dxos/schema";
|
|
29
28
|
import { createAsyncGenerator } from "@dxos/schema/testing";
|
|
30
29
|
import { range } from "@dxos/util";
|
|
31
30
|
var generator = faker;
|
|
32
31
|
var findViewByTypename = async (views, typename) => {
|
|
33
|
-
return views.find((view) => view.query.
|
|
32
|
+
return views.find((view) => getTypenameFromQuery(view.query.ast) === typename);
|
|
34
33
|
};
|
|
35
34
|
var createGenerator = (client, dispatch, schema) => {
|
|
36
|
-
return async (space, n
|
|
35
|
+
return async (space, n) => {
|
|
37
36
|
const typename = schema.typename;
|
|
38
|
-
const { objects: views } = await space.db.query(Filter.type(
|
|
37
|
+
const { objects: views } = await space.db.query(Filter.type(View.View)).run();
|
|
39
38
|
const view = await findViewByTypename(views, typename);
|
|
40
39
|
const staticSchema = client?.graph.schemaRegistry.schemas.find((schema2) => Type.getTypename(schema2) === typename);
|
|
41
40
|
if (!view && !staticSchema) {
|
|
42
41
|
await dispatch(createIntent(SpaceAction.AddSchema, {
|
|
43
42
|
space,
|
|
44
|
-
schema
|
|
43
|
+
schema,
|
|
44
|
+
show: false
|
|
45
45
|
}));
|
|
46
46
|
} else if (!view && staticSchema) {
|
|
47
47
|
await dispatch(createIntent(SpaceAction.UseStaticSchema, {
|
|
48
48
|
space,
|
|
49
|
-
typename
|
|
49
|
+
typename,
|
|
50
|
+
show: false
|
|
50
51
|
}));
|
|
51
52
|
}
|
|
52
53
|
const generate = createAsyncGenerator(generator, schema, {
|
|
@@ -60,7 +61,7 @@ var staticGenerators = /* @__PURE__ */ new Map([
|
|
|
60
61
|
Markdown.Document.typename,
|
|
61
62
|
async (space, n, cb) => {
|
|
62
63
|
const objects = range(n).map(() => {
|
|
63
|
-
return space.db.add(Markdown.
|
|
64
|
+
return space.db.add(Markdown.make({
|
|
64
65
|
name: faker.commerce.productName(),
|
|
65
66
|
content: faker.lorem.sentences(5)
|
|
66
67
|
}));
|
|
@@ -70,14 +71,11 @@ var staticGenerators = /* @__PURE__ */ new Map([
|
|
|
70
71
|
}
|
|
71
72
|
],
|
|
72
73
|
[
|
|
73
|
-
|
|
74
|
+
Diagram.Diagram.typename,
|
|
74
75
|
async (space, n, cb) => {
|
|
75
76
|
const objects = range(n).map(() => {
|
|
76
|
-
const obj = space.db.add(
|
|
77
|
-
name: faker.commerce.productName()
|
|
78
|
-
canvas: Ref.make(Obj.make(CanvasType, {
|
|
79
|
-
content: {}
|
|
80
|
-
}))
|
|
77
|
+
const obj = space.db.add(Diagram.make({
|
|
78
|
+
name: faker.commerce.productName()
|
|
81
79
|
}));
|
|
82
80
|
return obj;
|
|
83
81
|
});
|
|
@@ -87,7 +85,7 @@ var staticGenerators = /* @__PURE__ */ new Map([
|
|
|
87
85
|
],
|
|
88
86
|
// TODO(burdon): Create unit tests.
|
|
89
87
|
[
|
|
90
|
-
|
|
88
|
+
Sheet.Sheet.typename,
|
|
91
89
|
async (space, n, cb) => {
|
|
92
90
|
const objects = range(n).map(() => {
|
|
93
91
|
const cells = {};
|
|
@@ -123,7 +121,7 @@ var staticGenerators = /* @__PURE__ */ new Map([
|
|
|
123
121
|
}
|
|
124
122
|
}
|
|
125
123
|
}
|
|
126
|
-
return space.db.add(
|
|
124
|
+
return space.db.add(Sheet.make({
|
|
127
125
|
name: faker.commerce.productName(),
|
|
128
126
|
cells
|
|
129
127
|
}));
|
|
@@ -197,33 +195,208 @@ var staticGenerators = /* @__PURE__ */ new Map([
|
|
|
197
195
|
]);
|
|
198
196
|
|
|
199
197
|
// src/components/SpaceGenerator/presets.ts
|
|
200
|
-
import
|
|
198
|
+
import * as Schema from "effect/Schema";
|
|
199
|
+
import { Agent, EntityExtraction, ResearchBlueprint } from "@dxos/assistant-toolkit";
|
|
200
|
+
import { Prompt } from "@dxos/blueprints";
|
|
201
201
|
import { NODE_INPUT as NODE_INPUT2 } from "@dxos/conductor";
|
|
202
|
-
import { DXN as DXN2, Key as Key2, Obj
|
|
203
|
-
import {
|
|
202
|
+
import { DXN as DXN2, Filter as Filter2, Key as Key2, Obj, Query, Ref, Tag, Type as Type2 } from "@dxos/echo";
|
|
203
|
+
import { Trigger, serializeFunction } from "@dxos/functions";
|
|
204
204
|
import { invariant } from "@dxos/invariant";
|
|
205
|
+
import { gmail } from "@dxos/plugin-inbox";
|
|
206
|
+
import { Mailbox } from "@dxos/plugin-inbox/types";
|
|
207
|
+
import { Markdown as Markdown2 } from "@dxos/plugin-markdown/types";
|
|
205
208
|
import { createAppend, createChat, createComputeGraph, createConstant, createFunction, createGpt, createQueue, createRandom, createSurface, createTemplate, createText, createTrigger } from "@dxos/react-ui-canvas-compute";
|
|
206
209
|
import { CanvasBoardType, CanvasGraphModel, pointMultiply, pointsToRect, rectToPoints } from "@dxos/react-ui-canvas-editor";
|
|
207
|
-
import {
|
|
210
|
+
import { Collection, View as View2 } from "@dxos/schema";
|
|
211
|
+
import { Message, Organization, Person, Project } from "@dxos/types";
|
|
212
|
+
import { range as range2, trim } from "@dxos/util";
|
|
208
213
|
var __dxlog_file = "/__w/dxos/dxos/packages/plugins/plugin-debug/src/components/SpaceGenerator/presets.ts";
|
|
209
|
-
var PresetName = /* @__PURE__ */ function(PresetName2) {
|
|
214
|
+
var PresetName = /* @__PURE__ */ (function(PresetName2) {
|
|
215
|
+
PresetName2["DXOS_TEAM"] = "dxos-team";
|
|
216
|
+
PresetName2["ORG_RESEARCH_PROJECT"] = "org-research-project";
|
|
210
217
|
PresetName2["GPT_QUEUE"] = "webhook-gpt-queue";
|
|
211
218
|
PresetName2["CHAT_GPT"] = "chat-gpt-text";
|
|
212
219
|
PresetName2["OBJECT_CHANGE_QUEUE"] = "objectChange-queue";
|
|
213
|
-
PresetName2["FOREX_FUNCTION_CALL"] = "forex-function-call";
|
|
214
220
|
PresetName2["TIMER_TICK_QUEUE"] = "timerTick-queue";
|
|
221
|
+
PresetName2["FOREX_FUNCTION_CALL"] = "forex-function-call";
|
|
215
222
|
PresetName2["DISCORD_MESSAGES"] = "discord-messages";
|
|
216
223
|
return PresetName2;
|
|
217
|
-
}({});
|
|
224
|
+
})({});
|
|
218
225
|
var generator2 = () => ({
|
|
219
226
|
schemas: [
|
|
220
227
|
CanvasBoardType,
|
|
221
|
-
|
|
228
|
+
Trigger.Trigger
|
|
222
229
|
],
|
|
223
230
|
types: Object.values(PresetName).map((name) => ({
|
|
224
231
|
typename: name
|
|
225
232
|
})),
|
|
226
233
|
items: [
|
|
234
|
+
[
|
|
235
|
+
"dxos-team",
|
|
236
|
+
async (space, n, cb) => {
|
|
237
|
+
const objects = range2(n, () => {
|
|
238
|
+
const org = space.db.add(Obj.make(Organization.Organization, {
|
|
239
|
+
name: "DXOS",
|
|
240
|
+
website: "https://dxos.org"
|
|
241
|
+
}));
|
|
242
|
+
const doc = space.db.add(Markdown2.make({
|
|
243
|
+
name: "DXOS Research",
|
|
244
|
+
content: "DXOS builds Composer, an open-source AI-powered malleable application."
|
|
245
|
+
}));
|
|
246
|
+
const tag = space.db.add(Tag.make({
|
|
247
|
+
label: "Investor"
|
|
248
|
+
}));
|
|
249
|
+
const tagDxn = Obj.getDXN(tag).toString();
|
|
250
|
+
Obj.getMeta(doc).tags = [
|
|
251
|
+
tagDxn
|
|
252
|
+
];
|
|
253
|
+
space.db.add(Obj.make(Person.Person, {
|
|
254
|
+
fullName: "Rich",
|
|
255
|
+
organization: Ref.make(org)
|
|
256
|
+
}, {
|
|
257
|
+
tags: [
|
|
258
|
+
tagDxn
|
|
259
|
+
]
|
|
260
|
+
}));
|
|
261
|
+
space.db.add(Obj.make(Person.Person, {
|
|
262
|
+
fullName: "Josiah",
|
|
263
|
+
organization: Ref.make(org)
|
|
264
|
+
}));
|
|
265
|
+
space.db.add(Obj.make(Person.Person, {
|
|
266
|
+
fullName: "Dima",
|
|
267
|
+
organization: Ref.make(org)
|
|
268
|
+
}));
|
|
269
|
+
space.db.add(Obj.make(Person.Person, {
|
|
270
|
+
fullName: "Mykola",
|
|
271
|
+
organization: Ref.make(org)
|
|
272
|
+
}));
|
|
273
|
+
return doc;
|
|
274
|
+
});
|
|
275
|
+
cb?.(objects);
|
|
276
|
+
return objects;
|
|
277
|
+
}
|
|
278
|
+
],
|
|
279
|
+
[
|
|
280
|
+
"org-research-project",
|
|
281
|
+
async (space, n, cb) => {
|
|
282
|
+
const mailbox = await space.db.query(Filter2.type(Mailbox.Mailbox)).first();
|
|
283
|
+
const tag = await space.db.query(Filter2.type(Tag.Tag, {
|
|
284
|
+
label: "Investor"
|
|
285
|
+
})).first();
|
|
286
|
+
const tagDxn = Obj.getDXN(tag).toString();
|
|
287
|
+
const objects = range2(n, () => {
|
|
288
|
+
const contactsQuery = Query.select(Filter2.type(Person.Person)).select(Filter2.tag(tagDxn));
|
|
289
|
+
const organizationsQuery = Query.select(Filter2.type(Organization.Organization)).select(Filter2.tag(tagDxn));
|
|
290
|
+
const notesQuery = Query.select(Filter2.type(Markdown2.Document)).select(Filter2.tag(tagDxn));
|
|
291
|
+
space.db.add(Trigger.make({
|
|
292
|
+
enabled: true,
|
|
293
|
+
spec: {
|
|
294
|
+
kind: "timer",
|
|
295
|
+
cron: "* * * * *"
|
|
296
|
+
},
|
|
297
|
+
function: Ref.make(serializeFunction(gmail.sync)),
|
|
298
|
+
input: {
|
|
299
|
+
mailboxId: Obj.getDXN(mailbox).toString()
|
|
300
|
+
}
|
|
301
|
+
}));
|
|
302
|
+
space.db.add(Trigger.make({
|
|
303
|
+
enabled: true,
|
|
304
|
+
// TODO(wittjosiah): Queue trigger doesn't support matching query of the column.
|
|
305
|
+
spec: {
|
|
306
|
+
kind: "queue",
|
|
307
|
+
queue: mailbox.queue.dxn.toString()
|
|
308
|
+
},
|
|
309
|
+
function: Ref.make(serializeFunction(EntityExtraction.extract)),
|
|
310
|
+
input: {
|
|
311
|
+
source: "{{event.item}}"
|
|
312
|
+
}
|
|
313
|
+
}));
|
|
314
|
+
const researchPrompt = space.db.add(Prompt.make({
|
|
315
|
+
name: "Research",
|
|
316
|
+
description: "Research organization",
|
|
317
|
+
input: Schema.Struct({
|
|
318
|
+
org: Schema.Any
|
|
319
|
+
}),
|
|
320
|
+
output: Schema.Any,
|
|
321
|
+
// TODO(dmaretskyi): This mocks research (returns pre-baked result), the actual research might take compute minutes.
|
|
322
|
+
// Remove the mock prompt to do the actual research.
|
|
323
|
+
instructions: trim`
|
|
324
|
+
Research the organization provided as input.
|
|
325
|
+
Create a research note for it at the end.
|
|
326
|
+
NOTE: Do mocked reseach (set mockSearch to true).
|
|
327
|
+
`,
|
|
328
|
+
blueprints: [
|
|
329
|
+
Ref.make(ResearchBlueprint)
|
|
330
|
+
]
|
|
331
|
+
}));
|
|
332
|
+
space.db.add(Trigger.make({
|
|
333
|
+
enabled: true,
|
|
334
|
+
spec: {
|
|
335
|
+
kind: "subscription",
|
|
336
|
+
query: {
|
|
337
|
+
ast: organizationsQuery.ast
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
function: Ref.make(serializeFunction(Agent.prompt)),
|
|
341
|
+
input: {
|
|
342
|
+
prompt: Ref.make(researchPrompt),
|
|
343
|
+
input: "{{event.subject}}"
|
|
344
|
+
}
|
|
345
|
+
}));
|
|
346
|
+
const mailboxView = View2.make({
|
|
347
|
+
name: "Mailbox",
|
|
348
|
+
query: Query.select(Filter2.type(Message.Message, {
|
|
349
|
+
properties: {
|
|
350
|
+
labels: Filter2.contains("investor")
|
|
351
|
+
}
|
|
352
|
+
})).options({
|
|
353
|
+
queues: [
|
|
354
|
+
mailbox.queue.dxn.toString()
|
|
355
|
+
]
|
|
356
|
+
}),
|
|
357
|
+
jsonSchema: Type2.toJsonSchema(Message.Message),
|
|
358
|
+
presentation: Obj.make(Collection.Collection, {
|
|
359
|
+
objects: []
|
|
360
|
+
})
|
|
361
|
+
});
|
|
362
|
+
const contactsView = View2.make({
|
|
363
|
+
name: "Contacts",
|
|
364
|
+
query: contactsQuery,
|
|
365
|
+
jsonSchema: Type2.toJsonSchema(Person.Person),
|
|
366
|
+
presentation: Obj.make(Collection.Collection, {
|
|
367
|
+
objects: []
|
|
368
|
+
})
|
|
369
|
+
});
|
|
370
|
+
const organizationsView = View2.make({
|
|
371
|
+
name: "Organizations",
|
|
372
|
+
query: organizationsQuery,
|
|
373
|
+
jsonSchema: Type2.toJsonSchema(Organization.Organization),
|
|
374
|
+
presentation: Obj.make(Collection.Collection, {
|
|
375
|
+
objects: []
|
|
376
|
+
})
|
|
377
|
+
});
|
|
378
|
+
const notesView = View2.make({
|
|
379
|
+
name: "Notes",
|
|
380
|
+
query: notesQuery,
|
|
381
|
+
jsonSchema: Type2.toJsonSchema(Markdown2.Document),
|
|
382
|
+
presentation: Obj.make(Collection.Collection, {
|
|
383
|
+
objects: []
|
|
384
|
+
})
|
|
385
|
+
});
|
|
386
|
+
return space.db.add(Project.make({
|
|
387
|
+
name: "Investor Research",
|
|
388
|
+
collections: [
|
|
389
|
+
mailboxView,
|
|
390
|
+
contactsView,
|
|
391
|
+
organizationsView,
|
|
392
|
+
notesView
|
|
393
|
+
].map((view) => Ref.make(view))
|
|
394
|
+
}));
|
|
395
|
+
});
|
|
396
|
+
cb?.(objects.flat());
|
|
397
|
+
return objects.flat();
|
|
398
|
+
}
|
|
399
|
+
],
|
|
227
400
|
[
|
|
228
401
|
"webhook-gpt-queue",
|
|
229
402
|
async (space, n, cb) => {
|
|
@@ -288,8 +461,8 @@ var generator2 = () => ({
|
|
|
288
461
|
"objectChange-queue",
|
|
289
462
|
async (space, n, cb) => {
|
|
290
463
|
const objects = range2(n, () => {
|
|
291
|
-
const { canvasModel, computeModel } = createQueueSinkPreset(space, "subscription", (triggerSpec) => triggerSpec.
|
|
292
|
-
|
|
464
|
+
const { canvasModel, computeModel } = createQueueSinkPreset(space, "subscription", (triggerSpec) => triggerSpec.query = {
|
|
465
|
+
ast: Query.select(Filter2.typename("dxos.org/type/Chess")).ast
|
|
293
466
|
}, "type");
|
|
294
467
|
return addToSpace("objectChange-queue", space, canvasModel, computeModel);
|
|
295
468
|
});
|
|
@@ -688,7 +861,7 @@ var createQueueSinkPreset = (space, triggerKind, initSpec, triggerOutputName) =>
|
|
|
688
861
|
const triggerSpec = functionTrigger.spec;
|
|
689
862
|
invariant(triggerSpec && triggerSpec.kind === triggerKind, "No trigger spec.", {
|
|
690
863
|
F: __dxlog_file,
|
|
691
|
-
L:
|
|
864
|
+
L: 662,
|
|
692
865
|
S: void 0,
|
|
693
866
|
A: [
|
|
694
867
|
"triggerSpec && triggerSpec.kind === triggerKind",
|
|
@@ -701,7 +874,7 @@ var createQueueSinkPreset = (space, triggerKind, initSpec, triggerOutputName) =>
|
|
|
701
874
|
const templateComputeNode = computeModel.nodes.find((n) => n.id === template.node);
|
|
702
875
|
invariant(templateComputeNode, "Template compute node was not created.", {
|
|
703
876
|
F: __dxlog_file,
|
|
704
|
-
L:
|
|
877
|
+
L: 669,
|
|
705
878
|
S: void 0,
|
|
706
879
|
A: [
|
|
707
880
|
"templateComputeNode",
|
|
@@ -725,9 +898,9 @@ var createQueueSinkPreset = (space, triggerKind, initSpec, triggerOutputName) =>
|
|
|
725
898
|
};
|
|
726
899
|
};
|
|
727
900
|
var addToSpace = (name, space, canvas, compute) => {
|
|
728
|
-
return space.db.add(
|
|
901
|
+
return space.db.add(Obj.make(CanvasBoardType, {
|
|
729
902
|
name,
|
|
730
|
-
computeGraph:
|
|
903
|
+
computeGraph: Ref.make(compute.root),
|
|
731
904
|
layout: canvas.graph
|
|
732
905
|
}));
|
|
733
906
|
};
|
|
@@ -763,14 +936,14 @@ var setupQueue = (space, canvasModel, args) => {
|
|
|
763
936
|
var attachTrigger = (functionTrigger, computeModel) => {
|
|
764
937
|
invariant(functionTrigger, void 0, {
|
|
765
938
|
F: __dxlog_file,
|
|
766
|
-
L:
|
|
939
|
+
L: 708,
|
|
767
940
|
S: void 0,
|
|
768
941
|
A: [
|
|
769
942
|
"functionTrigger",
|
|
770
943
|
""
|
|
771
944
|
]
|
|
772
945
|
});
|
|
773
|
-
functionTrigger.function =
|
|
946
|
+
functionTrigger.function = Ref.make(computeModel.root);
|
|
774
947
|
const inputNode = computeModel.nodes.find((node) => node.type === NODE_INPUT2);
|
|
775
948
|
functionTrigger.inputNodeId = inputNode.id;
|
|
776
949
|
};
|
|
@@ -833,9 +1006,9 @@ var SchemaTable = ({ types, objects = {}, label, onClick }) => {
|
|
|
833
1006
|
key: type.typename,
|
|
834
1007
|
className: "grid grid-cols-subgrid col-span-3 items-center"
|
|
835
1008
|
}, /* @__PURE__ */ React.createElement("div", {
|
|
836
|
-
className: "
|
|
1009
|
+
className: "pli-2 text-sm font-mono text-subdued"
|
|
837
1010
|
}, type.typename), /* @__PURE__ */ React.createElement("div", {
|
|
838
|
-
className: "
|
|
1011
|
+
className: "pli-2 text-right font-mono"
|
|
839
1012
|
}, objects[type.typename] ?? 0), /* @__PURE__ */ React.createElement(IconButton, {
|
|
840
1013
|
variant: "ghost",
|
|
841
1014
|
icon: "ph--plus--regular",
|
|
@@ -855,15 +1028,15 @@ var SpaceGenerator = ({ space, onCreateObjects }) => {
|
|
|
855
1028
|
const { dispatchPromise: dispatch } = useIntentDispatcher();
|
|
856
1029
|
const client = useClient();
|
|
857
1030
|
const staticTypes = [
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
1031
|
+
Markdown3.Document,
|
|
1032
|
+
Diagram2.Diagram,
|
|
1033
|
+
Sheet2.Sheet,
|
|
861
1034
|
ComputeGraph2
|
|
862
1035
|
];
|
|
863
1036
|
const recordTypes = [
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
1037
|
+
Organization2.Organization,
|
|
1038
|
+
Person2.Person,
|
|
1039
|
+
Task.Task
|
|
867
1040
|
];
|
|
868
1041
|
const [count, setCount] = useState(1);
|
|
869
1042
|
const [info, setInfo] = useState({});
|
|
@@ -890,7 +1063,7 @@ var SpaceGenerator = ({ space, onCreateObjects }) => {
|
|
|
890
1063
|
const updateInfo = async () => {
|
|
891
1064
|
const echoSchema = await space.db.schemaRegistry.query().run();
|
|
892
1065
|
const staticSchema = space.db.graph.schemaRegistry.schemas;
|
|
893
|
-
const { objects } = await space.db.query(
|
|
1066
|
+
const { objects } = await space.db.query(Filter3.everything()).run();
|
|
894
1067
|
const objectMap = sortKeys(objects.reduce((map, obj) => {
|
|
895
1068
|
const type = getTypename(obj);
|
|
896
1069
|
if (type) {
|
|
@@ -959,8 +1132,8 @@ var SpaceGenerator = ({ space, onCreateObjects }) => {
|
|
|
959
1132
|
label: "Presets",
|
|
960
1133
|
onClick: handleCreateData
|
|
961
1134
|
}), /* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(SyntaxHighlighter, {
|
|
962
|
-
|
|
963
|
-
|
|
1135
|
+
language: "json",
|
|
1136
|
+
classNames: "text-xs"
|
|
964
1137
|
}, JSON.stringify({
|
|
965
1138
|
space,
|
|
966
1139
|
...info
|
|
@@ -977,4 +1150,4 @@ var SpaceGenerator_default = SpaceGenerator;
|
|
|
977
1150
|
export {
|
|
978
1151
|
SpaceGenerator_default as default
|
|
979
1152
|
};
|
|
980
|
-
//# sourceMappingURL=SpaceGenerator-
|
|
1153
|
+
//# sourceMappingURL=SpaceGenerator-46TAISVE.mjs.map
|