feat: Multi-session support with tabs, split view, and Mochi integration

- Add SessionContext for central state management
- Add TabBar component for session tabs
- Add SplitLayout for side-by-side session viewing
- Add ChatPanel wrapper component
- Refactor ChatInput to uncontrolled input for performance
- Add SCP file transfer for SSH hosts (Mochi)
- Fix stats undefined crash on session restore
- Store host info in sessions for upload routing

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-17 14:16:52 +01:00
parent 960f2e137d
commit cfee1711dc
9 changed files with 2122 additions and 467 deletions

View File

@@ -72,7 +72,7 @@ function SystemHints({ reminders, inline = false }) {
);
}
export function MessageList({ messages, isProcessing }) {
export const MessageList = memo(function MessageList({ messages, isProcessing }) {
const containerRef = useRef(null);
const messagesEndRef = useRef(null);
const [showScrollButton, setShowScrollButton] = useState(false);
@@ -215,7 +215,7 @@ export function MessageList({ messages, isProcessing }) {
)}
</div>
);
}
});
const Message = memo(function Message({ message }) {
const { type, content, tool, input, timestamp, toolUseId, attachments } = message;