26 lines
797 B
TypeScript
26 lines
797 B
TypeScript
|
import type { LocationDescriptorObject } from "history";
|
||
|
import { lazy } from "react";
|
||
|
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;
|
||
|
};
|
||
|
|
||
|
export const DedicatedScopeDetailsRoute: RouteDef = {
|
||
|
path: "/:realm/clients/:clientId/clientScopes/dedicated/:tab?",
|
||
|
component: lazy(() => import("../scopes/DedicatedScopes")),
|
||
|
breadcrumb: (t) => t("clients:dedicatedScopes"),
|
||
|
access: "manage-clients",
|
||
|
};
|
||
|
|
||
|
export const toDedicatedScope = (
|
||
|
params: DedicatedScopeDetailsParams
|
||
|
): LocationDescriptorObject => ({
|
||
|
pathname: generatePath(DedicatedScopeDetailsRoute.path, params),
|
||
|
});
|