PromucFlow_constructor/app/client/src/widgets/FormWidget.tsx
Abhinav Jha 1ccece69e1
Custom FusionCharts Config (#2670)
* Property pane enhancements

- Property pane sections are collapsible
- Property pane controls can be hidden conditionally
- Property pane configurations now come from the widget instead of a global config file
- Property pane property updates can be hooked with other related updates
- Property pane control and section ids are generated dynamically now.

* Add chart type: "Custom FusionChart" (#2996)

Co-authored-by: Zeger Hoogeboom <zegerhoogeboom@users.noreply.github.com>
Co-authored-by: zeger <zeger@equinoxai.com>
2021-03-25 03:35:04 +05:30

115 lines
3.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 * as Sentry from "@sentry/react";
import withMeta from "./MetaHOC";
class FormWidget extends ContainerWidget {
static getPropertyPaneConfig() {
return [
{
sectionName: "General",
children: [
{
propertyName: "backgroundColor",
label: "Background Color",
helpText: "Use a html color name, HEX, RGB or RGBA value",
placeholderText: "#FFFFFF / Gray / rgb(255, 99, 71)",
controlType: "INPUT_TEXT",
isBindProperty: true,
isTriggerProperty: false,
},
{
helpText: "Controls the visibility of the widget",
propertyName: "isVisible",
label: "Visible",
controlType: "SWITCH",
isJSConvertible: true,
isBindProperty: true,
isTriggerProperty: false,
},
{
propertyName: "shouldScrollContents",
label: "Scroll Contents",
controlType: "SWITCH",
isBindProperty: false,
isTriggerProperty: false,
},
],
},
];
}
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 (!_.isEqual(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));