PromucFlow_constructor/app/client/src/widgets/CheckboxWidget.tsx

94 lines
2.5 KiB
TypeScript
Raw Normal View History

2019-09-09 09:08:54 +00:00
import React from "react";
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
2019-11-25 05:07:27 +00:00
import { WidgetType } from "constants/WidgetConstants";
import CheckboxComponent from "components/designSystems/blueprint/CheckboxComponent";
2020-02-18 10:41:52 +00:00
import { EventType } from "constants/ActionConstants";
2019-11-25 05:07:27 +00:00
import { VALIDATION_TYPES } from "constants/WidgetValidation";
2020-03-16 07:59:07 +00:00
import {
WidgetPropertyValidationType,
BASE_WIDGET_VALIDATION,
} from "utils/ValidationFactory";
2020-02-18 10:41:52 +00:00
import { TriggerPropertiesMap } from "utils/WidgetFactory";
2019-03-21 12:10:32 +00:00
2019-09-09 09:08:54 +00:00
class CheckboxWidget extends BaseWidget<CheckboxWidgetProps, WidgetState> {
2019-11-19 12:44:58 +00:00
static getPropertyValidationMap(): WidgetPropertyValidationType {
return {
2020-03-16 07:59:07 +00:00
...BASE_WIDGET_VALIDATION,
2019-11-19 12:44:58 +00:00
label: VALIDATION_TYPES.TEXT,
2019-11-22 13:12:39 +00:00
defaultCheckedState: VALIDATION_TYPES.BOOLEAN,
2020-03-31 10:40:52 +00:00
onCheckChange: VALIDATION_TYPES.ACTION_SELECTOR,
2019-11-19 12:44:58 +00:00
};
}
2020-02-18 10:41:52 +00:00
static getTriggerPropertyMap(): TriggerPropertiesMap {
return {
onCheckChange: true,
};
}
2020-03-13 07:24:03 +00:00
componentDidMount() {
super.componentDidMount();
if (this.props.defaultCheckedState) {
this.updateWidgetMetaProperty(
"isChecked",
this.props.defaultCheckedState,
);
}
}
componentDidUpdate(prevProps: CheckboxWidgetProps) {
super.componentDidUpdate(prevProps);
2020-03-16 15:42:39 +00:00
if (
(this.props.isChecked !== prevProps.isChecked &&
this.props.isChecked === undefined) ||
this.props.defaultCheckedState.toString() !==
prevProps.defaultCheckedState.toString()
) {
this.updateWidgetMetaProperty(
"isChecked",
this.props.defaultCheckedState,
);
2020-03-13 07:24:03 +00:00
}
}
2019-03-21 12:10:32 +00:00
getPageView() {
return (
<CheckboxComponent
2020-03-13 07:24:03 +00:00
isChecked={!!this.props.isChecked}
2019-09-12 08:11:25 +00:00
label={this.props.label}
2019-03-21 12:10:32 +00:00
widgetId={this.props.widgetId}
key={this.props.widgetId}
isDisabled={this.props.isDisabled}
onCheckChange={this.onCheckChange}
2019-12-03 04:41:10 +00:00
isLoading={this.props.isLoading}
2019-03-21 12:10:32 +00:00
/>
2019-09-09 09:08:54 +00:00
);
2019-03-21 12:10:32 +00:00
}
onCheckChange = (isChecked: boolean) => {
2020-03-06 09:45:21 +00:00
this.updateWidgetMetaProperty("isChecked", isChecked);
2020-02-18 10:41:52 +00:00
if (this.props.onCheckChange) {
super.executeAction({
dynamicString: this.props.onCheckChange,
event: {
type: EventType.ON_CHECK_CHANGE,
},
});
}
};
2019-03-21 12:10:32 +00:00
getWidgetType(): WidgetType {
return "CHECKBOX_WIDGET";
2019-03-21 12:10:32 +00:00
}
}
2019-09-09 09:08:54 +00:00
export interface CheckboxWidgetProps extends WidgetProps {
label: string;
defaultCheckedState: boolean;
isChecked?: boolean;
isDisabled?: boolean;
2020-02-18 10:41:52 +00:00
onCheckChange?: string;
2019-03-21 12:10:32 +00:00
}
2019-09-09 09:08:54 +00:00
export default CheckboxWidget;