import React, { useRef, useState } from "react";
import styled from "styled-components";
import {
IButtonProps,
MaybeElement,
Button,
Alignment,
Position,
} from "@blueprintjs/core";
import { IconName } from "@blueprintjs/icons";
import Tooltip from "components/ads/Tooltip";
import { ComponentProps } from "widgets/BaseComponent";
import { useScript, ScriptStatus } from "utils/hooks/useScript";
import {
GOOGLE_RECAPTCHA_KEY_ERROR,
GOOGLE_RECAPTCHA_DOMAIN_ERROR,
createMessage,
} from "constants/messages";
import { ThemeProp, Variant } from "components/ads/common";
import { Toaster } from "components/ads/Toast";
import ReCAPTCHA from "react-google-recaptcha";
import { Colors } from "../../../constants/Colors";
import _ from "lodash";
import {
ButtonBoxShadow,
ButtonBoxShadowTypes,
ButtonBorderRadius,
ButtonBorderRadiusTypes,
ButtonVariant,
ButtonVariantTypes,
} from "components/constants";
import {
getCustomBackgroundColor,
getCustomBorderColor,
getCustomHoverColor,
getCustomTextColor,
} from "widgets/WidgetUtils";
const RecaptchaWrapper = styled.div`
position: relative;
.grecaptcha-badge {
visibility: hidden;
}
`;
const ToolTipWrapper = styled.div`
height: 100%;
&& .bp3-popover-target {
height: 100%;
& > div {
height: 100%;
}
}
`;
const ButtonContainer = styled.div`
display: flex;
align-items: center;
justify-content: center;
height: 100%;
& > button {
height: 100%;
}
`;
const StyledButton = styled((props) => (
))`
height: 100%;
background-image: none !important;
font-weight: ${(props) => props.theme.fontWeights[2]};
outline: none;
padding: 0px 10px;
${({ buttonColor, buttonVariant, theme }) => `
&:enabled {
background: ${
getCustomBackgroundColor(buttonVariant, buttonColor) !== "none"
? getCustomBackgroundColor(buttonVariant, buttonColor)
: buttonVariant === ButtonVariantTypes.PRIMARY
? theme.colors.button.primary.solid.bgColor
: "none"
} !important;
}
&:hover:enabled, &:active:enabled {
background: ${
getCustomHoverColor(theme, buttonVariant, buttonColor) !== "none"
? getCustomHoverColor(theme, buttonVariant, buttonColor)
: buttonVariant === ButtonVariantTypes.SECONDARY
? theme.colors.button.primary.outline.hoverColor
: buttonVariant === ButtonVariantTypes.TERTIARY
? 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: ${
getCustomBorderColor(buttonVariant, buttonColor) !== "none"
? `1px solid ${getCustomBorderColor(buttonVariant, buttonColor)}`
: buttonVariant === ButtonVariantTypes.SECONDARY
? `1px solid ${theme.colors.button.primary.outline.borderColor}`
: "none"
} !important;
& > span {
max-height: 100%;
max-width: 99%;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
color: ${
buttonVariant === ButtonVariantTypes.PRIMARY
? getCustomTextColor(theme, buttonColor)
: getCustomBackgroundColor(ButtonVariantTypes.PRIMARY, buttonColor)
} !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;
`;
type ButtonStyleProps = {
buttonColor?: string;
buttonVariant?: ButtonVariant;
boxShadow?: ButtonBoxShadow;
boxShadowColor?: string;
borderRadius?: ButtonBorderRadius;
iconName?: IconName;
iconAlign?: Alignment;
};
// To be used in any other part of the app
export function BaseButton(props: IButtonProps & ButtonStyleProps) {
const {
borderRadius,
boxShadow,
boxShadowColor,
buttonColor,
buttonVariant,
className,
disabled,
icon,
iconAlign,
iconName,
loading,
onClick,
rightIcon,
text,
} = props;
if (iconAlign === Alignment.RIGHT) {
return (
);
}
return (
);
}
BaseButton.defaultProps = {
buttonColor: Colors.GREEN,
buttonVariant: ButtonVariantTypes.PRIMARY,
disabled: false,
text: "Button Text",
minimal: true,
};
export enum ButtonType {
SUBMIT = "submit",
RESET = "reset",
BUTTON = "button",
}
interface RecaptchaProps {
googleRecaptchaKey?: string;
clickWithRecaptcha: (token: string) => void;
handleRecaptchaV2Loading?: (isLoading: boolean) => void;
recaptchaV2?: boolean;
}
interface ButtonComponentProps extends ComponentProps {
text?: string;
icon?: IconName | MaybeElement;
tooltip?: string;
onClick?: (event: React.MouseEvent) => void;
isDisabled?: boolean;
isLoading: boolean;
rightIcon?: IconName | MaybeElement;
type: ButtonType;
buttonColor?: string;
buttonVariant?: ButtonVariant;
borderRadius?: ButtonBorderRadius;
boxShadow?: ButtonBoxShadow;
boxShadowColor?: string;
iconName?: IconName;
iconAlign?: Alignment;
}
function RecaptchaV2Component(
props: {
children: any;
onClick?: (event: React.MouseEvent) => void;
recaptchaV2?: boolean;
handleError: (event: React.MouseEvent, error: string) => void;
} & RecaptchaProps,
) {
const recaptchaRef = useRef(null);
const [isInvalidKey, setInvalidKey] = useState(false);
const handleRecaptchaLoading = (isloading: boolean) => {
props.handleRecaptchaV2Loading && props.handleRecaptchaV2Loading(isloading);
};
const handleBtnClick = async (event: React.MouseEvent) => {
if (isInvalidKey) {
// Handle incorrent google recaptcha site key
props.handleError(event, createMessage(GOOGLE_RECAPTCHA_KEY_ERROR));
} else {
handleRecaptchaLoading(true);
try {
await recaptchaRef?.current?.reset();
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));
}
handleRecaptchaLoading(false);
} catch (err) {
handleRecaptchaLoading(false);
// Handle error due to google recaptcha key of different domain
props.handleError(event, createMessage(GOOGLE_RECAPTCHA_DOMAIN_ERROR));
}
}
};
return (
{props.children}
setInvalidKey(true)}
ref={recaptchaRef}
sitekey={props.googleRecaptchaKey || ""}
size="invisible"
/>
);
}
function RecaptchaV3Component(
props: {
children: any;
onClick?: (event: React.MouseEvent) => void;
recaptchaV2?: boolean;
handleError: (event: React.MouseEvent, error: string) => void;
} & RecaptchaProps,
) {
// Check if a string is a valid JSON string
const checkValidJson = (inputString: string): boolean => {
return !inputString.includes('"');
};
const handleBtnClick = (event: React.MouseEvent) => {
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),
);
}
});
}
};
let validGoogleRecaptchaKey = props.googleRecaptchaKey;
if (validGoogleRecaptchaKey && !checkValidJson(validGoogleRecaptchaKey)) {
validGoogleRecaptchaKey = undefined;
}
const status = useScript(
`https://www.google.com/recaptcha/api.js?render=${validGoogleRecaptchaKey}`,
);
return {props.children}
;
}
function BtnWrapper(
props: {
children: any;
onClick?: (event: React.MouseEvent) => void;
} & RecaptchaProps,
) {
if (!props.googleRecaptchaKey)
return {props.children}
;
else {
const handleError = (
event: React.MouseEvent,
error: string,
) => {
Toaster.show({
text: error,
variant: Variant.danger,
});
props.onClick && props.onClick(event);
};
if (props.recaptchaV2) {
return ;
} else {
return ;
}
}
}
// To be used with the canvas
function ButtonComponent(props: ButtonComponentProps & RecaptchaProps) {
const btnWrapper = (
);
if (props.tooltip) {
return (
{btnWrapper}
);
} else {
return btnWrapper;
}
}
export default ButtonComponent;