33 lines
959 B
TypeScript
33 lines
959 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { AutoRegisteringComponentRenderer } from "../../AutoRegisteringComponentRenderer";
|
|
import { V2ProcessWorkStandardDefinition } from "./index";
|
|
import { ProcessWorkStandardComponent } from "./ProcessWorkStandardComponent";
|
|
|
|
export class ProcessWorkStandardRenderer extends AutoRegisteringComponentRenderer {
|
|
static componentDefinition = V2ProcessWorkStandardDefinition;
|
|
|
|
render(): React.ReactElement {
|
|
const { formData, isPreview, config, tableName } = this.props as Record<
|
|
string,
|
|
unknown
|
|
>;
|
|
|
|
return (
|
|
<ProcessWorkStandardComponent
|
|
config={(config as object) || {}}
|
|
formData={formData as Record<string, unknown>}
|
|
tableName={tableName as string}
|
|
isPreview={isPreview as boolean}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
ProcessWorkStandardRenderer.registerSelf();
|
|
|
|
if (process.env.NODE_ENV === "development") {
|
|
ProcessWorkStandardRenderer.enableHotReload();
|
|
}
|