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

103 lines
2.5 KiB
TypeScript
Raw Normal View History

import React from "react";
2019-09-09 09:08:54 +00:00
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
2019-11-25 05:07:27 +00:00
import { WidgetType } from "constants/WidgetConstants";
2020-03-06 09:45:21 +00:00
import ButtonComponent, {
ButtonType,
} from "components/designSystems/blueprint/ButtonComponent";
2020-02-18 10:41:52 +00:00
import { EventType } from "constants/ActionConstants";
2020-03-16 07:59:07 +00:00
import {
WidgetPropertyValidationType,
BASE_WIDGET_VALIDATION,
} from "utils/ValidationFactory";
2019-11-22 13:12:39 +00:00
import { VALIDATION_TYPES } from "constants/WidgetValidation";
2020-02-18 10:41:52 +00:00
import { TriggerPropertiesMap } from "utils/WidgetFactory";
2019-03-18 13:50:24 +00:00
2020-04-13 08:24:13 +00:00
class ButtonWidget extends BaseWidget<ButtonWidgetProps, ButtonWidgetState> {
2019-10-30 10:23:20 +00:00
onButtonClickBound: (event: React.MouseEvent<HTMLElement>) => void;
constructor(props: ButtonWidgetProps) {
super(props);
this.onButtonClickBound = this.onButtonClick.bind(this);
2020-03-06 09:45:21 +00:00
this.state = {
isLoading: false,
};
2019-10-30 10:23:20 +00:00
}
2019-11-22 13:12:39 +00:00
static getPropertyValidationMap(): WidgetPropertyValidationType {
return {
2020-03-16 07:59:07 +00:00
...BASE_WIDGET_VALIDATION,
2019-11-22 13:12:39 +00:00
text: VALIDATION_TYPES.TEXT,
buttonStyle: VALIDATION_TYPES.TEXT,
2020-04-02 07:53:03 +00:00
onClick: VALIDATION_TYPES.ACTION_SELECTOR,
2019-11-22 13:12:39 +00:00
};
}
2020-02-18 10:41:52 +00:00
static getTriggerPropertyMap(): TriggerPropertiesMap {
return {
onClick: true,
};
}
onButtonClick() {
2020-02-18 10:41:52 +00:00
if (this.props.onClick) {
2020-03-06 09:45:21 +00:00
this.setState({
isLoading: true,
});
2020-02-18 10:41:52 +00:00
super.executeAction({
dynamicString: this.props.onClick,
event: {
type: EventType.ON_CLICK,
2020-03-06 09:45:21 +00:00
callback: this.handleActionComplete,
2020-02-18 10:41:52 +00:00
},
});
}
}
2020-03-06 09:45:21 +00:00
handleActionComplete = () => {
this.setState({
isLoading: false,
});
};
getPageView() {
2019-03-18 13:50:24 +00:00
return (
<ButtonComponent
2019-10-31 05:28:11 +00:00
buttonStyle={this.props.buttonStyle}
2019-03-18 13:50:24 +00:00
widgetId={this.props.widgetId}
key={this.props.widgetId}
2019-11-05 05:09:50 +00:00
widgetName={this.props.widgetName}
text={this.props.text}
disabled={this.props.isDisabled}
2019-10-30 10:23:20 +00:00
onClick={this.onButtonClickBound}
2020-03-06 09:45:21 +00:00
isLoading={this.props.isLoading || this.state.isLoading}
type={this.props.buttonType || ButtonType.BUTTON}
2019-03-18 13:50:24 +00:00
/>
2019-09-09 09:08:54 +00:00
);
2019-03-18 13:50:24 +00:00
}
getWidgetType(): WidgetType {
2019-09-09 09:08:54 +00:00
return "BUTTON_WIDGET";
2019-03-18 13:50:24 +00:00
}
}
export type ButtonStyle =
| "PRIMARY_BUTTON"
| "SECONDARY_BUTTON"
| "SUCCESS_BUTTON"
| "DANGER_BUTTON";
2019-09-12 08:11:25 +00:00
2019-09-09 09:08:54 +00:00
export interface ButtonWidgetProps extends WidgetProps {
2019-08-29 11:22:09 +00:00
text?: string;
buttonStyle?: ButtonStyle;
2020-02-18 10:41:52 +00:00
onClick?: string;
isDisabled?: boolean;
isVisible?: boolean;
2020-03-06 09:45:21 +00:00
buttonType?: ButtonType;
2019-03-18 13:50:24 +00:00
}
2020-04-13 08:24:13 +00:00
interface ButtonWidgetState extends WidgetState {
isLoading: boolean;
}
2019-09-09 09:08:54 +00:00
export default ButtonWidget;