26 lines
811 B
TypeScript
26 lines
811 B
TypeScript
import { lazy } from "react";
|
|
import type { Path } from "react-router-dom-v5-compat";
|
|
import { generatePath } from "react-router-dom-v5-compat";
|
|
import type { RouteDef } from "../../route-config";
|
|
|
|
type IdentityProviderTabs = "settings" | "mappers";
|
|
|
|
export type IdentityProviderParams = {
|
|
realm: string;
|
|
providerId: string;
|
|
alias: string;
|
|
tab: IdentityProviderTabs;
|
|
};
|
|
|
|
export const IdentityProviderRoute: RouteDef = {
|
|
path: "/:realm/identity-providers/:providerId/:alias/:tab",
|
|
component: lazy(() => import("../add/DetailSettings")),
|
|
breadcrumb: (t) => t("identity-providers:providerDetails"),
|
|
access: "manage-identity-providers",
|
|
};
|
|
|
|
export const toIdentityProvider = (
|
|
params: IdentityProviderParams
|
|
): Partial<Path> => ({
|
|
pathname: generatePath(IdentityProviderRoute.path, params),
|
|
});
|