Skip to content

Commit 9b75f4e

Browse files
batzionb04kash
authored andcommitted
fix(orchestrator): pass also initial form data to custom decorator
1 parent 08f6a06 commit 9b75f4e

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

workspaces/orchestrator/plugins/orchestrator-form-api/report.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export type FormDecoratorProps = Pick<FormProps<JsonObject, JSONSchema7>, 'formD
2020

2121
// @public
2222
export interface OrchestratorFormApi {
23-
getFormDecorator(schema: JSONSchema7, uiSchema: UiSchema<JsonObject, JSONSchema7>): OrchestratorFormDecorator;
23+
getFormDecorator(schema: JSONSchema7, uiSchema: UiSchema<JsonObject, JSONSchema7>, initialFormData?: JsonObject): OrchestratorFormDecorator;
2424
}
2525

2626
// @public

workspaces/orchestrator/plugins/orchestrator-form-api/src/api.ts

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export interface OrchestratorFormApi {
7474
getFormDecorator(
7575
schema: JSONSchema7,
7676
uiSchema: UiSchema<JsonObject, JSONSchema7>,
77+
initialFormData?: JsonObject,
7778
): OrchestratorFormDecorator;
7879
}
7980

workspaces/orchestrator/plugins/orchestrator-form-react/src/components/OrchestratorFormWrapper.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -150,16 +150,19 @@ const FormComponent = (decoratorProps: FormDecoratorProps) => {
150150
const OrchestratorFormWrapper = ({
151151
schema,
152152
uiSchema,
153+
formData,
153154
...props
154155
}: OrchestratorFormWrapperProps) => {
155156
const formApi =
156157
useApiHolder().get(orchestratorFormApiRef) || defaultFormExtensionsApi;
157158
const NewComponent = React.useMemo(() => {
158-
const formDecorator = formApi.getFormDecorator(schema, uiSchema);
159+
const formDecorator = formApi.getFormDecorator(schema, uiSchema, formData);
159160
return formDecorator(FormComponent);
160-
}, [schema, formApi, uiSchema]);
161+
}, [schema, formApi, uiSchema, formData]);
161162
return (
162-
<WrapperFormPropsContext.Provider value={{ schema, uiSchema, ...props }}>
163+
<WrapperFormPropsContext.Provider
164+
value={{ schema, uiSchema, formData, ...props }}
165+
>
163166
<NewComponent />
164167
</WrapperFormPropsContext.Provider>
165168
);

0 commit comments

Comments
 (0)