- Add Cron and Profiles sidebar routes with full CRUD-style flows and API wiring. - Extend Command Center with auxiliary task overrides and a Usage panel (7d/30d/90d). - Fix titlebar geometry for WSL/Windows (native overlay width, tool spacing). - Remove stray merge conflict markers from pyproject.toml optional deps. Co-authored-by: Cursor <cursoragent@cursor.com>
80 lines
2.3 KiB
TypeScript
80 lines
2.3 KiB
TypeScript
export const SESSION_ROUTE_PREFIX = '/'
|
|
export const NEW_CHAT_ROUTE = '/'
|
|
export const SETTINGS_ROUTE = '/settings'
|
|
export const COMMAND_CENTER_ROUTE = '/command-center'
|
|
export const SKILLS_ROUTE = '/skills'
|
|
export const MESSAGING_ROUTE = '/messaging'
|
|
export const ARTIFACTS_ROUTE = '/artifacts'
|
|
export const CRON_ROUTE = '/cron'
|
|
export const PROFILES_ROUTE = '/profiles'
|
|
export const AGENTS_ROUTE = '/agents'
|
|
|
|
export type AppView =
|
|
| 'agents'
|
|
| 'artifacts'
|
|
| 'chat'
|
|
| 'command-center'
|
|
| 'cron'
|
|
| 'messaging'
|
|
| 'profiles'
|
|
| 'settings'
|
|
| 'skills'
|
|
|
|
export type AppRouteId =
|
|
| 'agents'
|
|
| 'artifacts'
|
|
| 'command-center'
|
|
| 'cron'
|
|
| 'messaging'
|
|
| 'new'
|
|
| 'profiles'
|
|
| 'settings'
|
|
| 'skills'
|
|
|
|
export interface AppRoute {
|
|
id: AppRouteId
|
|
path: string
|
|
view: AppView
|
|
}
|
|
|
|
export const APP_ROUTES = [
|
|
{ id: 'new', path: NEW_CHAT_ROUTE, view: 'chat' },
|
|
{ id: 'settings', path: SETTINGS_ROUTE, view: 'settings' },
|
|
{ id: 'command-center', path: COMMAND_CENTER_ROUTE, view: 'command-center' },
|
|
{ id: 'skills', path: SKILLS_ROUTE, view: 'skills' },
|
|
{ id: 'messaging', path: MESSAGING_ROUTE, view: 'messaging' },
|
|
{ id: 'artifacts', path: ARTIFACTS_ROUTE, view: 'artifacts' },
|
|
{ id: 'cron', path: CRON_ROUTE, view: 'cron' },
|
|
{ id: 'profiles', path: PROFILES_ROUTE, view: 'profiles' },
|
|
{ id: 'agents', path: AGENTS_ROUTE, view: 'agents' }
|
|
] as const satisfies readonly AppRoute[]
|
|
|
|
const APP_VIEW_BY_PATH = new Map<string, AppView>(APP_ROUTES.map(route => [route.path, route.view]))
|
|
const RESERVED_PATHS: ReadonlySet<string> = new Set(APP_ROUTES.map(route => route.path))
|
|
|
|
export function isNewChatRoute(pathname: string): boolean {
|
|
return pathname === NEW_CHAT_ROUTE
|
|
}
|
|
|
|
export function routeSessionId(pathname: string): string | null {
|
|
if (!pathname.startsWith(SESSION_ROUTE_PREFIX) || RESERVED_PATHS.has(pathname)) {
|
|
return null
|
|
}
|
|
|
|
const id = pathname.slice(SESSION_ROUTE_PREFIX.length)
|
|
|
|
return id && !id.includes('/') ? decodeURIComponent(id) : null
|
|
}
|
|
|
|
export function sessionRoute(sessionId: string): string {
|
|
return `${SESSION_ROUTE_PREFIX}${encodeURIComponent(sessionId)}`
|
|
}
|
|
|
|
export function appViewForPath(pathname: string): AppView {
|
|
if (isNewChatRoute(pathname) || routeSessionId(pathname)) {
|
|
return 'chat'
|
|
}
|
|
|
|
return APP_VIEW_BY_PATH.get(pathname) ?? 'chat'
|
|
}
|