Files
cameleer-server/ui/src/hooks/useScope.ts
hsiegeln 0a0733def7
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m18s
CI / docker (push) Successful in 1m5s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 42s
refactor: consolidate tabs — remove standalone Logs and Config tabs
Logs functionality already exists in Runtime tab (AgentHealth/AgentInstance).
Config functionality moved to Deployments tab ConfigSubTab.
Old routes redirect to /runtime and /apps respectively.
Navigation links updated throughout.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 18:02:29 +02:00

41 lines
1.2 KiB
TypeScript

// ui/src/hooks/useScope.ts
import { useParams, useNavigate, useLocation } from 'react-router';
import { useCallback } from 'react';
export type TabKey = 'exchanges' | 'dashboard' | 'runtime' | 'apps';
const VALID_TABS = new Set<TabKey>(['exchanges', 'dashboard', 'runtime', 'apps']);
export interface Scope {
tab: TabKey;
appId?: string;
routeId?: string;
exchangeId?: string;
}
export function useScope() {
const params = useParams<{ tab?: string; appId?: string; routeId?: string; exchangeId?: string }>();
const navigate = useNavigate();
const location = useLocation();
// Derive tab from first URL segment — fallback to 'exchanges'
const rawTab = location.pathname.split('/').filter(Boolean)[0] ?? 'exchanges';
const tab: TabKey = VALID_TABS.has(rawTab as TabKey) ? (rawTab as TabKey) : 'exchanges';
const scope: Scope = {
tab,
appId: params.appId,
routeId: params.routeId,
exchangeId: params.exchangeId,
};
const setTab = useCallback((newTab: TabKey) => {
const parts = ['', newTab];
if (scope.appId) parts.push(scope.appId);
if (scope.routeId) parts.push(scope.routeId);
navigate(parts.join('/'));
}, [navigate, scope.appId, scope.routeId]);
return { scope, setTab };
}