27 lines
849 B
TypeScript
27 lines
849 B
TypeScript
import React from "react";
|
|
import type { ConfigPropertyRepresentation } from "@keycloak/keycloak-admin-client/lib/defs/authenticatorConfigInfoRepresentation";
|
|
|
|
import { COMPONENTS, isValidComponentType } from "./components";
|
|
|
|
type DynamicComponentProps = {
|
|
properties: ConfigPropertyRepresentation[];
|
|
selectedValues?: string[];
|
|
parentCallback?: (data: string[]) => void;
|
|
};
|
|
|
|
export const DynamicComponents = ({
|
|
properties,
|
|
...rest
|
|
}: DynamicComponentProps) => (
|
|
<>
|
|
{properties.map((property) => {
|
|
const componentType = property.type!;
|
|
if (isValidComponentType(componentType)) {
|
|
const Component = COMPONENTS[componentType];
|
|
return <Component key={property.name} {...property} {...rest} />;
|
|
} else {
|
|
console.warn(`There is no editor registered for ${componentType}`);
|
|
}
|
|
})}
|
|
</>
|
|
);
|