22 lines
651 B
TypeScript
22 lines
651 B
TypeScript
|
import type { LocationDescriptorObject } from "history";
|
||
|
import { generatePath } from "react-router-dom";
|
||
|
import type { RouteDef } from "../../route-config";
|
||
|
import { MappingDetails } from "../../client-scopes/details/MappingDetails";
|
||
|
|
||
|
export type MapperParams = {
|
||
|
realm: string;
|
||
|
id: string;
|
||
|
mapperId: string;
|
||
|
};
|
||
|
|
||
|
export const MapperRoute: RouteDef = {
|
||
|
path: "/:realm/clients/:id/mappers/:mapperId",
|
||
|
component: MappingDetails,
|
||
|
breadcrumb: (t) => t("common:mappingDetails"),
|
||
|
access: "view-clients",
|
||
|
};
|
||
|
|
||
|
export const toMapper = (params: MapperParams): LocationDescriptorObject => ({
|
||
|
pathname: generatePath(MapperRoute.path, params),
|
||
|
});
|