Changes to fix the the UI/functionality breaking in widget action selectors when the onError action is configured first for an api or a query type action. Remove validation widget action selectors.
103 lines
2.5 KiB
TypeScript
103 lines
2.5 KiB
TypeScript
import React from "react";
|
|
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
|
|
import { WidgetType } from "constants/WidgetConstants";
|
|
import ButtonComponent, {
|
|
ButtonType,
|
|
} from "components/designSystems/blueprint/ButtonComponent";
|
|
import { EventType } from "constants/ActionConstants";
|
|
import {
|
|
WidgetPropertyValidationType,
|
|
BASE_WIDGET_VALIDATION,
|
|
} from "utils/ValidationFactory";
|
|
import { VALIDATION_TYPES } from "constants/WidgetValidation";
|
|
import { TriggerPropertiesMap } from "utils/WidgetFactory";
|
|
|
|
class ButtonWidget extends BaseWidget<ButtonWidgetProps, ButtonWidgetState> {
|
|
onButtonClickBound: (event: React.MouseEvent<HTMLElement>) => void;
|
|
|
|
constructor(props: ButtonWidgetProps) {
|
|
super(props);
|
|
this.onButtonClickBound = this.onButtonClick.bind(this);
|
|
this.state = {
|
|
isLoading: false,
|
|
};
|
|
}
|
|
|
|
static getPropertyValidationMap(): WidgetPropertyValidationType {
|
|
return {
|
|
...BASE_WIDGET_VALIDATION,
|
|
text: VALIDATION_TYPES.TEXT,
|
|
buttonStyle: VALIDATION_TYPES.TEXT,
|
|
// onClick: VALIDATION_TYPES.ACTION_SELECTOR,
|
|
};
|
|
}
|
|
|
|
static getTriggerPropertyMap(): TriggerPropertiesMap {
|
|
return {
|
|
onClick: true,
|
|
};
|
|
}
|
|
|
|
onButtonClick() {
|
|
if (this.props.onClick) {
|
|
this.setState({
|
|
isLoading: true,
|
|
});
|
|
super.executeAction({
|
|
dynamicString: this.props.onClick,
|
|
event: {
|
|
type: EventType.ON_CLICK,
|
|
callback: this.handleActionComplete,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
handleActionComplete = () => {
|
|
this.setState({
|
|
isLoading: false,
|
|
});
|
|
};
|
|
|
|
getPageView() {
|
|
return (
|
|
<ButtonComponent
|
|
buttonStyle={this.props.buttonStyle}
|
|
widgetId={this.props.widgetId}
|
|
key={this.props.widgetId}
|
|
widgetName={this.props.widgetName}
|
|
text={this.props.text}
|
|
disabled={this.props.isDisabled}
|
|
onClick={this.onButtonClickBound}
|
|
isLoading={this.props.isLoading || this.state.isLoading}
|
|
type={this.props.buttonType || ButtonType.BUTTON}
|
|
/>
|
|
);
|
|
}
|
|
|
|
getWidgetType(): WidgetType {
|
|
return "BUTTON_WIDGET";
|
|
}
|
|
}
|
|
|
|
export type ButtonStyle =
|
|
| "PRIMARY_BUTTON"
|
|
| "SECONDARY_BUTTON"
|
|
| "SUCCESS_BUTTON"
|
|
| "DANGER_BUTTON";
|
|
|
|
export interface ButtonWidgetProps extends WidgetProps {
|
|
text?: string;
|
|
buttonStyle?: ButtonStyle;
|
|
onClick?: string;
|
|
isDisabled?: boolean;
|
|
isVisible?: boolean;
|
|
buttonType?: ButtonType;
|
|
}
|
|
|
|
interface ButtonWidgetState extends WidgetState {
|
|
isLoading: boolean;
|
|
}
|
|
|
|
export default ButtonWidget;
|