import * as React from "react";
import { TooltipComponent } from "design-system";
import BaseControl, { ControlData, ControlProps } from "./BaseControl";
import { borderRadiusOptions } from "constants/ThemeConstants";
import { ButtonTab } from "design-system";
import {
DSEventDetail,
DSEventTypes,
DS_EVENT,
emitInteractionAnalyticsEvent,
} from "utils/AppsmithUtils";
/**
* ----------------------------------------------------------------------------
* TYPES
*-----------------------------------------------------------------------------
*/
export interface BorderRadiusOptionsControlProps extends ControlProps {
propertyValue: string | undefined;
}
const options = Object.keys(borderRadiusOptions).map((optionKey) => ({
icon: (
{optionKey}
}
key={optionKey}
openOnTargetFocus={false}
>
),
value: borderRadiusOptions[optionKey],
}));
const optionsValues = new Set(Object.values(borderRadiusOptions));
/**
* ----------------------------------------------------------------------------
* COMPONENT
*-----------------------------------------------------------------------------
*/
class BorderRadiusOptionsControl extends BaseControl<
BorderRadiusOptionsControlProps
> {
componentRef = React.createRef();
componentDidMount() {
this.componentRef.current?.addEventListener(
DS_EVENT,
this.handleAdsEvent as (arg0: Event) => void,
);
}
componentWillUnmount() {
this.componentRef.current?.removeEventListener(
DS_EVENT,
this.handleAdsEvent as (arg0: Event) => void,
);
}
handleAdsEvent = (e: CustomEvent) => {
if (
e.detail.component === "ButtonTab" &&
e.detail.event === DSEventTypes.KEYPRESS
) {
emitInteractionAnalyticsEvent(this.componentRef.current, {
key: e.detail.meta.key,
});
e.stopPropagation();
}
};
static getControlType() {
return "BORDER_RADIUS_OPTIONS";
}
public render() {
return (
{
this.updateProperty(
this.props.propertyName,
value,
isUpdatedViaKeyboard,
);
}}
values={this.props.evaluatedValue ? [this.props.evaluatedValue] : []}
/>
);
}
static canDisplayValueInUI(config: ControlData, value: any): boolean {
return optionsValues.has(value);
}
}
export default BorderRadiusOptionsControl;