feat(ui): Add React based UI for the vibes at /app

This adds a completely separate frontend based on React because I
found that code gen works better with React once the application gets
bigger. In particular it was getting very hard to move past add
connectors and actions.

The idea is to replace the standard UI with this once it has been
tested. But for now it is available at /app in addition to the
original at /

Signed-off-by: Richard Palethorpe <io@richiejp.com>
This commit is contained in:
Richard Palethorpe
2025-03-24 14:36:18 +00:00
parent 438a65caf6
commit 71e66c651c
61 changed files with 6452 additions and 2 deletions

63
webui/react-ui/src/hooks/useSSE.js vendored Normal file
View File

@@ -0,0 +1,63 @@
import { useState, useEffect } from 'react';
import { API_CONFIG } from '../utils/config';
/**
* Helper function to build a full URL
* @param {string} endpoint - API endpoint
* @returns {string} - Full URL
*/
const buildUrl = (endpoint) => {
return `${API_CONFIG.baseUrl}${endpoint.startsWith('/') ? endpoint.substring(1) : endpoint}`;
};
/**
* Custom hook for handling Server-Sent Events (SSE)
* @param {string} agentName - Name of the agent to connect to
* @returns {Object} - SSE data and connection status
*/
export function useSSE(agentName) {
const [data, setData] = useState([]);
const [isConnected, setIsConnected] = useState(false);
const [error, setError] = useState(null);
useEffect(() => {
if (!agentName) return;
// Create EventSource for SSE connection
const eventSource = new EventSource(buildUrl(API_CONFIG.endpoints.sse(agentName)));
// Connection opened
eventSource.onopen = () => {
setIsConnected(true);
setError(null);
};
// Handle incoming messages
eventSource.onmessage = (event) => {
try {
const parsedData = JSON.parse(event.data);
setData((prevData) => [...prevData, parsedData]);
} catch (err) {
console.error('Error parsing SSE data:', err);
}
};
// Handle errors
eventSource.onerror = (err) => {
setIsConnected(false);
setError('SSE connection error');
console.error('SSE connection error:', err);
};
// Clean up on unmount
return () => {
eventSource.close();
setIsConnected(false);
};
}, [agentName]);
// Function to clear the data
const clearData = () => setData([]);
return { data, isConnected, error, clearData };
}