mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
18 lines
434 B
TypeScript
18 lines
434 B
TypeScript
'use client';
|
|
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;
|