import { lazy } from "react";
import type { Path } from "react-router-dom";
import { generatePath } from "react-router-dom";
import type { RouteDef } from "../../route-config";
export type DedicatedScopeTab = "mappers" | "scope";
export type DedicatedScopeDetailsParams = {
realm: string;
clientId: string;
tab?: DedicatedScopeTab;
};
const DedicatedScopes = lazy(() => import("../scopes/DedicatedScopes"));
export const DedicatedScopeDetailsRoute: RouteDef = {
path: "/:realm/clients/:clientId/clientScopes/dedicated",
element: ,
breadcrumb: (t) => t("clients:dedicatedScopes"),
handle: {
access: "view-clients",
},
};
export const DedicatedScopeDetailsWithTabRoute: RouteDef = {
...DedicatedScopeDetailsRoute,
path: "/:realm/clients/:clientId/clientScopes/dedicated/:tab",
};
export const toDedicatedScope = (
params: DedicatedScopeDetailsParams
): Partial => {
const path = params.tab
? DedicatedScopeDetailsWithTabRoute.path
: DedicatedScopeDetailsRoute.path;
return {
pathname: generatePath(path, params),
};
};