refactor: create session on + click, remove session input

This commit is contained in:
Nathan Flurry 2026-01-25 04:16:56 -08:00
parent bc943af447
commit b489e9d30d
2 changed files with 27 additions and 49 deletions

View file

@ -539,41 +539,10 @@
color: var(--muted);
}
.session-input {
.session-id-display {
font-family: ui-monospace, SFMono-Regular, 'SF Mono', Consolas, monospace;
font-size: 12px;
color: var(--text);
background: var(--surface);
border: 1px solid var(--border-2);
padding: 4px 10px;
border-radius: 4px;
outline: none;
width: 140px;
transition: border-color var(--transition);
}
.session-input:focus {
border-color: var(--accent);
}
.session-input::placeholder {
color: var(--muted-2);
}
.session-new-btn {
background: var(--accent);
border: none;
border-radius: 4px;
padding: 4px 10px;
font-size: 11px;
font-weight: 600;
color: #fff;
cursor: pointer;
transition: background var(--transition);
}
.session-new-btn:hover {
background: var(--accent-hover);
color: var(--text-secondary);
}
.messages-container {

View file

@ -424,13 +424,34 @@ export default function App() {
setSessionError(null);
};
const generateSessionId = () => {
const createNewSession = async () => {
const chars = "abcdefghijklmnopqrstuvwxyz0123456789";
let id = "session-";
for (let i = 0; i < 8; i++) {
id += chars[Math.floor(Math.random() * chars.length)];
}
setSessionId(id);
setEvents([]);
setOffset(0);
offsetRef.current = 0;
setSessionError(null);
// Create the session
try {
const body: Record<string, string> = { agent: agentId };
if (agentMode) body.agentMode = agentMode;
if (permissionMode) body.permissionMode = permissionMode;
if (model) body.model = model;
if (variant) body.variant = variant;
await apiFetch(`${API_PREFIX}/sessions/${id}`, {
method: "POST",
body
});
await fetchSessions();
} catch (error) {
setSessionError(error instanceof Error ? error.message : "Unable to create session");
}
};
const appendEvents = useCallback((incoming: UniversalEvent[]) => {
@ -774,8 +795,8 @@ export default function App() {
<span className="sidebar-title">Sessions</span>
<button
className="sidebar-add-btn"
onClick={generateSessionId}
title="New session ID"
onClick={createNewSession}
title="New session"
>
<Plus size={14} />
</button>
@ -818,19 +839,7 @@ export default function App() {
<div className="panel-header-left">
<MessageSquare className="button-icon" />
<span className="panel-title">Session</span>
<input
className="session-input"
value={sessionId}
onChange={(e) => setSessionId(e.target.value)}
placeholder="session-id"
/>
<button
className="session-new-btn"
onClick={createSession}
title="Create new session"
>
New
</button>
<span className="session-id-display">{sessionId}</span>
</div>
{polling && (
<span className="pill accent">Live</span>