umami/src/components/hooks/useTeamContext.ts

18 lines
420 B
TypeScript
Raw Normal View History

2024-02-03 01:49:17 +00:00
import { usePathname } from 'next/navigation';
export function useTeamContext(): {
teamId?: string;
renderTeamUrl: (url: string) => string;
} {
const pathname = usePathname();
const [, teamId] = pathname.match(/^\/teams\/([a-f0-9-]+)/) || [];
function renderTeamUrl(url: string) {
return teamId ? `/teams/${teamId}${url}` : url;
}
return { teamId, renderTeamUrl };
}
export default useTeamContext;