fix(cli): restore componentized app.tsx after rebase, accept initialModel/initialProvider props
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
This commit is contained in:
@@ -1,16 +1,19 @@
|
||||
import React, { useState, useCallback, useEffect, useRef } from 'react';
|
||||
import { Box, Text, useInput, useApp } from 'ink';
|
||||
import TextInput from 'ink-text-input';
|
||||
import Spinner from 'ink-spinner';
|
||||
import { io, type Socket } from 'socket.io-client';
|
||||
import { fetchAvailableModels, type ModelInfo } from './gateway-api.js';
|
||||
import React, { useState, useCallback, useEffect, useMemo } from 'react';
|
||||
import { Box, useApp, useInput } from 'ink';
|
||||
import { TopBar } from './components/top-bar.js';
|
||||
import { BottomBar } from './components/bottom-bar.js';
|
||||
import { MessageList } from './components/message-list.js';
|
||||
import { InputBar } from './components/input-bar.js';
|
||||
import { Sidebar } from './components/sidebar.js';
|
||||
import { SearchBar } from './components/search-bar.js';
|
||||
import { useSocket } from './hooks/use-socket.js';
|
||||
import { useGitInfo } from './hooks/use-git-info.js';
|
||||
import { useViewport } from './hooks/use-viewport.js';
|
||||
import { useAppMode } from './hooks/use-app-mode.js';
|
||||
import { useConversations } from './hooks/use-conversations.js';
|
||||
import { useSearch } from './hooks/use-search.js';
|
||||
|
||||
interface Message {
|
||||
role: 'user' | 'assistant' | 'system';
|
||||
content: string;
|
||||
}
|
||||
|
||||
interface TuiAppProps {
|
||||
export interface TuiAppProps {
|
||||
gatewayUrl: string;
|
||||
conversationId?: string;
|
||||
sessionCookie?: string;
|
||||
@@ -18,375 +21,222 @@ interface TuiAppProps {
|
||||
initialProvider?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse a slash command from user input.
|
||||
* Returns null if the input is not a slash command.
|
||||
*/
|
||||
function parseSlashCommand(value: string): { command: string; args: string[] } | null {
|
||||
const trimmed = value.trim();
|
||||
if (!trimmed.startsWith('/')) return null;
|
||||
const parts = trimmed.slice(1).split(/\s+/);
|
||||
const command = parts[0]?.toLowerCase() ?? '';
|
||||
const args = parts.slice(1);
|
||||
return { command, args };
|
||||
}
|
||||
|
||||
export function TuiApp({
|
||||
gatewayUrl,
|
||||
conversationId: initialConversationId,
|
||||
conversationId,
|
||||
sessionCookie,
|
||||
initialModel,
|
||||
initialProvider,
|
||||
initialModel: _initialModel,
|
||||
initialProvider: _initialProvider,
|
||||
}: TuiAppProps) {
|
||||
const { exit } = useApp();
|
||||
const [messages, setMessages] = useState<Message[]>([]);
|
||||
const [input, setInput] = useState('');
|
||||
const [isStreaming, setIsStreaming] = useState(false);
|
||||
const [connected, setConnected] = useState(false);
|
||||
const [conversationId, setConversationId] = useState(initialConversationId);
|
||||
const [currentStreamText, setCurrentStreamText] = useState('');
|
||||
const gitInfo = useGitInfo();
|
||||
const appMode = useAppMode();
|
||||
|
||||
// Model/provider state
|
||||
const [currentModel, setCurrentModel] = useState<string | undefined>(initialModel);
|
||||
const [currentProvider, setCurrentProvider] = useState<string | undefined>(initialProvider);
|
||||
const [availableModels, setAvailableModels] = useState<ModelInfo[]>([]);
|
||||
const socket = useSocket({
|
||||
gatewayUrl,
|
||||
sessionCookie,
|
||||
initialConversationId: conversationId,
|
||||
});
|
||||
|
||||
const socketRef = useRef<Socket | null>(null);
|
||||
const currentStreamTextRef = useRef('');
|
||||
const conversations = useConversations({ gatewayUrl, sessionCookie });
|
||||
|
||||
// Fetch available models on mount
|
||||
const viewport = useViewport({ totalItems: socket.messages.length });
|
||||
|
||||
const search = useSearch(socket.messages);
|
||||
|
||||
// Scroll to current match when it changes
|
||||
const currentMatch = search.matches[search.currentMatchIndex];
|
||||
useEffect(() => {
|
||||
fetchAvailableModels(gatewayUrl, sessionCookie)
|
||||
.then((models) => {
|
||||
setAvailableModels(models);
|
||||
// If no model/provider specified and models are available, show the default
|
||||
if (!initialModel && !initialProvider && models.length > 0) {
|
||||
const first = models[0];
|
||||
if (first) {
|
||||
setCurrentModel(first.id);
|
||||
setCurrentProvider(first.provider);
|
||||
}
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
// Non-fatal: TUI works without model list
|
||||
});
|
||||
}, [gatewayUrl, sessionCookie, initialModel, initialProvider]);
|
||||
if (currentMatch && appMode.mode === 'search') {
|
||||
viewport.scrollTo(currentMatch.messageIndex);
|
||||
}
|
||||
}, [currentMatch, appMode.mode, viewport]);
|
||||
|
||||
useEffect(() => {
|
||||
const socket = io(`${gatewayUrl}/chat`, {
|
||||
transports: ['websocket'],
|
||||
extraHeaders: sessionCookie ? { Cookie: sessionCookie } : undefined,
|
||||
});
|
||||
// Compute highlighted message indices for MessageList
|
||||
const highlightedMessageIndices = useMemo(() => {
|
||||
if (search.matches.length === 0) return undefined;
|
||||
return new Set(search.matches.map((m) => m.messageIndex));
|
||||
}, [search.matches]);
|
||||
|
||||
socketRef.current = socket;
|
||||
const currentHighlightIndex = currentMatch?.messageIndex;
|
||||
|
||||
socket.on('connect', () => setConnected(true));
|
||||
socket.on('disconnect', () => {
|
||||
setConnected(false);
|
||||
setIsStreaming(false);
|
||||
setCurrentStreamText('');
|
||||
});
|
||||
socket.on('connect_error', (err: Error) => {
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'assistant',
|
||||
content: `Connection failed: ${err.message}. Check that the gateway is running at ${gatewayUrl}.`,
|
||||
},
|
||||
]);
|
||||
});
|
||||
const [sidebarSelectedIndex, setSidebarSelectedIndex] = useState(0);
|
||||
|
||||
socket.on('message:ack', (data: { conversationId: string }) => {
|
||||
setConversationId(data.conversationId);
|
||||
});
|
||||
|
||||
socket.on('agent:start', () => {
|
||||
setIsStreaming(true);
|
||||
currentStreamTextRef.current = '';
|
||||
setCurrentStreamText('');
|
||||
});
|
||||
|
||||
socket.on('agent:text', (data: { text: string }) => {
|
||||
currentStreamTextRef.current += data.text;
|
||||
setCurrentStreamText(currentStreamTextRef.current);
|
||||
});
|
||||
|
||||
socket.on('agent:end', () => {
|
||||
const finalText = currentStreamTextRef.current;
|
||||
currentStreamTextRef.current = '';
|
||||
setCurrentStreamText('');
|
||||
if (finalText) {
|
||||
setMessages((msgs) => [...msgs, { role: 'assistant', content: finalText }]);
|
||||
}
|
||||
setIsStreaming(false);
|
||||
});
|
||||
|
||||
socket.on('error', (data: { error: string }) => {
|
||||
setMessages((msgs) => [...msgs, { role: 'assistant', content: `Error: ${data.error}` }]);
|
||||
setIsStreaming(false);
|
||||
});
|
||||
|
||||
return () => {
|
||||
socket.disconnect();
|
||||
};
|
||||
}, [gatewayUrl]);
|
||||
|
||||
/**
|
||||
* Handle /model and /provider slash commands.
|
||||
* Returns true if the input was a handled slash command (should not be sent to gateway).
|
||||
*/
|
||||
const handleSlashCommand = useCallback(
|
||||
(value: string): boolean => {
|
||||
const parsed = parseSlashCommand(value);
|
||||
if (!parsed) return false;
|
||||
|
||||
const { command, args } = parsed;
|
||||
|
||||
if (command === 'model') {
|
||||
if (args.length === 0) {
|
||||
// List available models
|
||||
if (availableModels.length === 0) {
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content:
|
||||
'No models available (could not reach gateway). Use /model <modelId> to set one manually.',
|
||||
},
|
||||
]);
|
||||
} else {
|
||||
const lines = availableModels.map(
|
||||
(m) =>
|
||||
` ${m.provider}/${m.id}${m.id === currentModel && m.provider === currentProvider ? ' (active)' : ''}`,
|
||||
);
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content: `Available models:\n${lines.join('\n')}`,
|
||||
},
|
||||
]);
|
||||
}
|
||||
} else {
|
||||
// Switch model: /model <modelId> or /model <provider>/<modelId>
|
||||
const arg = args[0]!;
|
||||
const slashIdx = arg.indexOf('/');
|
||||
let newProvider: string | undefined;
|
||||
let newModelId: string;
|
||||
|
||||
if (slashIdx !== -1) {
|
||||
newProvider = arg.slice(0, slashIdx);
|
||||
newModelId = arg.slice(slashIdx + 1);
|
||||
} else {
|
||||
newModelId = arg;
|
||||
// Try to find provider from available models list
|
||||
const match = availableModels.find((m) => m.id === newModelId);
|
||||
newProvider = match?.provider ?? currentProvider;
|
||||
}
|
||||
|
||||
setCurrentModel(newModelId);
|
||||
if (newProvider) setCurrentProvider(newProvider);
|
||||
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content: `Switched to model: ${newProvider ? `${newProvider}/` : ''}${newModelId}. Takes effect on next message.`,
|
||||
},
|
||||
]);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
if (command === 'provider') {
|
||||
if (args.length === 0) {
|
||||
// List providers from available models
|
||||
const providers = [...new Set(availableModels.map((m) => m.provider))];
|
||||
if (providers.length === 0) {
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content:
|
||||
'No providers available (could not reach gateway). Use /provider <name> to set one manually.',
|
||||
},
|
||||
]);
|
||||
} else {
|
||||
const lines = providers.map((p) => ` ${p}${p === currentProvider ? ' (active)' : ''}`);
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content: `Available providers:\n${lines.join('\n')}`,
|
||||
},
|
||||
]);
|
||||
}
|
||||
} else {
|
||||
const newProvider = args[0]!;
|
||||
setCurrentProvider(newProvider);
|
||||
// If switching provider, auto-select first model for that provider
|
||||
const providerModels = availableModels.filter((m) => m.provider === newProvider);
|
||||
if (providerModels.length > 0 && providerModels[0]) {
|
||||
setCurrentModel(providerModels[0].id);
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content: `Switched to provider: ${newProvider} (model: ${providerModels[0]!.id}). Takes effect on next message.`,
|
||||
},
|
||||
]);
|
||||
} else {
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content: `Switched to provider: ${newProvider}. Takes effect on next message.`,
|
||||
},
|
||||
]);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
if (command === 'help') {
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content: [
|
||||
'Available commands:',
|
||||
' /model — list available models',
|
||||
' /model <id> — switch model (e.g. /model gpt-4o)',
|
||||
' /model <p>/<id> — switch model with provider (e.g. /model ollama/llama3.2)',
|
||||
' /provider — list available providers',
|
||||
' /provider <name> — switch provider (e.g. /provider ollama)',
|
||||
' /help — show this help',
|
||||
].join('\n'),
|
||||
},
|
||||
]);
|
||||
return true;
|
||||
}
|
||||
|
||||
// Unknown slash command — let the user know
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{
|
||||
role: 'system',
|
||||
content: `Unknown command: /${command}. Type /help for available commands.`,
|
||||
},
|
||||
]);
|
||||
return true;
|
||||
const handleSwitchConversation = useCallback(
|
||||
(id: string) => {
|
||||
socket.switchConversation(id);
|
||||
appMode.setMode('chat');
|
||||
},
|
||||
[availableModels, currentModel, currentProvider],
|
||||
[socket, appMode],
|
||||
);
|
||||
|
||||
const handleSubmit = useCallback(
|
||||
(value: string) => {
|
||||
if (!value.trim() || isStreaming) return;
|
||||
|
||||
setInput('');
|
||||
|
||||
// Handle slash commands first
|
||||
if (handleSlashCommand(value)) return;
|
||||
|
||||
if (!socketRef.current?.connected) {
|
||||
setMessages((msgs) => [
|
||||
...msgs,
|
||||
{ role: 'assistant', content: 'Not connected to gateway. Message not sent.' },
|
||||
]);
|
||||
return;
|
||||
}
|
||||
|
||||
setMessages((msgs) => [...msgs, { role: 'user', content: value }]);
|
||||
|
||||
socketRef.current.emit('message', {
|
||||
conversationId,
|
||||
content: value,
|
||||
provider: currentProvider,
|
||||
modelId: currentModel,
|
||||
const handleDeleteConversation = useCallback(
|
||||
(id: string) => {
|
||||
void conversations.deleteConversation(id).then((ok) => {
|
||||
if (ok && id === socket.conversationId) {
|
||||
socket.clearMessages();
|
||||
}
|
||||
});
|
||||
},
|
||||
[conversationId, isStreaming, currentModel, currentProvider, handleSlashCommand],
|
||||
[conversations, socket],
|
||||
);
|
||||
|
||||
useInput((ch, key) => {
|
||||
if (key.ctrl && ch === 'c') {
|
||||
exit();
|
||||
}
|
||||
// Ctrl+L: toggle sidebar (refresh on open)
|
||||
if (key.ctrl && ch === 'l') {
|
||||
const willOpen = !appMode.sidebarOpen;
|
||||
appMode.toggleSidebar();
|
||||
if (willOpen) {
|
||||
void conversations.refresh();
|
||||
}
|
||||
}
|
||||
// Ctrl+N: create new conversation and switch to it
|
||||
if (key.ctrl && ch === 'n') {
|
||||
void conversations.createConversation().then((conv) => {
|
||||
if (conv) {
|
||||
socket.switchConversation(conv.id);
|
||||
appMode.setMode('chat');
|
||||
}
|
||||
});
|
||||
}
|
||||
// Ctrl+K: toggle search mode
|
||||
if (key.ctrl && ch === 'k') {
|
||||
if (appMode.mode === 'search') {
|
||||
search.clear();
|
||||
appMode.setMode('chat');
|
||||
} else {
|
||||
appMode.setMode('search');
|
||||
}
|
||||
}
|
||||
// Page Up / Page Down: scroll message history (only in chat mode)
|
||||
if (appMode.mode === 'chat') {
|
||||
if (key.pageUp) {
|
||||
viewport.scrollBy(-viewport.viewportSize);
|
||||
}
|
||||
if (key.pageDown) {
|
||||
viewport.scrollBy(viewport.viewportSize);
|
||||
}
|
||||
}
|
||||
// Ctrl+T: cycle thinking level
|
||||
if (key.ctrl && ch === 't') {
|
||||
const levels = socket.availableThinkingLevels;
|
||||
if (levels.length > 0) {
|
||||
const currentIdx = levels.indexOf(socket.thinkingLevel);
|
||||
const nextIdx = (currentIdx + 1) % levels.length;
|
||||
const next = levels[nextIdx];
|
||||
if (next) {
|
||||
socket.setThinkingLevel(next);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Escape: return to chat from sidebar/search; in chat, scroll to bottom
|
||||
if (key.escape) {
|
||||
if (appMode.mode === 'search') {
|
||||
search.clear();
|
||||
appMode.setMode('chat');
|
||||
} else if (appMode.mode === 'sidebar') {
|
||||
appMode.setMode('chat');
|
||||
} else if (appMode.mode === 'chat') {
|
||||
viewport.scrollToBottom();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
const modelLabel = currentModel
|
||||
? currentProvider
|
||||
? `${currentProvider}/${currentModel}`
|
||||
: currentModel
|
||||
: null;
|
||||
const inputPlaceholder =
|
||||
appMode.mode === 'sidebar'
|
||||
? 'focus is on sidebar… press Esc to return'
|
||||
: appMode.mode === 'search'
|
||||
? 'search mode… press Esc to return'
|
||||
: undefined;
|
||||
|
||||
const isSearchMode = appMode.mode === 'search';
|
||||
|
||||
const messageArea = (
|
||||
<Box flexDirection="column" flexGrow={1}>
|
||||
<MessageList
|
||||
messages={socket.messages}
|
||||
isStreaming={socket.isStreaming}
|
||||
currentStreamText={socket.currentStreamText}
|
||||
currentThinkingText={socket.currentThinkingText}
|
||||
activeToolCalls={socket.activeToolCalls}
|
||||
scrollOffset={viewport.scrollOffset}
|
||||
viewportSize={viewport.viewportSize}
|
||||
isScrolledUp={viewport.isScrolledUp}
|
||||
highlightedMessageIndices={highlightedMessageIndices}
|
||||
currentHighlightIndex={currentHighlightIndex}
|
||||
/>
|
||||
|
||||
{isSearchMode && (
|
||||
<SearchBar
|
||||
query={search.query}
|
||||
onQueryChange={search.setQuery}
|
||||
totalMatches={search.totalMatches}
|
||||
currentMatch={search.currentMatchIndex}
|
||||
onNext={search.nextMatch}
|
||||
onPrev={search.prevMatch}
|
||||
onClose={() => {
|
||||
search.clear();
|
||||
appMode.setMode('chat');
|
||||
}}
|
||||
focused={isSearchMode}
|
||||
/>
|
||||
)}
|
||||
|
||||
<InputBar
|
||||
onSubmit={socket.sendMessage}
|
||||
isStreaming={socket.isStreaming}
|
||||
connected={socket.connected}
|
||||
placeholder={inputPlaceholder}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
|
||||
return (
|
||||
<Box flexDirection="column" padding={1}>
|
||||
<Box marginBottom={1}>
|
||||
<Text bold color="blue">
|
||||
Mosaic
|
||||
</Text>
|
||||
<Text> </Text>
|
||||
<Text dimColor>{connected ? `connected` : 'connecting...'}</Text>
|
||||
{conversationId && <Text dimColor> | {conversationId.slice(0, 8)}</Text>}
|
||||
{modelLabel && (
|
||||
<>
|
||||
<Text dimColor> | </Text>
|
||||
<Text color="yellow">{modelLabel}</Text>
|
||||
</>
|
||||
)}
|
||||
</Box>
|
||||
<Box flexDirection="column" height="100%">
|
||||
<Box marginTop={1} />
|
||||
<TopBar
|
||||
gatewayUrl={gatewayUrl}
|
||||
version="0.0.0"
|
||||
modelName={socket.modelName}
|
||||
thinkingLevel={socket.thinkingLevel}
|
||||
contextWindow={socket.tokenUsage.contextWindow}
|
||||
agentName="default"
|
||||
connected={socket.connected}
|
||||
connecting={socket.connecting}
|
||||
/>
|
||||
|
||||
<Box flexDirection="column" marginBottom={1}>
|
||||
{messages.map((msg, i) => (
|
||||
<Box key={i} marginBottom={1}>
|
||||
{msg.role === 'system' ? (
|
||||
<Text dimColor italic>
|
||||
{msg.content}
|
||||
</Text>
|
||||
) : (
|
||||
<>
|
||||
<Text bold color={msg.role === 'user' ? 'green' : 'cyan'}>
|
||||
{msg.role === 'user' ? '> ' : ' '}
|
||||
</Text>
|
||||
<Text wrap="wrap">{msg.content}</Text>
|
||||
</>
|
||||
)}
|
||||
</Box>
|
||||
))}
|
||||
{appMode.sidebarOpen ? (
|
||||
<Box flexDirection="row" flexGrow={1}>
|
||||
<Sidebar
|
||||
conversations={conversations.conversations}
|
||||
activeConversationId={socket.conversationId}
|
||||
selectedIndex={sidebarSelectedIndex}
|
||||
onSelectIndex={setSidebarSelectedIndex}
|
||||
onSwitchConversation={handleSwitchConversation}
|
||||
onDeleteConversation={handleDeleteConversation}
|
||||
loading={conversations.loading}
|
||||
focused={appMode.mode === 'sidebar'}
|
||||
width={30}
|
||||
/>
|
||||
{messageArea}
|
||||
</Box>
|
||||
) : (
|
||||
<Box flexGrow={1}>{messageArea}</Box>
|
||||
)}
|
||||
|
||||
{isStreaming && currentStreamText && (
|
||||
<Box marginBottom={1}>
|
||||
<Text bold color="cyan">
|
||||
{' '}
|
||||
</Text>
|
||||
<Text wrap="wrap">{currentStreamText}</Text>
|
||||
</Box>
|
||||
)}
|
||||
|
||||
{isStreaming && !currentStreamText && (
|
||||
<Box>
|
||||
<Text color="cyan">
|
||||
<Spinner type="dots" />
|
||||
</Text>
|
||||
<Text dimColor> thinking...</Text>
|
||||
</Box>
|
||||
)}
|
||||
</Box>
|
||||
|
||||
<Box>
|
||||
<Text bold color="green">
|
||||
{'> '}
|
||||
</Text>
|
||||
<TextInput
|
||||
value={input}
|
||||
onChange={setInput}
|
||||
onSubmit={handleSubmit}
|
||||
placeholder={isStreaming ? 'waiting...' : 'type a message or /help'}
|
||||
/>
|
||||
</Box>
|
||||
<BottomBar
|
||||
gitInfo={gitInfo}
|
||||
tokenUsage={socket.tokenUsage}
|
||||
connected={socket.connected}
|
||||
connecting={socket.connecting}
|
||||
modelName={socket.modelName}
|
||||
providerName={socket.providerName}
|
||||
thinkingLevel={socket.thinkingLevel}
|
||||
conversationId={socket.conversationId}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user