PromucFlow_constructor/app/client/src/widgets/FormWidget.tsx
Abhinav Jha 76ae0103bf
Upgrade npm packages (#1079)
Co-authored-by: Hetu Nandu <hetunandu@gmail.com>
2020-10-12 18:36:05 +05:30

78 lines
2.3 KiB
TypeScript

import React from "react";
import _ from "lodash";
import { WidgetProps } from "./BaseWidget";
import { WidgetType } from "constants/WidgetConstants";
import ContainerWidget, { ContainerWidgetProps } from "widgets/ContainerWidget";
import { ContainerComponentProps } from "components/designSystems/appsmith/ContainerComponent";
import shallowEqual from "shallowequal";
import * as Sentry from "@sentry/react";
import withMeta from "./MetaHOC";
class FormWidget extends ContainerWidget {
checkInvalidChildren = (children: WidgetProps[]): boolean => {
return _.some(children, child => {
if ("children" in child) return this.checkInvalidChildren(child.children);
if ("isValid" in child) return !child.isValid;
return false;
});
};
handleResetInputs = () => {
super.resetChildrenMetaProperty(this.props.widgetId);
};
componentDidMount() {
super.componentDidMount();
this.updateFormData();
}
componentDidUpdate(prevProps: ContainerWidgetProps<any>) {
super.componentDidUpdate(prevProps);
this.updateFormData();
}
updateFormData() {
if (this.props.children) {
const formData = this.getFormData(this.props.children[0]);
if (!shallowEqual(formData, this.props.data)) {
this.props.updateWidgetMetaProperty("data", formData);
}
}
}
getFormData(formWidget: ContainerWidgetProps<WidgetProps>) {
const formData: any = {};
if (formWidget.children)
formWidget.children.forEach(widgetData => {
if (widgetData.value) {
formData[widgetData.widgetName] = widgetData.value;
}
});
return formData;
}
renderChildWidget(childWidgetData: WidgetProps): React.ReactNode {
if (childWidgetData.children) {
const isInvalid = this.checkInvalidChildren(childWidgetData.children);
childWidgetData.children.forEach((grandChild: WidgetProps) => {
if (isInvalid) grandChild.isFormValid = false;
// Add submit and reset handlers
grandChild.onReset = this.handleResetInputs;
});
}
return super.renderChildWidget(childWidgetData);
}
getWidgetType(): WidgetType {
return "FORM_WIDGET";
}
}
export interface FormWidgetProps extends ContainerComponentProps {
name: string;
data: Record<string, unknown>;
}
export default FormWidget;
export const ProfiledFormWidget = Sentry.withProfiler(withMeta(FormWidget));