2021-07-08 12:02:08 +00:00
|
|
|
import React, { useRef, useState } from "react";
|
2021-08-24 13:53:15 +00:00
|
|
|
import styled from "styled-components";
|
|
|
|
|
import tinycolor from "tinycolor2";
|
|
|
|
|
|
2020-02-12 08:23:50 +00:00
|
|
|
import {
|
|
|
|
|
IButtonProps,
|
|
|
|
|
MaybeElement,
|
2020-03-30 08:55:52 +00:00
|
|
|
Button,
|
2021-08-24 13:53:15 +00:00
|
|
|
Alignment,
|
2021-08-17 11:26:05 +00:00
|
|
|
Position,
|
2020-02-12 08:23:50 +00:00
|
|
|
} from "@blueprintjs/core";
|
2021-08-24 13:53:15 +00:00
|
|
|
import { IconName } from "@blueprintjs/icons";
|
|
|
|
|
|
2021-08-17 11:26:05 +00:00
|
|
|
import Tooltip from "components/ads/Tooltip";
|
2021-08-24 13:53:15 +00:00
|
|
|
import { Theme } from "constants/DefaultTheme";
|
2020-01-03 13:40:31 +00:00
|
|
|
import { ComponentProps } from "components/designSystems/appsmith/BaseComponent";
|
2020-11-30 07:23:05 +00:00
|
|
|
import { useScript, ScriptStatus } from "utils/hooks/useScript";
|
2020-10-12 13:01:19 +00:00
|
|
|
import {
|
|
|
|
|
GOOGLE_RECAPTCHA_KEY_ERROR,
|
|
|
|
|
GOOGLE_RECAPTCHA_DOMAIN_ERROR,
|
2021-03-13 14:24:45 +00:00
|
|
|
createMessage,
|
2020-10-12 13:01:19 +00:00
|
|
|
} from "constants/messages";
|
2021-08-24 13:53:15 +00:00
|
|
|
import { ThemeProp, Variant } from "components/ads/common";
|
2020-11-24 07:01:37 +00:00
|
|
|
import { Toaster } from "components/ads/Toast";
|
2021-07-08 12:02:08 +00:00
|
|
|
import ReCAPTCHA from "react-google-recaptcha";
|
2021-08-24 13:53:15 +00:00
|
|
|
import {
|
|
|
|
|
ButtonBoxShadow,
|
|
|
|
|
ButtonBoxShadowTypes,
|
|
|
|
|
} from "components/propertyControls/BoxShadowOptionsControl";
|
|
|
|
|
import {
|
|
|
|
|
ButtonBorderRadius,
|
|
|
|
|
ButtonBorderRadiusTypes,
|
|
|
|
|
} from "components/propertyControls/BorderRadiusOptionsControl";
|
2019-10-21 15:12:45 +00:00
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
export enum ButtonStyleTypes {
|
|
|
|
|
PRIMARY = "PRIMARY",
|
|
|
|
|
WARNING = "WARNING",
|
|
|
|
|
DANGER = "DANGER",
|
|
|
|
|
INFO = "INFO",
|
|
|
|
|
SECONDARY = "SECONDARY",
|
|
|
|
|
CUSTOM = "CUSTOM",
|
|
|
|
|
}
|
|
|
|
|
export type ButtonStyle = keyof typeof ButtonStyleTypes;
|
|
|
|
|
|
|
|
|
|
export enum ButtonVariantTypes {
|
|
|
|
|
SOLID = "SOLID",
|
|
|
|
|
OUTLINE = "OUTLINE",
|
|
|
|
|
GHOST = "GHOST",
|
|
|
|
|
}
|
|
|
|
|
export type ButtonVariant = keyof typeof ButtonVariantTypes;
|
|
|
|
|
|
|
|
|
|
const getCustomTextColor = (
|
|
|
|
|
theme: Theme,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
prevButtonStyle?: ButtonStyle,
|
|
|
|
|
) => {
|
|
|
|
|
if (!backgroundColor)
|
|
|
|
|
return theme.colors.button[
|
|
|
|
|
(prevButtonStyle || ButtonStyleTypes.PRIMARY).toLowerCase()
|
|
|
|
|
].solid.textColor;
|
|
|
|
|
const isDark = tinycolor(backgroundColor).isDark();
|
|
|
|
|
if (isDark) {
|
|
|
|
|
return theme.colors.button.custom.solid.light.textColor;
|
2021-08-16 12:00:11 +00:00
|
|
|
}
|
2021-08-24 13:53:15 +00:00
|
|
|
return theme.colors.button.custom.solid.dark.textColor;
|
2021-08-16 12:00:11 +00:00
|
|
|
};
|
|
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
const getCustomHoverColor = (
|
|
|
|
|
theme: Theme,
|
|
|
|
|
prevButtonStyle?: ButtonStyle,
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
|
|
|
|
if (!backgroundColor) {
|
|
|
|
|
return theme.colors.button[
|
|
|
|
|
(prevButtonStyle || ButtonStyleTypes.PRIMARY).toLowerCase()
|
|
|
|
|
][(buttonVariant || ButtonVariantTypes.SOLID).toLowerCase()].hoverColor;
|
2021-08-16 12:00:11 +00:00
|
|
|
}
|
2021-08-24 13:53:15 +00:00
|
|
|
|
|
|
|
|
switch (buttonVariant) {
|
|
|
|
|
case ButtonVariantTypes.OUTLINE:
|
|
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.lighten(40)
|
|
|
|
|
.toString()
|
|
|
|
|
: theme.colors.button.primary.outline.hoverColor;
|
2021-09-01 03:12:24 +00:00
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
case ButtonVariantTypes.GHOST:
|
|
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.lighten(40)
|
|
|
|
|
.toString()
|
|
|
|
|
: theme.colors.button.primary.ghost.hoverColor;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.darken(10)
|
|
|
|
|
.toString()
|
|
|
|
|
: theme.colors.button.primary.solid.hoverColor;
|
2019-11-13 07:34:59 +00:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
const getCustomBackgroundColor = (
|
|
|
|
|
theme: Theme,
|
|
|
|
|
prevButtonStyle?: ButtonStyle,
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
|
|
|
|
return buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? backgroundColor
|
|
|
|
|
? backgroundColor
|
|
|
|
|
: theme.colors.button[
|
|
|
|
|
(prevButtonStyle || ButtonStyleTypes.PRIMARY).toLowerCase()
|
|
|
|
|
].solid.bgColor
|
|
|
|
|
: "none";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const getCustomBorderColor = (
|
|
|
|
|
theme: Theme,
|
|
|
|
|
prevButtonStyle?: ButtonStyle,
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
|
|
|
|
return buttonVariant === ButtonVariantTypes.OUTLINE
|
|
|
|
|
? backgroundColor
|
|
|
|
|
? backgroundColor
|
|
|
|
|
: theme.colors.button[
|
|
|
|
|
(prevButtonStyle || ButtonStyleTypes.PRIMARY).toLowerCase()
|
|
|
|
|
].outline.borderColor
|
|
|
|
|
: "none";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const RecaptchaWrapper = styled.div`
|
|
|
|
|
position: relative;
|
|
|
|
|
.grecaptcha-badge {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
2021-08-17 11:26:05 +00:00
|
|
|
const ToolTipContent = styled.div`
|
|
|
|
|
max-width: 350px;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const ToolTipWrapper = styled.div`
|
|
|
|
|
height: 100%;
|
|
|
|
|
&& .bp3-popover-target {
|
|
|
|
|
height: 100%;
|
|
|
|
|
& > div {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
const ButtonContainer = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 100%;
|
2021-07-08 12:02:08 +00:00
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
& > button {
|
|
|
|
|
height: 100%;
|
2021-07-08 12:02:08 +00:00
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
const StyledButton = styled(Button)<ThemeProp & ButtonStyleProps>`
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-image: none !important;
|
|
|
|
|
font-weight: ${(props) => props.theme.fontWeights[2]};
|
|
|
|
|
outline: none;
|
|
|
|
|
padding: 0px 10px;
|
2019-10-21 15:12:45 +00:00
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
${({ buttonColor, buttonStyle, buttonVariant, prevButtonStyle, theme }) => `
|
|
|
|
|
&:enabled {
|
|
|
|
|
background: ${
|
|
|
|
|
buttonStyle === ButtonStyleTypes.WARNING
|
|
|
|
|
? buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? theme.colors.button.warning.solid.bgColor
|
|
|
|
|
: "none"
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.DANGER
|
|
|
|
|
? buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? theme.colors.button.danger.solid.bgColor
|
|
|
|
|
: "none"
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.INFO
|
|
|
|
|
? buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? theme.colors.button.info.solid.bgColor
|
|
|
|
|
: "none"
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.SECONDARY
|
|
|
|
|
? buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? theme.colors.button.secondary.solid.bgColor
|
|
|
|
|
: "none"
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.CUSTOM
|
|
|
|
|
? getCustomBackgroundColor(
|
|
|
|
|
theme,
|
|
|
|
|
prevButtonStyle,
|
|
|
|
|
buttonVariant,
|
|
|
|
|
buttonColor,
|
|
|
|
|
)
|
|
|
|
|
: buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? theme.colors.button.primary.solid.bgColor
|
|
|
|
|
: "none"
|
|
|
|
|
} !important;
|
2020-01-17 12:34:58 +00:00
|
|
|
}
|
2021-08-24 13:53:15 +00:00
|
|
|
|
|
|
|
|
&:hover:enabled, &:active:enabled {
|
|
|
|
|
background: ${
|
|
|
|
|
buttonStyle === ButtonStyleTypes.WARNING
|
|
|
|
|
? buttonVariant === ButtonVariantTypes.OUTLINE
|
|
|
|
|
? theme.colors.button.warning.outline.hoverColor
|
|
|
|
|
: buttonVariant === ButtonVariantTypes.GHOST
|
|
|
|
|
? theme.colors.button.warning.ghost.hoverColor
|
|
|
|
|
: theme.colors.button.warning.solid.hoverColor
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.DANGER
|
|
|
|
|
? buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? theme.colors.button.danger.solid.hoverColor
|
|
|
|
|
: theme.colors.button.danger.outline.hoverColor
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.INFO
|
|
|
|
|
? buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? theme.colors.button.info.solid.hoverColor
|
|
|
|
|
: theme.colors.button.info.outline.hoverColor
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.SECONDARY
|
|
|
|
|
? buttonVariant === ButtonVariantTypes.OUTLINE
|
|
|
|
|
? theme.colors.button.secondary.outline.hoverColor
|
|
|
|
|
: buttonVariant === ButtonVariantTypes.GHOST
|
|
|
|
|
? theme.colors.button.secondary.ghost.hoverColor
|
|
|
|
|
: theme.colors.button.secondary.solid.hoverColor
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.CUSTOM
|
|
|
|
|
? getCustomHoverColor(
|
|
|
|
|
theme,
|
|
|
|
|
prevButtonStyle,
|
|
|
|
|
buttonVariant,
|
|
|
|
|
buttonColor,
|
|
|
|
|
)
|
|
|
|
|
: buttonVariant === ButtonVariantTypes.OUTLINE
|
|
|
|
|
? theme.colors.button.primary.outline.hoverColor
|
|
|
|
|
: buttonVariant === ButtonVariantTypes.GHOST
|
|
|
|
|
? theme.colors.button.primary.ghost.hoverColor
|
|
|
|
|
: theme.colors.button.primary.solid.hoverColor
|
|
|
|
|
} !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
|
background-color: ${theme.colors.button.disabled.bgColor} !important;
|
|
|
|
|
color: ${theme.colors.button.disabled.textColor} !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
border: ${
|
|
|
|
|
buttonVariant === ButtonVariantTypes.OUTLINE
|
|
|
|
|
? buttonStyle === ButtonStyleTypes.WARNING
|
|
|
|
|
? `1px solid ${theme.colors.button.warning.outline.borderColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.DANGER
|
|
|
|
|
? `1px solid ${theme.colors.button.danger.outline.borderColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.INFO
|
|
|
|
|
? `1px solid ${theme.colors.button.info.outline.borderColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.SECONDARY
|
|
|
|
|
? `1px solid ${theme.colors.button.secondary.outline.borderColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.CUSTOM
|
|
|
|
|
? `1px solid ${getCustomBorderColor(
|
|
|
|
|
theme,
|
|
|
|
|
prevButtonStyle,
|
|
|
|
|
buttonVariant,
|
|
|
|
|
buttonColor,
|
|
|
|
|
)}`
|
|
|
|
|
: `1px solid ${theme.colors.button.primary.outline.borderColor}`
|
|
|
|
|
: "none"
|
|
|
|
|
} !important;
|
|
|
|
|
|
|
|
|
|
& > span {
|
|
|
|
|
max-height: 100%;
|
2020-01-20 08:07:00 +00:00
|
|
|
max-width: 99%;
|
2020-12-07 07:18:53 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
|
-webkit-box-orient: vertical;
|
2021-08-16 12:00:11 +00:00
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
color: ${
|
|
|
|
|
buttonVariant === ButtonVariantTypes.SOLID
|
|
|
|
|
? buttonStyle === ButtonStyleTypes.CUSTOM
|
|
|
|
|
? getCustomTextColor(theme, buttonColor, prevButtonStyle)
|
|
|
|
|
: `${theme.colors.button.primary.solid.textColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.WARNING
|
|
|
|
|
? `${theme.colors.button.warning.outline.textColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.DANGER
|
|
|
|
|
? `${theme.colors.button.danger.outline.textColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.INFO
|
|
|
|
|
? `${theme.colors.button.info.outline.textColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.SECONDARY
|
|
|
|
|
? `${theme.colors.button.secondary.outline.textColor}`
|
|
|
|
|
: buttonStyle === ButtonStyleTypes.CUSTOM
|
|
|
|
|
? getCustomBackgroundColor(
|
|
|
|
|
theme,
|
|
|
|
|
prevButtonStyle,
|
|
|
|
|
ButtonVariantTypes.SOLID,
|
|
|
|
|
buttonColor,
|
|
|
|
|
)
|
|
|
|
|
: `${theme.colors.button.primary.outline.textColor}`
|
|
|
|
|
} !important;
|
2019-10-21 15:12:45 +00:00
|
|
|
}
|
2021-08-24 13:53:15 +00:00
|
|
|
`}
|
2020-08-10 06:26:41 +00:00
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
`;
|
2019-10-21 15:12:45 +00:00
|
|
|
|
|
|
|
|
type ButtonStyleProps = {
|
2021-08-24 13:53:15 +00:00
|
|
|
buttonColor?: string;
|
|
|
|
|
buttonStyle?: ButtonStyle;
|
|
|
|
|
prevButtonStyle?: ButtonStyle;
|
|
|
|
|
buttonVariant?: ButtonVariant;
|
|
|
|
|
boxShadow?: ButtonBoxShadow;
|
|
|
|
|
boxShadowColor?: string;
|
|
|
|
|
borderRadius?: ButtonBorderRadius;
|
|
|
|
|
iconName?: IconName;
|
|
|
|
|
iconAlign?: Alignment;
|
2019-10-21 15:12:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// To be used in any other part of the app
|
2021-04-28 10:28:39 +00:00
|
|
|
export function BaseButton(props: IButtonProps & ButtonStyleProps) {
|
2021-08-24 13:53:15 +00:00
|
|
|
const {
|
|
|
|
|
borderRadius,
|
|
|
|
|
boxShadow,
|
|
|
|
|
boxShadowColor,
|
|
|
|
|
buttonColor,
|
|
|
|
|
buttonStyle,
|
|
|
|
|
buttonVariant,
|
|
|
|
|
className,
|
|
|
|
|
disabled,
|
|
|
|
|
icon,
|
|
|
|
|
iconAlign,
|
|
|
|
|
iconName,
|
|
|
|
|
loading,
|
|
|
|
|
onClick,
|
|
|
|
|
prevButtonStyle,
|
|
|
|
|
rightIcon,
|
|
|
|
|
text,
|
|
|
|
|
} = props;
|
|
|
|
|
|
|
|
|
|
if (iconAlign === Alignment.RIGHT) {
|
|
|
|
|
return (
|
|
|
|
|
<StyledButton
|
|
|
|
|
alignText={iconName ? Alignment.LEFT : Alignment.CENTER}
|
|
|
|
|
borderRadius={borderRadius}
|
|
|
|
|
boxShadow={boxShadow}
|
|
|
|
|
boxShadowColor={boxShadowColor}
|
|
|
|
|
buttonColor={buttonColor}
|
|
|
|
|
buttonStyle={buttonStyle}
|
|
|
|
|
buttonVariant={buttonVariant}
|
|
|
|
|
className={className}
|
|
|
|
|
disabled={disabled}
|
|
|
|
|
fill
|
|
|
|
|
icon={icon}
|
|
|
|
|
loading={loading}
|
|
|
|
|
onClick={onClick}
|
|
|
|
|
prevButtonStyle={prevButtonStyle}
|
|
|
|
|
rightIcon={iconName || rightIcon}
|
|
|
|
|
text={text}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<StyledButton
|
|
|
|
|
alignText={iconName ? Alignment.RIGHT : Alignment.CENTER}
|
|
|
|
|
borderRadius={borderRadius}
|
|
|
|
|
boxShadow={boxShadow}
|
|
|
|
|
boxShadowColor={boxShadowColor}
|
|
|
|
|
buttonColor={buttonColor}
|
|
|
|
|
buttonStyle={buttonStyle}
|
|
|
|
|
buttonVariant={buttonVariant}
|
|
|
|
|
className={className}
|
|
|
|
|
disabled={disabled}
|
|
|
|
|
fill
|
|
|
|
|
icon={iconName || icon}
|
|
|
|
|
loading={loading}
|
|
|
|
|
onClick={onClick}
|
|
|
|
|
prevButtonStyle={prevButtonStyle}
|
|
|
|
|
rightIcon={rightIcon}
|
|
|
|
|
text={text}
|
|
|
|
|
/>
|
|
|
|
|
);
|
2021-04-28 10:28:39 +00:00
|
|
|
}
|
2019-10-21 15:12:45 +00:00
|
|
|
|
|
|
|
|
BaseButton.defaultProps = {
|
2021-08-24 13:53:15 +00:00
|
|
|
buttonStyle: "SECONDARY",
|
|
|
|
|
buttonVariant: "SOLID",
|
Property Pane Controls
- Fixes #121, #122, #123, #124, #90, #46, #65, #100, #101, #68, #102
2019-10-24 05:24:45 +00:00
|
|
|
disabled: false,
|
2019-10-21 15:12:45 +00:00
|
|
|
text: "Button Text",
|
|
|
|
|
minimal: true,
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-06 09:45:21 +00:00
|
|
|
export enum ButtonType {
|
|
|
|
|
SUBMIT = "submit",
|
|
|
|
|
RESET = "reset",
|
|
|
|
|
BUTTON = "button",
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-12 13:01:19 +00:00
|
|
|
interface RecaptchaProps {
|
|
|
|
|
googleRecaptchaKey?: string;
|
|
|
|
|
clickWithRecaptcha: (token: string) => void;
|
2021-08-03 13:36:03 +00:00
|
|
|
handleRecaptchaV2Loading?: (isLoading: boolean) => void;
|
2021-07-08 12:02:08 +00:00
|
|
|
recaptchaV2?: boolean;
|
2020-10-12 13:01:19 +00:00
|
|
|
}
|
|
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
interface ButtonComponentProps extends ComponentProps {
|
2020-01-03 13:40:31 +00:00
|
|
|
text?: string;
|
2021-08-24 13:53:15 +00:00
|
|
|
icon?: IconName | MaybeElement;
|
2021-08-17 11:26:05 +00:00
|
|
|
tooltip?: string;
|
2019-10-21 15:12:45 +00:00
|
|
|
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
|
2021-08-24 13:53:15 +00:00
|
|
|
isDisabled?: boolean;
|
2019-10-31 05:28:11 +00:00
|
|
|
buttonStyle?: ButtonStyle;
|
2021-08-24 13:53:15 +00:00
|
|
|
prevButtonStyle?: ButtonStyle;
|
2019-12-03 04:41:10 +00:00
|
|
|
isLoading: boolean;
|
2020-02-12 08:23:50 +00:00
|
|
|
rightIcon?: IconName | MaybeElement;
|
2020-03-06 09:45:21 +00:00
|
|
|
type: ButtonType;
|
2021-08-24 13:53:15 +00:00
|
|
|
buttonColor?: string;
|
|
|
|
|
buttonVariant?: ButtonVariant;
|
|
|
|
|
borderRadius?: ButtonBorderRadius;
|
|
|
|
|
boxShadow?: ButtonBoxShadow;
|
|
|
|
|
boxShadowColor?: string;
|
|
|
|
|
iconName?: IconName;
|
|
|
|
|
iconAlign?: Alignment;
|
2019-10-21 15:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
2021-07-08 12:02:08 +00:00
|
|
|
function RecaptchaV2Component(
|
2020-10-12 13:01:19 +00:00
|
|
|
props: {
|
|
|
|
|
children: any;
|
|
|
|
|
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
|
2021-07-08 12:02:08 +00:00
|
|
|
recaptchaV2?: boolean;
|
|
|
|
|
handleError: (event: React.MouseEvent<HTMLElement>, error: string) => void;
|
2020-10-12 13:01:19 +00:00
|
|
|
} & RecaptchaProps,
|
2021-04-28 10:28:39 +00:00
|
|
|
) {
|
2021-07-08 12:02:08 +00:00
|
|
|
const recaptchaRef = useRef<ReCAPTCHA>(null);
|
|
|
|
|
const [isInvalidKey, setInvalidKey] = useState(false);
|
2021-08-03 13:36:03 +00:00
|
|
|
const handleRecaptchaLoading = (isloading: boolean) => {
|
|
|
|
|
props.handleRecaptchaV2Loading && props.handleRecaptchaV2Loading(isloading);
|
|
|
|
|
};
|
2021-07-08 12:02:08 +00:00
|
|
|
const handleBtnClick = async (event: React.MouseEvent<HTMLElement>) => {
|
|
|
|
|
if (isInvalidKey) {
|
|
|
|
|
// Handle incorrent google recaptcha site key
|
|
|
|
|
props.handleError(event, createMessage(GOOGLE_RECAPTCHA_KEY_ERROR));
|
|
|
|
|
} else {
|
2021-08-03 13:36:03 +00:00
|
|
|
handleRecaptchaLoading(true);
|
2021-07-08 12:02:08 +00:00
|
|
|
try {
|
2021-08-03 13:36:03 +00:00
|
|
|
await recaptchaRef?.current?.reset();
|
2021-07-08 12:02:08 +00:00
|
|
|
const token = await recaptchaRef?.current?.executeAsync();
|
|
|
|
|
if (token) {
|
|
|
|
|
props.clickWithRecaptcha(token);
|
|
|
|
|
} else {
|
|
|
|
|
// Handle incorrent google recaptcha site key
|
|
|
|
|
props.handleError(event, createMessage(GOOGLE_RECAPTCHA_KEY_ERROR));
|
|
|
|
|
}
|
2021-08-03 13:36:03 +00:00
|
|
|
handleRecaptchaLoading(false);
|
2021-07-08 12:02:08 +00:00
|
|
|
} catch (err) {
|
2021-08-03 13:36:03 +00:00
|
|
|
handleRecaptchaLoading(false);
|
2021-07-08 12:02:08 +00:00
|
|
|
// Handle error due to google recaptcha key of different domain
|
|
|
|
|
props.handleError(event, createMessage(GOOGLE_RECAPTCHA_DOMAIN_ERROR));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
return (
|
|
|
|
|
<RecaptchaWrapper onClick={handleBtnClick}>
|
|
|
|
|
{props.children}
|
|
|
|
|
<ReCAPTCHA
|
|
|
|
|
onErrored={() => setInvalidKey(true)}
|
|
|
|
|
ref={recaptchaRef}
|
|
|
|
|
sitekey={props.googleRecaptchaKey || ""}
|
|
|
|
|
size="invisible"
|
|
|
|
|
/>
|
|
|
|
|
</RecaptchaWrapper>
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-05-20 19:28:02 +00:00
|
|
|
|
2021-07-08 12:02:08 +00:00
|
|
|
function RecaptchaV3Component(
|
|
|
|
|
props: {
|
|
|
|
|
children: any;
|
|
|
|
|
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
|
|
|
|
|
recaptchaV2?: boolean;
|
|
|
|
|
handleError: (event: React.MouseEvent<HTMLElement>, error: string) => void;
|
|
|
|
|
} & RecaptchaProps,
|
|
|
|
|
) {
|
2021-05-20 19:28:02 +00:00
|
|
|
// Check if a string is a valid JSON string
|
|
|
|
|
const checkValidJson = (inputString: string): boolean => {
|
2021-08-09 12:18:58 +00:00
|
|
|
return !inputString.includes('"');
|
2021-05-20 19:28:02 +00:00
|
|
|
};
|
|
|
|
|
|
2021-07-08 12:02:08 +00:00
|
|
|
const handleBtnClick = (event: React.MouseEvent<HTMLElement>) => {
|
|
|
|
|
if (status === ScriptStatus.READY) {
|
|
|
|
|
(window as any).grecaptcha.ready(() => {
|
|
|
|
|
try {
|
|
|
|
|
(window as any).grecaptcha
|
|
|
|
|
.execute(props.googleRecaptchaKey, {
|
|
|
|
|
action: "submit",
|
|
|
|
|
})
|
|
|
|
|
.then((token: any) => {
|
|
|
|
|
props.clickWithRecaptcha(token);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
// Handle incorrent google recaptcha site key
|
|
|
|
|
props.handleError(
|
|
|
|
|
event,
|
|
|
|
|
createMessage(GOOGLE_RECAPTCHA_KEY_ERROR),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
} catch (err) {
|
|
|
|
|
// Handle error due to google recaptcha key of different domain
|
|
|
|
|
props.handleError(
|
|
|
|
|
event,
|
|
|
|
|
createMessage(GOOGLE_RECAPTCHA_DOMAIN_ERROR),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-20 19:28:02 +00:00
|
|
|
let validGoogleRecaptchaKey = props.googleRecaptchaKey;
|
2021-08-09 12:18:58 +00:00
|
|
|
if (validGoogleRecaptchaKey && !checkValidJson(validGoogleRecaptchaKey)) {
|
2021-05-20 19:28:02 +00:00
|
|
|
validGoogleRecaptchaKey = undefined;
|
|
|
|
|
}
|
2020-10-12 13:01:19 +00:00
|
|
|
const status = useScript(
|
2021-05-20 19:28:02 +00:00
|
|
|
`https://www.google.com/recaptcha/api.js?render=${validGoogleRecaptchaKey}`,
|
2020-10-12 13:01:19 +00:00
|
|
|
);
|
2021-07-08 12:02:08 +00:00
|
|
|
return <div onClick={handleBtnClick}>{props.children}</div>;
|
2021-04-28 10:28:39 +00:00
|
|
|
}
|
2020-10-12 13:01:19 +00:00
|
|
|
|
2021-04-28 10:28:39 +00:00
|
|
|
function BtnWrapper(
|
2020-10-12 13:01:19 +00:00
|
|
|
props: {
|
|
|
|
|
children: any;
|
|
|
|
|
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
|
|
|
|
|
} & RecaptchaProps,
|
2021-04-28 10:28:39 +00:00
|
|
|
) {
|
2020-10-12 13:01:19 +00:00
|
|
|
if (!props.googleRecaptchaKey)
|
|
|
|
|
return <div onClick={props.onClick}>{props.children}</div>;
|
2021-07-08 12:02:08 +00:00
|
|
|
else {
|
|
|
|
|
const handleError = (
|
|
|
|
|
event: React.MouseEvent<HTMLElement>,
|
|
|
|
|
error: string,
|
|
|
|
|
) => {
|
|
|
|
|
Toaster.show({
|
|
|
|
|
text: error,
|
|
|
|
|
variant: Variant.danger,
|
|
|
|
|
});
|
|
|
|
|
props.onClick && props.onClick(event);
|
|
|
|
|
};
|
|
|
|
|
if (props.recaptchaV2) {
|
|
|
|
|
return <RecaptchaV2Component {...props} handleError={handleError} />;
|
|
|
|
|
} else {
|
|
|
|
|
return <RecaptchaV3Component {...props} handleError={handleError} />;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-28 10:28:39 +00:00
|
|
|
}
|
2020-10-12 13:01:19 +00:00
|
|
|
|
2019-10-21 15:12:45 +00:00
|
|
|
// To be used with the canvas
|
2021-08-24 13:53:15 +00:00
|
|
|
function ButtonComponent(props: ButtonComponentProps & RecaptchaProps) {
|
2021-08-17 11:26:05 +00:00
|
|
|
const btnWrapper = (
|
2020-10-12 13:01:19 +00:00
|
|
|
<BtnWrapper
|
|
|
|
|
clickWithRecaptcha={props.clickWithRecaptcha}
|
2021-04-28 10:28:39 +00:00
|
|
|
googleRecaptchaKey={props.googleRecaptchaKey}
|
2021-08-03 13:36:03 +00:00
|
|
|
handleRecaptchaV2Loading={props.handleRecaptchaV2Loading}
|
2019-11-13 07:00:25 +00:00
|
|
|
onClick={props.onClick}
|
2021-07-08 12:02:08 +00:00
|
|
|
recaptchaV2={props.recaptchaV2}
|
2020-10-12 13:01:19 +00:00
|
|
|
>
|
2021-08-24 13:53:15 +00:00
|
|
|
<ButtonContainer>
|
|
|
|
|
<BaseButton
|
|
|
|
|
borderRadius={props.borderRadius}
|
|
|
|
|
boxShadow={props.boxShadow}
|
|
|
|
|
boxShadowColor={props.boxShadowColor}
|
|
|
|
|
buttonColor={props.buttonColor}
|
|
|
|
|
buttonStyle={props.buttonStyle}
|
|
|
|
|
buttonVariant={props.buttonVariant}
|
|
|
|
|
disabled={props.isDisabled}
|
|
|
|
|
icon={props.icon}
|
|
|
|
|
iconAlign={props.iconAlign}
|
|
|
|
|
iconName={props.iconName}
|
|
|
|
|
loading={props.isLoading}
|
|
|
|
|
prevButtonStyle={props.prevButtonStyle}
|
|
|
|
|
rightIcon={props.rightIcon}
|
|
|
|
|
text={props.text}
|
|
|
|
|
type={props.type}
|
|
|
|
|
/>
|
|
|
|
|
</ButtonContainer>
|
2020-10-12 13:01:19 +00:00
|
|
|
</BtnWrapper>
|
2019-10-21 15:12:45 +00:00
|
|
|
);
|
2021-08-17 11:26:05 +00:00
|
|
|
if (props.tooltip) {
|
|
|
|
|
return (
|
|
|
|
|
<ToolTipWrapper>
|
|
|
|
|
<Tooltip
|
|
|
|
|
content={<ToolTipContent>{props.tooltip}</ToolTipContent>}
|
|
|
|
|
hoverOpenDelay={200}
|
|
|
|
|
position={Position.TOP}
|
|
|
|
|
>
|
|
|
|
|
{btnWrapper}
|
|
|
|
|
</Tooltip>
|
|
|
|
|
</ToolTipWrapper>
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
return btnWrapper;
|
|
|
|
|
}
|
2021-04-28 10:28:39 +00:00
|
|
|
}
|
2019-10-21 15:12:45 +00:00
|
|
|
|
2021-08-24 13:53:15 +00:00
|
|
|
export default ButtonComponent;
|