refactor(ui): Make message status SSE name more specific

Signed-off-by: Richard Palethorpe <io@richiejp.com>
This commit is contained in:
Richard Palethorpe
2025-04-15 05:11:31 +01:00
parent 70e749b53a
commit 30cf87affe
2 changed files with 4 additions and 4 deletions

View File

@@ -370,7 +370,7 @@ func (a *App) Chat(pool *state.AgentPool) func(c *fiber.Ctx) error {
xlog.Error("Error marshaling status message", "error", err)
} else {
manager.Send(
sse.NewMessage(string(statusData)).WithEvent("json_status"))
sse.NewMessage(string(statusData)).WithEvent("json_message_status"))
}
// Process the message asynchronously
@@ -417,7 +417,7 @@ func (a *App) Chat(pool *state.AgentPool) func(c *fiber.Ctx) error {
xlog.Error("Error marshaling completed status", "error", err)
} else {
manager.Send(
sse.NewMessage(string(completedData)).WithEvent("json_status"))
sse.NewMessage(string(completedData)).WithEvent("json_message_status"))
}
}()

View File

@@ -63,8 +63,8 @@ export function useSSE(agentName) {
}
});
// Handle 'json_status' event
eventSource.addEventListener('json_status', (event) => {
// Handle 'json_message_status' event
eventSource.addEventListener('json_message_status', (event) => {
try {
const data = JSON.parse(event.data);
const timestamp = data.timestamp || new Date().toISOString();