Converts hardcoded UI copy to i18n keys across the app, adds global translation for non-component modules, and splits the English catalog into feature modules with duplicate-key detection.
200 lines
7.9 KiB
TypeScript
200 lines
7.9 KiB
TypeScript
import { Component, createSignal, Show, For, createEffect } from "solid-js"
|
|
import { Dialog } from "@kobalte/core/dialog"
|
|
import type { Session, Agent } from "../types/session"
|
|
import { getParentSessions, createSession, setActiveParentSession } from "../stores/sessions"
|
|
import { instances, stopInstance } from "../stores/instances"
|
|
import { agents } from "../stores/sessions"
|
|
import { getLogger } from "../lib/logger"
|
|
import { useI18n } from "../lib/i18n"
|
|
const log = getLogger("session")
|
|
|
|
|
|
interface SessionPickerProps {
|
|
instanceId: string
|
|
open: boolean
|
|
onClose: () => void
|
|
}
|
|
|
|
const SessionPicker: Component<SessionPickerProps> = (props) => {
|
|
const { t } = useI18n()
|
|
const [selectedAgent, setSelectedAgent] = createSignal<string>("")
|
|
const [isCreating, setIsCreating] = createSignal(false)
|
|
|
|
const instance = () => instances().get(props.instanceId)
|
|
const parentSessions = () => getParentSessions(props.instanceId)
|
|
const agentList = () => agents().get(props.instanceId) || []
|
|
|
|
createEffect(() => {
|
|
const list = agentList()
|
|
if (list.length === 0) {
|
|
setSelectedAgent("")
|
|
return
|
|
}
|
|
const current = selectedAgent()
|
|
if (!current || !list.some((agent) => agent.name === current)) {
|
|
setSelectedAgent(list[0].name)
|
|
}
|
|
})
|
|
|
|
function formatRelativeTime(timestamp: number): string {
|
|
const seconds = Math.floor((Date.now() - timestamp) / 1000)
|
|
const minutes = Math.floor(seconds / 60)
|
|
const hours = Math.floor(minutes / 60)
|
|
const days = Math.floor(hours / 24)
|
|
|
|
if (days > 0) return t("time.relative.daysAgoShort", { count: days })
|
|
if (hours > 0) return t("time.relative.hoursAgoShort", { count: hours })
|
|
if (minutes > 0) return t("time.relative.minutesAgoShort", { count: minutes })
|
|
return t("time.relative.justNow")
|
|
}
|
|
|
|
async function handleSessionSelect(sessionId: string) {
|
|
setActiveParentSession(props.instanceId, sessionId)
|
|
props.onClose()
|
|
}
|
|
|
|
async function handleNewSession() {
|
|
setIsCreating(true)
|
|
try {
|
|
const session = await createSession(props.instanceId, selectedAgent())
|
|
setActiveParentSession(props.instanceId, session.id)
|
|
props.onClose()
|
|
} catch (error) {
|
|
log.error("Failed to create session:", error)
|
|
} finally {
|
|
setIsCreating(false)
|
|
}
|
|
}
|
|
|
|
async function handleCancel() {
|
|
await stopInstance(props.instanceId)
|
|
props.onClose()
|
|
}
|
|
|
|
return (
|
|
<Dialog open={props.open} onOpenChange={(open) => !open && handleCancel()}>
|
|
<Dialog.Portal>
|
|
<Dialog.Overlay class="modal-overlay" />
|
|
<div class="fixed inset-0 z-50 flex items-center justify-center p-4">
|
|
<Dialog.Content class="modal-surface w-full max-w-lg p-6">
|
|
<Dialog.Title class="text-xl font-semibold text-primary mb-4">
|
|
{t("sessionPicker.title", { folder: instance()?.folder.split("/").pop() })}
|
|
</Dialog.Title>
|
|
|
|
<div class="space-y-6">
|
|
<Show
|
|
when={parentSessions().length > 0}
|
|
fallback={<div class="text-center py-4 text-sm text-muted">{t("sessionPicker.empty.noPrevious")}</div>}
|
|
>
|
|
<div>
|
|
<h3 class="text-sm font-medium text-secondary mb-2">
|
|
{t("sessionPicker.resume.title", { count: parentSessions().length })}
|
|
</h3>
|
|
<div class="space-y-1 max-h-[400px] overflow-y-auto">
|
|
<For each={parentSessions()}>
|
|
{(session) => (
|
|
<button
|
|
type="button"
|
|
class="selector-option w-full text-left hover:bg-surface-hover focus:bg-surface-hover"
|
|
onClick={() => handleSessionSelect(session.id)}
|
|
>
|
|
<div class="selector-option-content w-full">
|
|
<span class="selector-option-label truncate">
|
|
{session.title || t("sessionPicker.session.untitled")}
|
|
</span>
|
|
</div>
|
|
<span class="selector-badge-time flex-shrink-0">
|
|
{formatRelativeTime(session.time.updated)}
|
|
</span>
|
|
</button>
|
|
)}
|
|
</For>
|
|
</div>
|
|
</div>
|
|
</Show>
|
|
|
|
<div class="relative">
|
|
<div class="absolute inset-0 flex items-center">
|
|
<div class="w-full border-t border-base" />
|
|
</div>
|
|
<div class="relative flex justify-center text-sm">
|
|
<span class="px-2 bg-surface-base text-muted">{t("sessionPicker.divider.or")}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<h3 class="text-sm font-medium text-secondary mb-2">{t("sessionPicker.new.title")}</h3>
|
|
<div class="space-y-3">
|
|
<Show
|
|
when={agentList().length > 0}
|
|
fallback={<div class="text-sm text-muted">{t("sessionPicker.agents.loading")}</div>}
|
|
>
|
|
<select
|
|
class="selector-input w-full"
|
|
value={selectedAgent()}
|
|
onChange={(e) => setSelectedAgent(e.currentTarget.value)}
|
|
>
|
|
<For each={agentList()}>{(agent) => <option value={agent.name}>{agent.name}</option>}</For>
|
|
</select>
|
|
</Show>
|
|
|
|
<button
|
|
class="button-primary w-full flex items-center justify-center text-sm disabled:cursor-not-allowed"
|
|
onClick={handleNewSession}
|
|
disabled={isCreating() || agentList().length === 0}
|
|
>
|
|
<div class="flex items-center gap-2">
|
|
<Show
|
|
when={!isCreating()}
|
|
fallback={
|
|
<svg class="animate-spin h-4 w-4" fill="none" viewBox="0 0 24 24">
|
|
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4" />
|
|
<path
|
|
class="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
/>
|
|
</svg>
|
|
}
|
|
>
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m8-8H4" />
|
|
</svg>
|
|
</Show>
|
|
<Show
|
|
when={!isCreating()}
|
|
fallback={<span>{t("sessionPicker.actions.creating")}</span>}
|
|
>
|
|
<span>
|
|
{agentList().length === 0
|
|
? t("sessionPicker.agents.loading")
|
|
: t("sessionPicker.actions.createSession")}
|
|
</span>
|
|
</Show>
|
|
</div>
|
|
<kbd class="kbd ml-2">
|
|
Cmd+Enter
|
|
</kbd>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-6 flex justify-end">
|
|
<button
|
|
type="button"
|
|
class="selector-button selector-button-secondary"
|
|
onClick={handleCancel}
|
|
>
|
|
{t("sessionPicker.actions.cancel")}
|
|
</button>
|
|
</div>
|
|
</Dialog.Content>
|
|
</div>
|
|
</Dialog.Portal>
|
|
</Dialog>
|
|
)
|
|
}
|
|
|
|
export default SessionPicker
|