PromucFlow_constructor/app/client/src/components/propertyControls/ButtonBorderRadiusControl.tsx

84 lines
2.3 KiB
TypeScript
Raw Normal View History

import * as React from "react";
import styled from "styled-components";
import { Button, ButtonGroup, IButtonProps } from "@blueprintjs/core";
import BaseControl, { ControlProps } from "./BaseControl";
import { ControlIcons } from "icons/ControlIcons";
import { ThemeProp } from "components/ads/common";
export enum ButtonBorderRadiusTypes {
SHARP = "SHARP",
ROUNDED = "ROUNDED",
CIRCLE = "CIRCLE",
}
export type ButtonBorderRadius = keyof typeof ButtonBorderRadiusTypes;
const StyledButtonGroup = styled(ButtonGroup)`
height: 33px;
`;
const StyledButton = styled(Button)<ThemeProp & IButtonProps>`
border: ${(props) =>
props.active ? `1px solid #6A86CE` : `1px solid #A9A7A7`};
border-radius: 0;
box-shadow: none !important;
background-image: none !important;
background-color: #ffffff !important;
& > div {
display: flex;
}
&.bp3-active {
box-shadow: none !important;
background-color: #ffffff !important;
}
&:hover {
background-color: #ffffff !important;
}
`;
export interface ButtonBorderRadiusOptionsControlProps extends ControlProps {
propertyValue: ButtonBorderRadius | undefined;
onChange: (borderRaidus: ButtonBorderRadius) => void;
}
class ButtonBorderRadiusOptionsControl extends BaseControl<
ButtonBorderRadiusOptionsControlProps
> {
constructor(props: ButtonBorderRadiusOptionsControlProps) {
super(props);
}
static getControlType() {
return "BUTTON_BORDER_RADIUS_OPTIONS";
}
public render() {
const { propertyValue } = this.props;
return (
<StyledButtonGroup fill>
<StyledButton
active={propertyValue === ButtonBorderRadiusTypes.SHARP || undefined}
icon={<ControlIcons.BORDER_RADIUS_SHARP color="#979797" width={15} />}
large
onClick={() => this.toggleOption(ButtonBorderRadiusTypes.SHARP)}
/>
<StyledButton
active={propertyValue === ButtonBorderRadiusTypes.ROUNDED}
icon={
<ControlIcons.BORDER_RADIUS_ROUNDED color="#979797" width={15} />
}
large
onClick={() => this.toggleOption(ButtonBorderRadiusTypes.ROUNDED)}
/>
</StyledButtonGroup>
);
}
private toggleOption = (option: ButtonBorderRadius) => {
this.updateProperty(this.props.propertyName, option);
};
}
export default ButtonBorderRadiusOptionsControl;