PromucFlow_constructor/app/client/src/widgets/MenuButtonWidget/component/index.tsx

450 lines
12 KiB
TypeScript
Raw Normal View History

import * as React from "react";
import styled, { createGlobalStyle } from "styled-components";
import { Alignment, Button, Icon, Menu, MenuItem } from "@blueprintjs/core";
import { Classes, Popover2 } from "@blueprintjs/popover2";
import { IconName } from "@blueprintjs/icons";
import tinycolor from "tinycolor2";
import { darkenActive, darkenHover } from "constants/DefaultTheme";
import {
ButtonBoxShadow,
ButtonBoxShadowTypes,
ButtonBorderRadius,
ButtonBorderRadiusTypes,
ButtonVariant,
ButtonVariantTypes,
ButtonPlacement,
} from "components/constants";
import { ThemeProp } from "components/ads/common";
import {
getCustomBackgroundColor,
getCustomBorderColor,
getCustomHoverColor,
getCustomTextColor,
getCustomJustifyContent,
getAlignText,
WidgetContainerDiff,
} from "widgets/WidgetUtils";
import orderBy from "lodash/orderBy";
import uniqueId from "lodash/uniqueId";
import { RenderMode } from "constants/WidgetConstants";
import { DragContainer } from "widgets/ButtonWidget/component/DragContainer";
const PopoverStyles = createGlobalStyle<{
parentWidth: number;
menuDropDownWidth: number;
id: string;
}>`
.menu-button-popover > .${Classes.POPOVER2_CONTENT} {
background: none;
}
& > .${Classes.POPOVER2_TARGET} {
height: 100%;
}
${({ id, menuDropDownWidth, parentWidth }) => `
.menu-button-width-${id} {
max-width: ${
menuDropDownWidth > parentWidth
? `${menuDropDownWidth}px`
: `${parentWidth}px`
} !important;
min-width: ${
parentWidth > menuDropDownWidth ? parentWidth : menuDropDownWidth
}px !important;
}
`}
`;
export interface BaseStyleProps {
backgroundColor?: string;
borderRadius?: ButtonBorderRadius;
boxShadow?: ButtonBoxShadow;
boxShadowColor?: string;
buttonColor?: string;
buttonVariant?: ButtonVariant;
isCompact?: boolean;
textColor?: string;
placement?: ButtonPlacement;
}
const BaseButton = styled(Button)<ThemeProp & BaseStyleProps>`
height: 100%;
background-image: none !important;
font-weight: ${(props) => props.theme.fontWeights[2]};
outline: none;
padding: 0px 10px;
overflow: hidden;
border: 1.2px solid #ebebeb;
border-radius: 0;
box-shadow: none !important;
${({ buttonColor, buttonVariant, theme }) => `
background: ${
getCustomBackgroundColor(buttonVariant, buttonColor) !== "none"
? getCustomBackgroundColor(buttonVariant, buttonColor)
: buttonVariant === ButtonVariantTypes.PRIMARY
? theme.colors.button.primary.primary.bgColor
: "none"
} !important;
&:hover, &:active {
background: ${
getCustomHoverColor(theme, buttonVariant, buttonColor) !== "none"
? getCustomHoverColor(theme, buttonVariant, buttonColor)
: buttonVariant === ButtonVariantTypes.SECONDARY
? theme.colors.button.primary.secondary.hoverColor
: buttonVariant === ButtonVariantTypes.TERTIARY
? theme.colors.button.primary.tertiary.hoverColor
: theme.colors.button.primary.primary.hoverColor
} !important;
}
&:disabled {
background-color: ${theme.colors.button.disabled.bgColor} !important;
color: ${theme.colors.button.disabled.textColor} !important;
border-color: ${theme.colors.button.disabled.bgColor} !important;
> span {
color: ${theme.colors.button.disabled.textColor} !important;
}
}
border: ${
getCustomBorderColor(buttonVariant, buttonColor) !== "none"
? `1px solid ${getCustomBorderColor(buttonVariant, buttonColor)}`
: buttonVariant === ButtonVariantTypes.SECONDARY
? `1px solid ${theme.colors.button.primary.secondary.borderColor}`
: "none"
} !important;
& > span {
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
max-height: 100%;
overflow: hidden;
color: ${
buttonVariant === ButtonVariantTypes.PRIMARY
? getCustomTextColor(theme, buttonColor)
: getCustomBackgroundColor(
ButtonVariantTypes.PRIMARY,
buttonColor,
) !== "none"
? getCustomBackgroundColor(ButtonVariantTypes.PRIMARY, buttonColor)
: `${theme.colors.button.primary.secondary.textColor}`
} !important;
}
`}
border-radius: ${({ borderRadius }) =>
borderRadius === ButtonBorderRadiusTypes.ROUNDED ? "5px" : 0};
box-shadow: ${({ boxShadow, boxShadowColor, theme }) =>
boxShadow === ButtonBoxShadowTypes.VARIANT1
? `0px 0px 4px 3px ${boxShadowColor ||
theme.colors.button.boxShadow.default.variant1}`
: boxShadow === ButtonBoxShadowTypes.VARIANT2
? `3px 3px 4px ${boxShadowColor ||
theme.colors.button.boxShadow.default.variant2}`
: boxShadow === ButtonBoxShadowTypes.VARIANT3
? `0px 1px 3px ${boxShadowColor ||
theme.colors.button.boxShadow.default.variant3}`
: boxShadow === ButtonBoxShadowTypes.VARIANT4
? `2px 2px 0px ${boxShadowColor ||
theme.colors.button.boxShadow.default.variant4}`
: boxShadow === ButtonBoxShadowTypes.VARIANT5
? `-2px -2px 0px ${boxShadowColor ||
theme.colors.button.boxShadow.default.variant5}`
: "none"} !important;
${({ placement }) =>
placement
? `
justify-content: ${getCustomJustifyContent(placement)};
& > span.bp3-button-text {
flex: unset !important;
}
`
: ""}
`;
const BaseMenuItem = styled(MenuItem)<ThemeProp & BaseStyleProps>`
${({ backgroundColor, theme }) =>
backgroundColor
? `
background-color: ${backgroundColor} !important;
&:hover {
background-color: ${darkenHover(backgroundColor)} !important;
}
&:active {
background-color: ${darkenActive(backgroundColor)} !important;
}
`
: `
background: none !important
&:hover {
background-color: ${tinycolor(
theme.colors.button.primary.primary.textColor,
)
.darken()
.toString()} !important;
}
&:active {
background-color: ${tinycolor(
theme.colors.button.primary.primary.textColor,
)
.darken()
.toString()} !important;
}
`}
${({ textColor }) =>
textColor &&
`
color: ${textColor} !important;
`}
${({ isCompact }) =>
isCompact &&
`
padding-top: 3px;
padding-bottom: 3px;
font-size: 12px;
`}
`;
const StyledMenu = styled(Menu)`
padding: 0;
min-width: 0px;
`;
export interface PopoverContentProps {
menuItems: Record<
string,
{
widgetId: string;
id: string;
index: number;
isVisible?: boolean;
isDisabled?: boolean;
label?: string;
backgroundColor?: string;
textColor?: string;
iconName?: IconName;
iconColor?: string;
iconAlign?: Alignment;
onClick?: string;
}
>;
onItemClicked: (onClick: string | undefined) => void;
isCompact?: boolean;
}
function PopoverContent(props: PopoverContentProps) {
const { isCompact, menuItems: itemsObj, onItemClicked } = props;
if (!itemsObj) return <StyledMenu />;
const visibleItems = Object.keys(itemsObj)
.map((itemKey) => itemsObj[itemKey])
.filter((item) => item.isVisible === true);
const items = orderBy(visibleItems, ["index"], ["asc"]);
const listItems = items.map((menuItem) => {
const {
backgroundColor,
iconAlign,
iconColor,
iconName,
id,
isDisabled,
label,
onClick,
textColor,
} = menuItem;
if (iconAlign === Alignment.RIGHT) {
return (
<BaseMenuItem
backgroundColor={backgroundColor}
disabled={isDisabled}
isCompact={isCompact}
key={id}
labelElement={<Icon color={iconColor} icon={iconName} />}
onClick={() => onItemClicked(onClick)}
text={label}
textColor={textColor}
/>
);
}
return (
<BaseMenuItem
backgroundColor={backgroundColor}
disabled={isDisabled}
icon={<Icon color={iconColor} icon={iconName} />}
isCompact={isCompact}
key={id}
onClick={() => onItemClicked(onClick)}
text={label}
textColor={textColor}
/>
);
});
return <StyledMenu>{listItems}</StyledMenu>;
}
export interface PopoverTargetButtonProps {
borderRadius?: ButtonBorderRadius;
boxShadow?: ButtonBoxShadow;
boxShadowColor?: string;
buttonColor?: string;
buttonVariant?: ButtonVariant;
iconName?: IconName;
iconAlign?: Alignment;
isDisabled?: boolean;
label?: string;
placement?: ButtonPlacement;
renderMode?: RenderMode;
}
function PopoverTargetButton(props: PopoverTargetButtonProps) {
const {
borderRadius,
boxShadow,
boxShadowColor,
buttonColor,
buttonVariant,
iconAlign,
iconName,
isDisabled,
label,
placement,
renderMode,
} = props;
const isRightAlign = iconAlign === Alignment.RIGHT;
return (
<DragContainer
buttonColor={buttonColor}
buttonVariant={buttonVariant}
disabled={isDisabled}
renderMode={renderMode}
>
<BaseButton
alignText={getAlignText(isRightAlign, iconName)}
borderRadius={borderRadius}
boxShadow={boxShadow}
boxShadowColor={boxShadowColor}
buttonColor={buttonColor}
buttonVariant={buttonVariant}
disabled={isDisabled}
fill
icon={isRightAlign ? undefined : iconName}
placement={placement}
rightIcon={isRightAlign ? iconName : undefined}
text={label}
/>
</DragContainer>
);
}
export interface MenuButtonComponentProps {
label?: string;
isDisabled?: boolean;
isVisible?: boolean;
isCompact?: boolean;
menuItems: Record<
string,
{
widgetId: string;
id: string;
index: number;
isVisible?: boolean;
isDisabled?: boolean;
label?: string;
backgroundColor?: string;
textColor?: string;
iconName?: IconName;
iconColor?: string;
iconAlign?: Alignment;
onClick?: string;
}
>;
menuVariant?: ButtonVariant;
menuColor?: string;
borderRadius?: ButtonBorderRadius;
boxShadow?: ButtonBoxShadow;
boxShadowColor?: string;
iconName?: IconName;
iconAlign?: Alignment;
onItemClicked: (onClick: string | undefined) => void;
backgroundColor?: string;
placement?: ButtonPlacement;
width: number;
menuDropDownWidth: number;
renderMode?: RenderMode;
}
function MenuButtonComponent(props: MenuButtonComponentProps) {
const {
borderRadius,
boxShadow,
boxShadowColor,
iconAlign,
iconName,
isCompact,
isDisabled,
label,
menuColor,
menuDropDownWidth,
menuItems,
menuVariant,
onItemClicked,
placement,
renderMode,
width,
} = props;
const id = uniqueId();
return (
<>
<PopoverStyles
id={id}
menuDropDownWidth={menuDropDownWidth}
parentWidth={width - WidgetContainerDiff}
/>
<Popover2
content={
<PopoverContent
isCompact={isCompact}
menuItems={menuItems}
onItemClicked={onItemClicked}
/>
}
disabled={isDisabled}
fill
minimal
placement="bottom-end"
popoverClassName={`menu-button-popover menu-button-width-${id}`}
>
<PopoverTargetButton
borderRadius={borderRadius}
boxShadow={boxShadow}
boxShadowColor={boxShadowColor}
buttonColor={menuColor}
buttonVariant={menuVariant}
iconAlign={iconAlign}
iconName={iconName}
isDisabled={isDisabled}
label={label}
placement={placement}
renderMode={renderMode}
/>
</Popover2>
</>
);
}
export default MenuButtonComponent;