reigncode-app 1.3.2
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/AGENTS.md +30 -0
- package/Dockerfile +21 -0
- package/README.md +51 -0
- package/bunfig.toml +3 -0
- package/create-effect-simplification-spec.md +515 -0
- package/e2e/AGENTS.md +226 -0
- package/e2e/actions.ts +1018 -0
- package/e2e/app/home.spec.ts +24 -0
- package/e2e/app/navigation.spec.ts +10 -0
- package/e2e/app/palette.spec.ts +20 -0
- package/e2e/app/server-default.spec.ts +58 -0
- package/e2e/app/session.spec.ts +16 -0
- package/e2e/app/titlebar-history.spec.ts +120 -0
- package/e2e/commands/input-focus.spec.ts +15 -0
- package/e2e/commands/panels.spec.ts +33 -0
- package/e2e/commands/tab-close.spec.ts +32 -0
- package/e2e/files/file-open.spec.ts +31 -0
- package/e2e/files/file-tree.spec.ts +56 -0
- package/e2e/files/file-viewer.spec.ts +156 -0
- package/e2e/fixtures.ts +154 -0
- package/e2e/models/model-picker.spec.ts +48 -0
- package/e2e/models/models-visibility.spec.ts +61 -0
- package/e2e/projects/project-edit.spec.ts +43 -0
- package/e2e/projects/projects-close.spec.ts +54 -0
- package/e2e/projects/projects-switch.spec.ts +116 -0
- package/e2e/projects/workspace-new-session.spec.ts +94 -0
- package/e2e/projects/workspaces.spec.ts +375 -0
- package/e2e/prompt/context.spec.ts +95 -0
- package/e2e/prompt/prompt-async.spec.ts +76 -0
- package/e2e/prompt/prompt-drop-file-uri.spec.ts +22 -0
- package/e2e/prompt/prompt-drop-file.spec.ts +30 -0
- package/e2e/prompt/prompt-history.spec.ts +184 -0
- package/e2e/prompt/prompt-mention.spec.ts +26 -0
- package/e2e/prompt/prompt-multiline.spec.ts +24 -0
- package/e2e/prompt/prompt-shell.spec.ts +62 -0
- package/e2e/prompt/prompt-slash-open.spec.ts +22 -0
- package/e2e/prompt/prompt-slash-share.spec.ts +64 -0
- package/e2e/prompt/prompt-slash-terminal.spec.ts +18 -0
- package/e2e/prompt/prompt.spec.ts +55 -0
- package/e2e/selectors.ts +75 -0
- package/e2e/session/session-child-navigation.spec.ts +37 -0
- package/e2e/session/session-composer-dock.spec.ts +530 -0
- package/e2e/session/session-model-persistence.spec.ts +359 -0
- package/e2e/session/session-review.spec.ts +426 -0
- package/e2e/session/session-undo-redo.spec.ts +233 -0
- package/e2e/session/session.spec.ts +174 -0
- package/e2e/settings/settings-keybinds.spec.ts +389 -0
- package/e2e/settings/settings-models.spec.ts +122 -0
- package/e2e/settings/settings-providers.spec.ts +136 -0
- package/e2e/settings/settings.spec.ts +519 -0
- package/e2e/sidebar/sidebar-popover-actions.spec.ts +118 -0
- package/e2e/sidebar/sidebar-session-links.spec.ts +30 -0
- package/e2e/sidebar/sidebar.spec.ts +40 -0
- package/e2e/status/status-popover.spec.ts +94 -0
- package/e2e/terminal/terminal-init.spec.ts +28 -0
- package/e2e/terminal/terminal-reconnect.spec.ts +46 -0
- package/e2e/terminal/terminal-tabs.spec.ts +168 -0
- package/e2e/terminal/terminal.spec.ts +18 -0
- package/e2e/thinking-level.spec.ts +25 -0
- package/e2e/tsconfig.json +9 -0
- package/e2e/utils.ts +63 -0
- package/happydom.ts +75 -0
- package/index.html +23 -0
- package/package.json +77 -0
- package/playwright.config.ts +45 -0
- package/public/_headers +17 -0
- package/public/oc-theme-preload.js +35 -0
- package/script/e2e-local.ts +180 -0
- package/src/addons/serialize.test.ts +319 -0
- package/src/addons/serialize.ts +634 -0
- package/src/app.tsx +308 -0
- package/src/components/debug-bar.tsx +443 -0
- package/src/components/dialog-connect-provider.tsx +617 -0
- package/src/components/dialog-custom-provider-form.ts +158 -0
- package/src/components/dialog-custom-provider.test.ts +80 -0
- package/src/components/dialog-custom-provider.tsx +329 -0
- package/src/components/dialog-edit-project.tsx +255 -0
- package/src/components/dialog-fork.tsx +108 -0
- package/src/components/dialog-manage-models.tsx +101 -0
- package/src/components/dialog-release-notes.tsx +144 -0
- package/src/components/dialog-select-directory.tsx +392 -0
- package/src/components/dialog-select-file.tsx +466 -0
- package/src/components/dialog-select-mcp.tsx +107 -0
- package/src/components/dialog-select-model-unpaid.tsx +137 -0
- package/src/components/dialog-select-model.tsx +220 -0
- package/src/components/dialog-select-provider.tsx +86 -0
- package/src/components/dialog-select-server.tsx +649 -0
- package/src/components/dialog-settings.tsx +73 -0
- package/src/components/file-tree.test.ts +78 -0
- package/src/components/file-tree.tsx +507 -0
- package/src/components/link.tsx +26 -0
- package/src/components/model-tooltip.tsx +91 -0
- package/src/components/prompt-input/attachments.test.ts +44 -0
- package/src/components/prompt-input/attachments.ts +201 -0
- package/src/components/prompt-input/build-request-parts.test.ts +312 -0
- package/src/components/prompt-input/build-request-parts.ts +175 -0
- package/src/components/prompt-input/context-items.tsx +88 -0
- package/src/components/prompt-input/drag-overlay.tsx +25 -0
- package/src/components/prompt-input/editor-dom.test.ts +99 -0
- package/src/components/prompt-input/editor-dom.ts +148 -0
- package/src/components/prompt-input/files.ts +66 -0
- package/src/components/prompt-input/history.test.ts +153 -0
- package/src/components/prompt-input/history.ts +256 -0
- package/src/components/prompt-input/image-attachments.tsx +58 -0
- package/src/components/prompt-input/paste.ts +24 -0
- package/src/components/prompt-input/placeholder.test.ts +48 -0
- package/src/components/prompt-input/placeholder.ts +15 -0
- package/src/components/prompt-input/slash-popover.tsx +141 -0
- package/src/components/prompt-input/submit.test.ts +346 -0
- package/src/components/prompt-input/submit.ts +579 -0
- package/src/components/prompt-input.tsx +1595 -0
- package/src/components/server/server-row.tsx +130 -0
- package/src/components/session/index.ts +5 -0
- package/src/components/session/session-context-breakdown.test.ts +61 -0
- package/src/components/session/session-context-breakdown.ts +132 -0
- package/src/components/session/session-context-format.ts +20 -0
- package/src/components/session/session-context-metrics.test.ts +101 -0
- package/src/components/session/session-context-metrics.ts +82 -0
- package/src/components/session/session-context-tab.tsx +339 -0
- package/src/components/session/session-header.tsx +486 -0
- package/src/components/session/session-new-view.tsx +91 -0
- package/src/components/session/session-sortable-tab.tsx +70 -0
- package/src/components/session/session-sortable-terminal-tab.tsx +193 -0
- package/src/components/session-context-usage.tsx +122 -0
- package/src/components/settings-general.tsx +585 -0
- package/src/components/settings-keybinds.tsx +453 -0
- package/src/components/settings-list.tsx +5 -0
- package/src/components/settings-models.tsx +137 -0
- package/src/components/settings-providers.tsx +251 -0
- package/src/components/status-popover.tsx +419 -0
- package/src/components/terminal.tsx +653 -0
- package/src/components/titlebar-history.test.ts +63 -0
- package/src/components/titlebar-history.ts +57 -0
- package/src/components/titlebar.tsx +312 -0
- package/src/constants/file-picker.ts +89 -0
- package/src/context/command-keybind.test.ts +69 -0
- package/src/context/command.test.ts +25 -0
- package/src/context/command.tsx +437 -0
- package/src/context/comments.test.ts +186 -0
- package/src/context/comments.tsx +243 -0
- package/src/context/file/content-cache.ts +88 -0
- package/src/context/file/path.test.ts +360 -0
- package/src/context/file/path.ts +151 -0
- package/src/context/file/tree-store.ts +170 -0
- package/src/context/file/types.ts +41 -0
- package/src/context/file/view-cache.ts +146 -0
- package/src/context/file/watcher.test.ts +149 -0
- package/src/context/file/watcher.ts +53 -0
- package/src/context/file-content-eviction-accounting.test.ts +65 -0
- package/src/context/file.tsx +280 -0
- package/src/context/global-sdk.tsx +232 -0
- package/src/context/global-sync/bootstrap.ts +206 -0
- package/src/context/global-sync/child-store.test.ts +38 -0
- package/src/context/global-sync/child-store.ts +281 -0
- package/src/context/global-sync/event-reducer.test.ts +552 -0
- package/src/context/global-sync/event-reducer.ts +359 -0
- package/src/context/global-sync/eviction.ts +28 -0
- package/src/context/global-sync/queue.ts +83 -0
- package/src/context/global-sync/session-cache.test.ts +102 -0
- package/src/context/global-sync/session-cache.ts +62 -0
- package/src/context/global-sync/session-load.ts +25 -0
- package/src/context/global-sync/session-prefetch.test.ts +96 -0
- package/src/context/global-sync/session-prefetch.ts +100 -0
- package/src/context/global-sync/session-trim.test.ts +59 -0
- package/src/context/global-sync/session-trim.ts +56 -0
- package/src/context/global-sync/types.ts +133 -0
- package/src/context/global-sync/utils.ts +25 -0
- package/src/context/global-sync.test.ts +122 -0
- package/src/context/global-sync.tsx +408 -0
- package/src/context/highlights.tsx +233 -0
- package/src/context/language.tsx +248 -0
- package/src/context/layout-scroll.test.ts +64 -0
- package/src/context/layout-scroll.ts +126 -0
- package/src/context/layout.test.ts +69 -0
- package/src/context/layout.tsx +937 -0
- package/src/context/local.tsx +422 -0
- package/src/context/model-variant.test.ts +86 -0
- package/src/context/model-variant.ts +52 -0
- package/src/context/models.tsx +163 -0
- package/src/context/notification.tsx +373 -0
- package/src/context/permission-auto-respond.test.ts +102 -0
- package/src/context/permission-auto-respond.ts +51 -0
- package/src/context/permission.tsx +277 -0
- package/src/context/platform.tsx +99 -0
- package/src/context/prompt.tsx +297 -0
- package/src/context/sdk.tsx +49 -0
- package/src/context/server.tsx +295 -0
- package/src/context/settings.tsx +241 -0
- package/src/context/sync-optimistic.test.ts +123 -0
- package/src/context/sync.tsx +618 -0
- package/src/context/terminal-title.ts +51 -0
- package/src/context/terminal.test.ts +82 -0
- package/src/context/terminal.tsx +437 -0
- package/src/entry.tsx +144 -0
- package/src/env.d.ts +18 -0
- package/src/hooks/use-providers.ts +44 -0
- package/src/i18n/ar.ts +855 -0
- package/src/i18n/br.ts +867 -0
- package/src/i18n/bs.ts +943 -0
- package/src/i18n/da.ts +937 -0
- package/src/i18n/de.ts +879 -0
- package/src/i18n/en.ts +948 -0
- package/src/i18n/es.ts +950 -0
- package/src/i18n/fr.ts +878 -0
- package/src/i18n/ja.ts +861 -0
- package/src/i18n/ko.ts +860 -0
- package/src/i18n/no.ts +944 -0
- package/src/i18n/parity.test.ts +32 -0
- package/src/i18n/pl.ts +865 -0
- package/src/i18n/ru.ts +946 -0
- package/src/i18n/th.ts +933 -0
- package/src/i18n/tr.ts +952 -0
- package/src/i18n/zh.ts +930 -0
- package/src/i18n/zht.ts +925 -0
- package/src/index.css +29 -0
- package/src/index.ts +6 -0
- package/src/pages/directory-layout.tsx +88 -0
- package/src/pages/error.tsx +327 -0
- package/src/pages/home.tsx +131 -0
- package/src/pages/layout/deep-links.ts +50 -0
- package/src/pages/layout/helpers.test.ts +211 -0
- package/src/pages/layout/helpers.ts +98 -0
- package/src/pages/layout/inline-editor.tsx +126 -0
- package/src/pages/layout/sidebar-items.tsx +437 -0
- package/src/pages/layout/sidebar-project.tsx +384 -0
- package/src/pages/layout/sidebar-shell.tsx +125 -0
- package/src/pages/layout/sidebar-workspace.tsx +504 -0
- package/src/pages/layout.tsx +2509 -0
- package/src/pages/session/composer/index.ts +2 -0
- package/src/pages/session/composer/session-composer-region.tsx +255 -0
- package/src/pages/session/composer/session-composer-state.test.ts +128 -0
- package/src/pages/session/composer/session-composer-state.ts +249 -0
- package/src/pages/session/composer/session-followup-dock.tsx +109 -0
- package/src/pages/session/composer/session-permission-dock.tsx +74 -0
- package/src/pages/session/composer/session-question-dock.tsx +449 -0
- package/src/pages/session/composer/session-request-tree.ts +52 -0
- package/src/pages/session/composer/session-revert-dock.tsx +99 -0
- package/src/pages/session/composer/session-todo-dock.tsx +330 -0
- package/src/pages/session/file-tab-scroll.test.ts +40 -0
- package/src/pages/session/file-tab-scroll.ts +67 -0
- package/src/pages/session/file-tabs.tsx +456 -0
- package/src/pages/session/handoff.ts +36 -0
- package/src/pages/session/helpers.test.ts +181 -0
- package/src/pages/session/helpers.ts +198 -0
- package/src/pages/session/message-gesture.test.ts +62 -0
- package/src/pages/session/message-gesture.ts +21 -0
- package/src/pages/session/message-id-from-hash.ts +6 -0
- package/src/pages/session/message-timeline.tsx +1013 -0
- package/src/pages/session/review-tab.tsx +170 -0
- package/src/pages/session/session-layout.ts +20 -0
- package/src/pages/session/session-model-helpers.test.ts +51 -0
- package/src/pages/session/session-model-helpers.ts +16 -0
- package/src/pages/session/session-side-panel.tsx +453 -0
- package/src/pages/session/terminal-label.ts +16 -0
- package/src/pages/session/terminal-panel.test.ts +25 -0
- package/src/pages/session/terminal-panel.tsx +326 -0
- package/src/pages/session/use-session-commands.tsx +495 -0
- package/src/pages/session/use-session-hash-scroll.test.ts +16 -0
- package/src/pages/session/use-session-hash-scroll.ts +197 -0
- package/src/pages/session.tsx +1841 -0
- package/src/sst-env.d.ts +12 -0
- package/src/testing/model-selection.ts +80 -0
- package/src/testing/prompt.ts +56 -0
- package/src/testing/session-composer.ts +84 -0
- package/src/testing/terminal.ts +118 -0
- package/src/theme-preload.test.ts +46 -0
- package/src/utils/agent.ts +23 -0
- package/src/utils/aim.ts +138 -0
- package/src/utils/base64.ts +10 -0
- package/src/utils/comment-note.ts +88 -0
- package/src/utils/id.ts +99 -0
- package/src/utils/notification-click.test.ts +27 -0
- package/src/utils/notification-click.ts +13 -0
- package/src/utils/persist.test.ts +115 -0
- package/src/utils/persist.ts +476 -0
- package/src/utils/prompt.test.ts +44 -0
- package/src/utils/prompt.ts +203 -0
- package/src/utils/runtime-adapters.test.ts +62 -0
- package/src/utils/runtime-adapters.ts +39 -0
- package/src/utils/same.ts +6 -0
- package/src/utils/scoped-cache.test.ts +69 -0
- package/src/utils/scoped-cache.ts +104 -0
- package/src/utils/server-errors.test.ts +131 -0
- package/src/utils/server-errors.ts +80 -0
- package/src/utils/server-health.test.ts +123 -0
- package/src/utils/server-health.ts +91 -0
- package/src/utils/server.ts +22 -0
- package/src/utils/solid-dnd.tsx +49 -0
- package/src/utils/sound.ts +117 -0
- package/src/utils/terminal-writer.test.ts +64 -0
- package/src/utils/terminal-writer.ts +65 -0
- package/src/utils/time.ts +22 -0
- package/src/utils/uuid.test.ts +78 -0
- package/src/utils/uuid.ts +12 -0
- package/src/utils/worktree.test.ts +46 -0
- package/src/utils/worktree.ts +73 -0
- package/sst-env.d.ts +10 -0
- package/tsconfig.json +26 -0
- package/vite.config.ts +15 -0
- package/vite.js +26 -0
|
@@ -0,0 +1,579 @@
|
|
|
1
|
+
import type { Message, Session } from "@reign-labs/sdk/v2/client"
|
|
2
|
+
import { showToast } from "@reign-labs/ui/toast"
|
|
3
|
+
import { base64Encode } from "@reign-labs/util/encode"
|
|
4
|
+
import { Binary } from "@reign-labs/util/binary"
|
|
5
|
+
import { useNavigate, useParams } from "@solidjs/router"
|
|
6
|
+
import type { Accessor } from "solid-js"
|
|
7
|
+
import type { FileSelection } from "@/context/file"
|
|
8
|
+
import { useGlobalSync } from "@/context/global-sync"
|
|
9
|
+
import { useLanguage } from "@/context/language"
|
|
10
|
+
import { useLayout } from "@/context/layout"
|
|
11
|
+
import { useLocal } from "@/context/local"
|
|
12
|
+
import { usePermission } from "@/context/permission"
|
|
13
|
+
import { type ContextItem, type ImageAttachmentPart, type Prompt, usePrompt } from "@/context/prompt"
|
|
14
|
+
import { useSDK } from "@/context/sdk"
|
|
15
|
+
import { useSync } from "@/context/sync"
|
|
16
|
+
import { Identifier } from "@/utils/id"
|
|
17
|
+
import { Worktree as WorktreeState } from "@/utils/worktree"
|
|
18
|
+
import { buildRequestParts } from "./build-request-parts"
|
|
19
|
+
import { setCursorPosition } from "./editor-dom"
|
|
20
|
+
import { formatServerError } from "@/utils/server-errors"
|
|
21
|
+
|
|
22
|
+
type PendingPrompt = {
|
|
23
|
+
abort: AbortController
|
|
24
|
+
cleanup: VoidFunction
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const pending = new Map<string, PendingPrompt>()
|
|
28
|
+
|
|
29
|
+
export type FollowupDraft = {
|
|
30
|
+
sessionID: string
|
|
31
|
+
sessionDirectory: string
|
|
32
|
+
prompt: Prompt
|
|
33
|
+
context: (ContextItem & { key: string })[]
|
|
34
|
+
agent: string
|
|
35
|
+
model: { providerID: string; modelID: string }
|
|
36
|
+
variant?: string
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
type FollowupSendInput = {
|
|
40
|
+
client: ReturnType<typeof useSDK>["client"]
|
|
41
|
+
globalSync: ReturnType<typeof useGlobalSync>
|
|
42
|
+
sync: ReturnType<typeof useSync>
|
|
43
|
+
draft: FollowupDraft
|
|
44
|
+
messageID?: string
|
|
45
|
+
optimisticBusy?: boolean
|
|
46
|
+
before?: () => Promise<boolean> | boolean
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const draftText = (prompt: Prompt) => prompt.map((part) => ("content" in part ? part.content : "")).join("")
|
|
50
|
+
|
|
51
|
+
const draftImages = (prompt: Prompt) => prompt.filter((part): part is ImageAttachmentPart => part.type === "image")
|
|
52
|
+
|
|
53
|
+
export async function sendFollowupDraft(input: FollowupSendInput) {
|
|
54
|
+
const text = draftText(input.draft.prompt)
|
|
55
|
+
const images = draftImages(input.draft.prompt)
|
|
56
|
+
const [, setStore] = input.globalSync.child(input.draft.sessionDirectory)
|
|
57
|
+
|
|
58
|
+
const setBusy = () => {
|
|
59
|
+
if (!input.optimisticBusy) return
|
|
60
|
+
setStore("session_status", input.draft.sessionID, { type: "busy" })
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const setIdle = () => {
|
|
64
|
+
if (!input.optimisticBusy) return
|
|
65
|
+
setStore("session_status", input.draft.sessionID, { type: "idle" })
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
const wait = async () => {
|
|
69
|
+
const ok = await input.before?.()
|
|
70
|
+
if (ok === false) return false
|
|
71
|
+
return true
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
const [head, ...tail] = text.split(" ")
|
|
75
|
+
const cmd = head?.startsWith("/") ? head.slice(1) : undefined
|
|
76
|
+
if (cmd && input.sync.data.command.find((item) => item.name === cmd)) {
|
|
77
|
+
setBusy()
|
|
78
|
+
try {
|
|
79
|
+
if (!(await wait())) {
|
|
80
|
+
setIdle()
|
|
81
|
+
return false
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
await input.client.session.command({
|
|
85
|
+
sessionID: input.draft.sessionID,
|
|
86
|
+
command: cmd,
|
|
87
|
+
arguments: tail.join(" "),
|
|
88
|
+
agent: input.draft.agent,
|
|
89
|
+
model: `${input.draft.model.providerID}/${input.draft.model.modelID}`,
|
|
90
|
+
variant: input.draft.variant,
|
|
91
|
+
parts: images.map((attachment) => ({
|
|
92
|
+
id: Identifier.ascending("part"),
|
|
93
|
+
type: "file" as const,
|
|
94
|
+
mime: attachment.mime,
|
|
95
|
+
url: attachment.dataUrl,
|
|
96
|
+
filename: attachment.filename,
|
|
97
|
+
})),
|
|
98
|
+
})
|
|
99
|
+
return true
|
|
100
|
+
} catch (err) {
|
|
101
|
+
setIdle()
|
|
102
|
+
throw err
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
const messageID = input.messageID ?? Identifier.ascending("message")
|
|
107
|
+
const { requestParts, optimisticParts } = buildRequestParts({
|
|
108
|
+
prompt: input.draft.prompt,
|
|
109
|
+
context: input.draft.context,
|
|
110
|
+
images,
|
|
111
|
+
text,
|
|
112
|
+
sessionID: input.draft.sessionID,
|
|
113
|
+
messageID,
|
|
114
|
+
sessionDirectory: input.draft.sessionDirectory,
|
|
115
|
+
})
|
|
116
|
+
|
|
117
|
+
const message: Message = {
|
|
118
|
+
id: messageID,
|
|
119
|
+
sessionID: input.draft.sessionID,
|
|
120
|
+
role: "user",
|
|
121
|
+
time: { created: Date.now() },
|
|
122
|
+
agent: input.draft.agent,
|
|
123
|
+
model: input.draft.model,
|
|
124
|
+
variant: input.draft.variant,
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
const add = () =>
|
|
128
|
+
input.sync.session.optimistic.add({
|
|
129
|
+
directory: input.draft.sessionDirectory,
|
|
130
|
+
sessionID: input.draft.sessionID,
|
|
131
|
+
message,
|
|
132
|
+
parts: optimisticParts,
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
const remove = () =>
|
|
136
|
+
input.sync.session.optimistic.remove({
|
|
137
|
+
directory: input.draft.sessionDirectory,
|
|
138
|
+
sessionID: input.draft.sessionID,
|
|
139
|
+
messageID,
|
|
140
|
+
})
|
|
141
|
+
|
|
142
|
+
setBusy()
|
|
143
|
+
add()
|
|
144
|
+
|
|
145
|
+
try {
|
|
146
|
+
if (!(await wait())) {
|
|
147
|
+
setIdle()
|
|
148
|
+
remove()
|
|
149
|
+
return false
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
await input.client.session.promptAsync({
|
|
153
|
+
sessionID: input.draft.sessionID,
|
|
154
|
+
agent: input.draft.agent,
|
|
155
|
+
model: input.draft.model,
|
|
156
|
+
messageID,
|
|
157
|
+
parts: requestParts,
|
|
158
|
+
variant: input.draft.variant,
|
|
159
|
+
})
|
|
160
|
+
return true
|
|
161
|
+
} catch (err) {
|
|
162
|
+
setIdle()
|
|
163
|
+
remove()
|
|
164
|
+
throw err
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
type PromptSubmitInput = {
|
|
169
|
+
info: Accessor<{ id: string } | undefined>
|
|
170
|
+
imageAttachments: Accessor<ImageAttachmentPart[]>
|
|
171
|
+
commentCount: Accessor<number>
|
|
172
|
+
autoAccept: Accessor<boolean>
|
|
173
|
+
mode: Accessor<"normal" | "shell">
|
|
174
|
+
working: Accessor<boolean>
|
|
175
|
+
editor: () => HTMLDivElement | undefined
|
|
176
|
+
queueScroll: () => void
|
|
177
|
+
promptLength: (prompt: Prompt) => number
|
|
178
|
+
addToHistory: (prompt: Prompt, mode: "normal" | "shell") => void
|
|
179
|
+
resetHistoryNavigation: () => void
|
|
180
|
+
setMode: (mode: "normal" | "shell") => void
|
|
181
|
+
setPopover: (popover: "at" | "slash" | null) => void
|
|
182
|
+
newSessionWorktree?: Accessor<string | undefined>
|
|
183
|
+
onNewSessionWorktreeReset?: () => void
|
|
184
|
+
shouldQueue?: Accessor<boolean>
|
|
185
|
+
onQueue?: (draft: FollowupDraft) => void
|
|
186
|
+
onAbort?: () => void
|
|
187
|
+
onSubmit?: () => void
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
type CommentItem = {
|
|
191
|
+
path: string
|
|
192
|
+
selection?: FileSelection
|
|
193
|
+
comment?: string
|
|
194
|
+
commentID?: string
|
|
195
|
+
commentOrigin?: "review" | "file"
|
|
196
|
+
preview?: string
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
export function createPromptSubmit(input: PromptSubmitInput) {
|
|
200
|
+
const navigate = useNavigate()
|
|
201
|
+
const sdk = useSDK()
|
|
202
|
+
const sync = useSync()
|
|
203
|
+
const globalSync = useGlobalSync()
|
|
204
|
+
const local = useLocal()
|
|
205
|
+
const permission = usePermission()
|
|
206
|
+
const prompt = usePrompt()
|
|
207
|
+
const layout = useLayout()
|
|
208
|
+
const language = useLanguage()
|
|
209
|
+
const params = useParams()
|
|
210
|
+
|
|
211
|
+
const errorMessage = (err: unknown) => {
|
|
212
|
+
if (err && typeof err === "object" && "data" in err) {
|
|
213
|
+
const data = (err as { data?: { message?: string } }).data
|
|
214
|
+
if (data?.message) return data.message
|
|
215
|
+
}
|
|
216
|
+
if (err instanceof Error) return err.message
|
|
217
|
+
return language.t("common.requestFailed")
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
const abort = async () => {
|
|
221
|
+
const sessionID = params.id
|
|
222
|
+
if (!sessionID) return Promise.resolve()
|
|
223
|
+
|
|
224
|
+
globalSync.todo.set(sessionID, [])
|
|
225
|
+
const [, setStore] = globalSync.child(sdk.directory)
|
|
226
|
+
setStore("todo", sessionID, [])
|
|
227
|
+
|
|
228
|
+
input.onAbort?.()
|
|
229
|
+
|
|
230
|
+
const queued = pending.get(sessionID)
|
|
231
|
+
if (queued) {
|
|
232
|
+
queued.abort.abort()
|
|
233
|
+
queued.cleanup()
|
|
234
|
+
pending.delete(sessionID)
|
|
235
|
+
return Promise.resolve()
|
|
236
|
+
}
|
|
237
|
+
return sdk.client.session
|
|
238
|
+
.abort({
|
|
239
|
+
sessionID,
|
|
240
|
+
})
|
|
241
|
+
.catch(() => {})
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
const restoreCommentItems = (items: CommentItem[]) => {
|
|
245
|
+
for (const item of items) {
|
|
246
|
+
prompt.context.add({
|
|
247
|
+
type: "file",
|
|
248
|
+
path: item.path,
|
|
249
|
+
selection: item.selection,
|
|
250
|
+
comment: item.comment,
|
|
251
|
+
commentID: item.commentID,
|
|
252
|
+
commentOrigin: item.commentOrigin,
|
|
253
|
+
preview: item.preview,
|
|
254
|
+
})
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
const removeCommentItems = (items: { key: string }[]) => {
|
|
259
|
+
for (const item of items) {
|
|
260
|
+
prompt.context.remove(item.key)
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
const clearContext = () => {
|
|
265
|
+
for (const item of prompt.context.items()) {
|
|
266
|
+
prompt.context.remove(item.key)
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
const seed = (dir: string, info: Session) => {
|
|
271
|
+
const [, setStore] = globalSync.child(dir)
|
|
272
|
+
setStore("session", (list: Session[]) => {
|
|
273
|
+
const result = Binary.search(list, info.id, (item) => item.id)
|
|
274
|
+
const next = [...list]
|
|
275
|
+
if (result.found) {
|
|
276
|
+
next[result.index] = info
|
|
277
|
+
return next
|
|
278
|
+
}
|
|
279
|
+
next.splice(result.index, 0, info)
|
|
280
|
+
return next
|
|
281
|
+
})
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
const handleSubmit = async (event: Event) => {
|
|
285
|
+
event.preventDefault()
|
|
286
|
+
|
|
287
|
+
const currentPrompt = prompt.current()
|
|
288
|
+
const text = currentPrompt.map((part) => ("content" in part ? part.content : "")).join("")
|
|
289
|
+
const images = input.imageAttachments().slice()
|
|
290
|
+
const mode = input.mode()
|
|
291
|
+
|
|
292
|
+
if (text.trim().length === 0 && images.length === 0 && input.commentCount() === 0) {
|
|
293
|
+
if (input.working()) abort()
|
|
294
|
+
return
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
const currentModel = local.model.current()
|
|
298
|
+
const currentAgent = local.agent.current()
|
|
299
|
+
const variant = local.model.variant.current()
|
|
300
|
+
if (!currentModel || !currentAgent) {
|
|
301
|
+
showToast({
|
|
302
|
+
title: language.t("prompt.toast.modelAgentRequired.title"),
|
|
303
|
+
description: language.t("prompt.toast.modelAgentRequired.description"),
|
|
304
|
+
})
|
|
305
|
+
return
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
input.addToHistory(currentPrompt, mode)
|
|
309
|
+
input.resetHistoryNavigation()
|
|
310
|
+
|
|
311
|
+
const projectDirectory = sdk.directory
|
|
312
|
+
const isNewSession = !params.id
|
|
313
|
+
const shouldAutoAccept = isNewSession && input.autoAccept()
|
|
314
|
+
const worktreeSelection = input.newSessionWorktree?.() || "main"
|
|
315
|
+
|
|
316
|
+
let sessionDirectory = projectDirectory
|
|
317
|
+
let client = sdk.client
|
|
318
|
+
|
|
319
|
+
if (isNewSession) {
|
|
320
|
+
if (worktreeSelection === "create") {
|
|
321
|
+
const createdWorktree = await client.worktree
|
|
322
|
+
.create({ directory: projectDirectory })
|
|
323
|
+
.then((x) => x.data)
|
|
324
|
+
.catch((err) => {
|
|
325
|
+
showToast({
|
|
326
|
+
title: language.t("prompt.toast.worktreeCreateFailed.title"),
|
|
327
|
+
description: errorMessage(err),
|
|
328
|
+
})
|
|
329
|
+
return undefined
|
|
330
|
+
})
|
|
331
|
+
|
|
332
|
+
if (!createdWorktree?.directory) {
|
|
333
|
+
showToast({
|
|
334
|
+
title: language.t("prompt.toast.worktreeCreateFailed.title"),
|
|
335
|
+
description: language.t("common.requestFailed"),
|
|
336
|
+
})
|
|
337
|
+
return
|
|
338
|
+
}
|
|
339
|
+
WorktreeState.pending(createdWorktree.directory)
|
|
340
|
+
sessionDirectory = createdWorktree.directory
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
if (worktreeSelection !== "main" && worktreeSelection !== "create") {
|
|
344
|
+
sessionDirectory = worktreeSelection
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
if (sessionDirectory !== projectDirectory) {
|
|
348
|
+
client = sdk.createClient({
|
|
349
|
+
directory: sessionDirectory,
|
|
350
|
+
throwOnError: true,
|
|
351
|
+
})
|
|
352
|
+
globalSync.child(sessionDirectory)
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
input.onNewSessionWorktreeReset?.()
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
let session = input.info()
|
|
359
|
+
if (!session && isNewSession) {
|
|
360
|
+
const created = await client.session
|
|
361
|
+
.create()
|
|
362
|
+
.then((x) => x.data ?? undefined)
|
|
363
|
+
.catch((err) => {
|
|
364
|
+
showToast({
|
|
365
|
+
title: language.t("prompt.toast.sessionCreateFailed.title"),
|
|
366
|
+
description: errorMessage(err),
|
|
367
|
+
})
|
|
368
|
+
return undefined
|
|
369
|
+
})
|
|
370
|
+
if (created) {
|
|
371
|
+
seed(sessionDirectory, created)
|
|
372
|
+
session = created
|
|
373
|
+
if (shouldAutoAccept) permission.enableAutoAccept(session.id, sessionDirectory)
|
|
374
|
+
local.session.promote(sessionDirectory, session.id)
|
|
375
|
+
layout.handoff.setTabs(base64Encode(sessionDirectory), session.id)
|
|
376
|
+
navigate(`/${base64Encode(sessionDirectory)}/session/${session.id}`)
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
if (!session) {
|
|
380
|
+
showToast({
|
|
381
|
+
title: language.t("prompt.toast.promptSendFailed.title"),
|
|
382
|
+
description: language.t("prompt.toast.promptSendFailed.description"),
|
|
383
|
+
})
|
|
384
|
+
return
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
const model = {
|
|
388
|
+
modelID: currentModel.id,
|
|
389
|
+
providerID: currentModel.provider.id,
|
|
390
|
+
}
|
|
391
|
+
const agent = currentAgent.name
|
|
392
|
+
const context = prompt.context.items().slice()
|
|
393
|
+
const draft: FollowupDraft = {
|
|
394
|
+
sessionID: session.id,
|
|
395
|
+
sessionDirectory,
|
|
396
|
+
prompt: currentPrompt,
|
|
397
|
+
context,
|
|
398
|
+
agent,
|
|
399
|
+
model,
|
|
400
|
+
variant,
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
const clearInput = () => {
|
|
404
|
+
prompt.reset()
|
|
405
|
+
input.setMode("normal")
|
|
406
|
+
input.setPopover(null)
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
const restoreInput = () => {
|
|
410
|
+
prompt.set(currentPrompt, input.promptLength(currentPrompt))
|
|
411
|
+
input.setMode(mode)
|
|
412
|
+
input.setPopover(null)
|
|
413
|
+
requestAnimationFrame(() => {
|
|
414
|
+
const editor = input.editor()
|
|
415
|
+
if (!editor) return
|
|
416
|
+
editor.focus()
|
|
417
|
+
setCursorPosition(editor, input.promptLength(currentPrompt))
|
|
418
|
+
input.queueScroll()
|
|
419
|
+
})
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
if (!isNewSession && mode === "normal" && input.shouldQueue?.()) {
|
|
423
|
+
input.onQueue?.(draft)
|
|
424
|
+
clearContext()
|
|
425
|
+
clearInput()
|
|
426
|
+
return
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
input.onSubmit?.()
|
|
430
|
+
|
|
431
|
+
if (mode === "shell") {
|
|
432
|
+
clearInput()
|
|
433
|
+
client.session
|
|
434
|
+
.shell({
|
|
435
|
+
sessionID: session.id,
|
|
436
|
+
agent,
|
|
437
|
+
model,
|
|
438
|
+
command: text,
|
|
439
|
+
})
|
|
440
|
+
.catch((err) => {
|
|
441
|
+
showToast({
|
|
442
|
+
title: language.t("prompt.toast.shellSendFailed.title"),
|
|
443
|
+
description: errorMessage(err),
|
|
444
|
+
})
|
|
445
|
+
restoreInput()
|
|
446
|
+
})
|
|
447
|
+
return
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
if (text.startsWith("/")) {
|
|
451
|
+
const [cmdName, ...args] = text.split(" ")
|
|
452
|
+
const commandName = cmdName.slice(1)
|
|
453
|
+
const customCommand = sync.data.command.find((c) => c.name === commandName)
|
|
454
|
+
if (customCommand) {
|
|
455
|
+
clearInput()
|
|
456
|
+
client.session
|
|
457
|
+
.command({
|
|
458
|
+
sessionID: session.id,
|
|
459
|
+
command: commandName,
|
|
460
|
+
arguments: args.join(" "),
|
|
461
|
+
agent,
|
|
462
|
+
model: `${model.providerID}/${model.modelID}`,
|
|
463
|
+
variant,
|
|
464
|
+
parts: images.map((attachment) => ({
|
|
465
|
+
id: Identifier.ascending("part"),
|
|
466
|
+
type: "file" as const,
|
|
467
|
+
mime: attachment.mime,
|
|
468
|
+
url: attachment.dataUrl,
|
|
469
|
+
filename: attachment.filename,
|
|
470
|
+
})),
|
|
471
|
+
})
|
|
472
|
+
.catch((err) => {
|
|
473
|
+
showToast({
|
|
474
|
+
title: language.t("prompt.toast.commandSendFailed.title"),
|
|
475
|
+
description: formatServerError(err, language.t, language.t("common.requestFailed")),
|
|
476
|
+
})
|
|
477
|
+
restoreInput()
|
|
478
|
+
})
|
|
479
|
+
return
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
const commentItems = context.filter((item) => item.type === "file" && !!item.comment?.trim())
|
|
484
|
+
const messageID = Identifier.ascending("message")
|
|
485
|
+
|
|
486
|
+
const removeOptimisticMessage = () => {
|
|
487
|
+
sync.session.optimistic.remove({
|
|
488
|
+
directory: sessionDirectory,
|
|
489
|
+
sessionID: session.id,
|
|
490
|
+
messageID,
|
|
491
|
+
})
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
removeCommentItems(commentItems)
|
|
495
|
+
clearInput()
|
|
496
|
+
|
|
497
|
+
const waitForWorktree = async () => {
|
|
498
|
+
const worktree = WorktreeState.get(sessionDirectory)
|
|
499
|
+
if (!worktree || worktree.status !== "pending") return true
|
|
500
|
+
|
|
501
|
+
if (sessionDirectory === projectDirectory) {
|
|
502
|
+
sync.set("session_status", session.id, { type: "busy" })
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
const controller = new AbortController()
|
|
506
|
+
const cleanup = () => {
|
|
507
|
+
if (sessionDirectory === projectDirectory) {
|
|
508
|
+
sync.set("session_status", session.id, { type: "idle" })
|
|
509
|
+
}
|
|
510
|
+
removeOptimisticMessage()
|
|
511
|
+
restoreCommentItems(commentItems)
|
|
512
|
+
restoreInput()
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
pending.set(session.id, { abort: controller, cleanup })
|
|
516
|
+
|
|
517
|
+
const abortWait = new Promise<Awaited<ReturnType<typeof WorktreeState.wait>>>((resolve) => {
|
|
518
|
+
if (controller.signal.aborted) {
|
|
519
|
+
resolve({ status: "failed", message: "aborted" })
|
|
520
|
+
return
|
|
521
|
+
}
|
|
522
|
+
controller.signal.addEventListener(
|
|
523
|
+
"abort",
|
|
524
|
+
() => {
|
|
525
|
+
resolve({ status: "failed", message: "aborted" })
|
|
526
|
+
},
|
|
527
|
+
{ once: true },
|
|
528
|
+
)
|
|
529
|
+
})
|
|
530
|
+
|
|
531
|
+
const timeoutMs = 5 * 60 * 1000
|
|
532
|
+
const timer = { id: undefined as number | undefined }
|
|
533
|
+
const timeout = new Promise<Awaited<ReturnType<typeof WorktreeState.wait>>>((resolve) => {
|
|
534
|
+
timer.id = window.setTimeout(() => {
|
|
535
|
+
resolve({
|
|
536
|
+
status: "failed",
|
|
537
|
+
message: language.t("workspace.error.stillPreparing"),
|
|
538
|
+
})
|
|
539
|
+
}, timeoutMs)
|
|
540
|
+
})
|
|
541
|
+
|
|
542
|
+
const result = await Promise.race([WorktreeState.wait(sessionDirectory), abortWait, timeout]).finally(() => {
|
|
543
|
+
if (timer.id === undefined) return
|
|
544
|
+
clearTimeout(timer.id)
|
|
545
|
+
})
|
|
546
|
+
pending.delete(session.id)
|
|
547
|
+
if (controller.signal.aborted) return false
|
|
548
|
+
if (result.status === "failed") throw new Error(result.message)
|
|
549
|
+
return true
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
void sendFollowupDraft({
|
|
553
|
+
client,
|
|
554
|
+
sync,
|
|
555
|
+
globalSync,
|
|
556
|
+
draft,
|
|
557
|
+
messageID,
|
|
558
|
+
optimisticBusy: sessionDirectory === projectDirectory,
|
|
559
|
+
before: waitForWorktree,
|
|
560
|
+
}).catch((err) => {
|
|
561
|
+
pending.delete(session.id)
|
|
562
|
+
if (sessionDirectory === projectDirectory) {
|
|
563
|
+
sync.set("session_status", session.id, { type: "idle" })
|
|
564
|
+
}
|
|
565
|
+
showToast({
|
|
566
|
+
title: language.t("prompt.toast.promptSendFailed.title"),
|
|
567
|
+
description: errorMessage(err),
|
|
568
|
+
})
|
|
569
|
+
removeOptimisticMessage()
|
|
570
|
+
restoreCommentItems(commentItems)
|
|
571
|
+
restoreInput()
|
|
572
|
+
})
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
return {
|
|
576
|
+
abort,
|
|
577
|
+
handleSubmit,
|
|
578
|
+
}
|
|
579
|
+
}
|