Files
openchamber/packages/ui/src/components/sections/behavior/BehaviorPage.tsx
T
Bohdan Triapitsyn 2031e3b4a8 Decouple bundled UI from runtime API and add remote instance tooling (#1228)
Add a packaged-client runtime boundary so the shared UI can talk to local,
desktop, remote, and VS Code runtimes through the right transport instead of
assuming one same-origin web server.

Centralize OpenChamber-owned API access behind RuntimeAPIs, runtimeFetch, and
runtime URL helpers, while keeping official OpenCode traffic on the SDK path.
Support runtime switching, remote host selection, desktop client credentials,
and headless connection links for pairing packaged clients with remote
OpenChamber servers.

Harden the new auth model by moving long-lived client tokens out of browser
URLs, introducing short-lived scoped URL tokens for browser-owned transports,
restricting URL-token access to explicit readable/realtime routes, and making
client-token management session-scoped or self-scoped as appropriate.

Update browser-owned assets and preview proxy flows to work with the split
runtime model, including authenticated project icons, preview token propagation,
CSP-safe preview bridge injection, and preview proxy auth that survives
short-lived URL-token expiry.

Tighten Electron security boundaries for packaged clients by gating privileged
preload state to trusted origins and requiring explicit confirmation before
connect deep-links import or switch remote runtimes.

Also refresh agent guidance and project skills so future runtime/API, auth,
preview, UI, CLI, settings, locale, and drag-to-reorder work follows the new
architecture.
2026-06-02 00:43:05 +03:00

361 lines
13 KiB
TypeScript

import React from 'react';
import { Button } from '@/components/ui/button';
import { Textarea } from '@/components/ui/textarea';
import { ScrollableOverlay } from '@/components/ui/ScrollableOverlay';
import { toast } from '@/components/ui';
import { useI18n, type I18nKey } from '@/lib/i18n';
import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip';
import { Checkbox } from '@/components/ui/checkbox';
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from '@/components/ui/select';
import { Icon } from "@/components/icon/Icon";
import {
getResponseStylePresetInstructions,
isResponseStylePreset,
RESPONSE_STYLE_PRESETS,
type ResponseStylePreset,
} from '@/lib/responseStyle';
import type { DesktopSettings } from '@/lib/desktop';
import { runtimeFetch } from '@/lib/runtime-fetch';
const AGENTS_MD_PATH = '~/.config/opencode/AGENTS.md';
const readApiError = async (response: Response, fallback: string) => {
const data = await response.json().catch(() => null) as { error?: unknown } | null;
return typeof data?.error === 'string' && data.error.trim() ? data.error : fallback;
};
const normalizeAgentsMdContent = (content: string) => {
return content.length > 0 && !content.endsWith('\n') ? `${content}\n` : content;
};
type ResponseStyleValue = ResponseStylePreset | 'custom';
type BehaviorSettingsState = {
prompt: string;
responseStyleEnabled: boolean;
responseStylePreset: ResponseStyleValue;
responseStyleCustomInstructions: string;
};
const DEFAULT_BEHAVIOR_SETTINGS: BehaviorSettingsState = {
prompt: '',
responseStyleEnabled: false,
responseStylePreset: 'concise',
responseStyleCustomInstructions: '',
};
const getResponseStylePreview = (preset: ResponseStyleValue, customInstructions: string) => {
return preset === 'custom' ? customInstructions : getResponseStylePresetInstructions(preset);
};
const sanitizeResponseStylePreset = (value: unknown): ResponseStyleValue => {
if (value === 'custom') return 'custom';
return isResponseStylePreset(value) ? value : 'concise';
};
const RESPONSE_STYLE_OPTION_LABEL_KEYS: Record<ResponseStylePreset, I18nKey> = {
concise: 'settings.behavior.page.responseStyle.option.concise',
detailed: 'settings.behavior.page.responseStyle.option.detailed',
mentor: 'settings.behavior.page.responseStyle.option.mentor',
pushback: 'settings.behavior.page.responseStyle.option.pushback',
noFiller: 'settings.behavior.page.responseStyle.option.noFiller',
matchEnergy: 'settings.behavior.page.responseStyle.option.matchEnergy',
warmPeer: 'settings.behavior.page.responseStyle.option.warmPeer',
};
const saveBehaviorSetting = async (settings: Partial<DesktopSettings>, fallbackError: string) => {
const response = await runtimeFetch('/api/config/settings', {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
},
body: JSON.stringify(settings),
});
if (!response.ok) {
throw new Error(await readApiError(response, fallbackError));
}
};
export const BehaviorPage: React.FC = () => {
const { t } = useI18n();
const [prompt, setPrompt] = React.useState('');
const [responseStyleEnabled, setResponseStyleEnabled] = React.useState(DEFAULT_BEHAVIOR_SETTINGS.responseStyleEnabled);
const [responseStylePreset, setResponseStylePreset] = React.useState<ResponseStyleValue>(DEFAULT_BEHAVIOR_SETTINGS.responseStylePreset);
const [responseStyleCustomInstructions, setResponseStyleCustomInstructions] = React.useState(DEFAULT_BEHAVIOR_SETTINGS.responseStyleCustomInstructions);
const [isLoading, setIsLoading] = React.useState(true);
const [isSaving, setIsSaving] = React.useState(false);
const [initialPrompt, setInitialPrompt] = React.useState('');
const lastSavedResponseStyleRef = React.useRef<{
enabled: boolean;
preset: ResponseStyleValue;
custom: string;
} | null>(null);
React.useEffect(() => {
const abort = new AbortController();
const load = async () => {
try {
const [settingsRes, agentsMdRes] = await Promise.all([
runtimeFetch('/api/config/settings', {
method: 'GET',
headers: { Accept: 'application/json' },
signal: abort.signal,
}),
runtimeFetch('/api/behavior/agents-md', {
method: 'GET',
headers: { Accept: 'application/json' },
signal: abort.signal,
}),
]);
let nextSettings: BehaviorSettingsState = DEFAULT_BEHAVIOR_SETTINGS;
if (settingsRes.ok) {
const data = await settingsRes.json();
nextSettings = {
...nextSettings,
responseStyleEnabled: data.responseStyleEnabled === true,
responseStylePreset: sanitizeResponseStylePreset(data.responseStylePreset),
responseStyleCustomInstructions: typeof data.responseStyleCustomInstructions === 'string'
? data.responseStyleCustomInstructions
: '',
};
if (typeof data.globalBehaviorPrompt === 'string') {
nextSettings = { ...nextSettings, prompt: data.globalBehaviorPrompt };
}
}
if (!nextSettings.prompt.trim() && agentsMdRes.ok) {
const agentsData = await agentsMdRes.json();
if (typeof agentsData.content === 'string') {
nextSettings = { ...nextSettings, prompt: agentsData.content };
}
}
setPrompt(nextSettings.prompt);
setResponseStyleEnabled(nextSettings.responseStyleEnabled);
setResponseStylePreset(nextSettings.responseStylePreset);
setResponseStyleCustomInstructions(nextSettings.responseStyleCustomInstructions);
setInitialPrompt(nextSettings.prompt);
lastSavedResponseStyleRef.current = {
enabled: nextSettings.responseStyleEnabled,
preset: nextSettings.responseStylePreset,
custom: nextSettings.responseStyleCustomInstructions,
};
} catch (error) {
if ((error as Error).name !== 'AbortError') {
console.warn('Failed to load behavior settings:', error);
}
} finally {
setIsLoading(false);
}
};
void load();
return () => abort.abort();
}, []);
React.useEffect(() => {
if (isLoading) return;
const last = lastSavedResponseStyleRef.current;
if (
last &&
last.enabled === responseStyleEnabled &&
last.preset === responseStylePreset &&
last.custom === responseStyleCustomInstructions
) {
return;
}
const next = {
enabled: responseStyleEnabled,
preset: responseStylePreset,
custom: responseStyleCustomInstructions,
};
const timer = setTimeout(async () => {
try {
await saveBehaviorSetting({
responseStyleEnabled: next.enabled,
responseStylePreset: next.preset,
responseStyleCustomInstructions: next.custom,
}, t('settings.behavior.page.toast.saveFailed'));
lastSavedResponseStyleRef.current = next;
} catch (error) {
const message = error instanceof Error ? error.message : t('settings.behavior.page.toast.saveFailed');
toast.error(message);
}
}, 400);
return () => clearTimeout(timer);
}, [responseStyleEnabled, responseStylePreset, responseStyleCustomInstructions, isLoading, t]);
const responseStylePreview = getResponseStylePreview(responseStylePreset, responseStyleCustomInstructions);
const isPromptDirty = prompt !== initialPrompt;
const handleSave = async () => {
setIsSaving(true);
try {
const content = normalizeAgentsMdContent(prompt);
const response = await runtimeFetch('/api/behavior/agents-md', {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
},
body: JSON.stringify({ content }),
});
if (!response.ok) {
throw new Error(await readApiError(response, t('settings.behavior.page.toast.saveFailed')));
}
await saveBehaviorSetting({
globalBehaviorPrompt: content,
}, t('settings.behavior.page.toast.saveFailed'));
setPrompt(content);
setInitialPrompt(content);
toast.success(t('settings.behavior.page.toast.saved'));
} catch (error) {
console.error('Failed to save behavior:', error);
const message = error instanceof Error ? error.message : t('settings.behavior.page.toast.saveFailed');
toast.error(message);
} finally {
setIsSaving(false);
}
};
return (
<ScrollableOverlay outerClassName="h-full" className="w-full">
<div className="mx-auto w-full max-w-3xl p-3 sm:p-6 sm:pt-8 space-y-6">
<div className="space-y-1">
<h2 className="typography-ui-header font-semibold text-foreground">
{t('settings.behavior.page.title')}
</h2>
</div>
<div>
<div className="mb-1 px-1">
<div className="flex items-center gap-1.5">
<h3 className="typography-ui-header font-medium text-foreground">
{t('settings.behavior.page.section.systemPrompt')}
</h3>
<Tooltip>
<TooltipTrigger asChild>
<Icon name="information" className="h-3.5 w-3.5 text-muted-foreground/60 cursor-help" />
</TooltipTrigger>
<TooltipContent sideOffset={8} className="max-w-xs">
<div className="space-y-1">
<p className="font-medium text-foreground">
{t('settings.behavior.page.warning.title')}
</p>
<p>
{t('settings.behavior.page.warning.description', { path: AGENTS_MD_PATH })}
</p>
</div>
</TooltipContent>
</Tooltip>
</div>
</div>
<section className="px-2 pb-2 pt-0 space-y-3">
<Textarea
value={prompt}
onChange={(e) => setPrompt(e.target.value)}
placeholder={t('settings.behavior.page.field.systemPromptPlaceholder')}
rows={12}
disabled={isLoading}
outerClassName="min-h-[160px] max-h-[70vh]"
className="w-full font-mono typography-meta bg-transparent"
/>
<Button
onClick={handleSave}
disabled={isSaving || !isPromptDirty || isLoading}
size="xs"
className="!font-normal"
>
{isSaving ? t('settings.common.actions.saving') : t('settings.common.actions.saveChanges')}
</Button>
</section>
</div>
<div>
<div className="mb-1 px-1">
<div className="flex items-center gap-1.5">
<h3 className="typography-ui-header font-medium text-foreground">
{t('settings.behavior.page.section.responseStyle')}
</h3>
<Tooltip>
<TooltipTrigger asChild>
<Icon name="information" className="h-3.5 w-3.5 text-muted-foreground/60 cursor-help" />
</TooltipTrigger>
<TooltipContent sideOffset={8} className="max-w-xs">
{t('settings.behavior.page.responseStyle.tooltip')}
</TooltipContent>
</Tooltip>
</div>
</div>
<section className="px-2 pb-2 pt-0 space-y-3">
<label className="flex items-center gap-2 typography-ui-label text-foreground">
<Checkbox
checked={responseStyleEnabled}
onChange={setResponseStyleEnabled}
disabled={isLoading}
ariaLabel={t('settings.behavior.page.responseStyle.enableAria')}
/>
{t('settings.behavior.page.responseStyle.enable')}
</label>
<Select<ResponseStyleValue>
value={responseStylePreset}
onValueChange={(value) => setResponseStylePreset(value)}
disabled={isLoading || !responseStyleEnabled}
>
<SelectTrigger className="w-full sm:w-56" size="lg">
<SelectValue>
{(value) => {
if (value === 'custom') return t('settings.behavior.page.responseStyle.option.custom');
if (isResponseStylePreset(value)) return t(RESPONSE_STYLE_OPTION_LABEL_KEYS[value]);
return null;
}}
</SelectValue>
</SelectTrigger>
<SelectContent>
{RESPONSE_STYLE_PRESETS.map((preset) => (
<SelectItem key={preset} value={preset}>
{t(RESPONSE_STYLE_OPTION_LABEL_KEYS[preset])}
</SelectItem>
))}
<SelectItem value="custom">
{t('settings.behavior.page.responseStyle.option.custom')}
</SelectItem>
</SelectContent>
</Select>
<Textarea
value={responseStylePreview}
onChange={(event) => setResponseStyleCustomInstructions(event.target.value)}
placeholder={t('settings.behavior.page.responseStyle.customPlaceholder')}
rows={5}
disabled={isLoading || !responseStyleEnabled || responseStylePreset !== 'custom'}
outerClassName="min-h-[120px]"
className="w-full font-mono typography-meta bg-transparent"
/>
</section>
</div>
</div>
</ScrollableOverlay>
);
};