import { ADDITIONAL_PROPERTY_FLAG, buttonId, FormContextType, RJSFSchema, StrictRJSFSchema, TranslatableString, WrapIfAdditionalTemplateProps, } from '@rjsf/utils'; import Label from './FieldTemplate/Label'; /** The `WrapIfAdditional` component is used by the `FieldTemplate` to rename, or remove properties that are * part of an `additionalProperties` part of a schema. * * @param props - The `WrapIfAdditionalProps` for this component */ export default function WrapIfAdditionalTemplate< T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any, >(props: WrapIfAdditionalTemplateProps) { const { id, classNames, style, disabled, displayLabel, label, onKeyRenameBlur, onRemoveProperty, rawDescription, readonly, required, schema, hideError, rawErrors, children, uiSchema, registry, } = props; const { templates, translateString } = registry; // Button templates are not overridden in the uiSchema const { RemoveButton } = templates.ButtonTemplates; const keyLabel = translateString(TranslatableString.KeyLabel, [label]); const additional = ADDITIONAL_PROPERTY_FLAG in schema; const hasDescription = !!rawDescription; const classNamesList = ['form-group', classNames]; if (!hideError && rawErrors && rawErrors.length > 0) { classNamesList.push('has-error has-danger'); } const uiClassNames = classNamesList.join(' ').trim(); if (!additional) { return (
{children}
); } const margin = hasDescription ? 46 : 26; return (
{displayLabel &&
{children}
); }