Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { keyframes } from '@emotion/react';
import styled from '@emotion/styled';
import { useI18n } from '@wordpress/react-i18n';
import { useEffect } from 'react';
import joinClasses from '../lib/join-classes';
import Button from './button';
import { CloseIcon } from './shared-icons';
import type { MouseEvent } from 'react';
/* eslint-disable @typescript-eslint/no-use-before-define */
export default function CheckoutModal( {
className,
title,
copy,
primaryAction,
secondaryAction,
cancelAction = noop,
closeModal,
isVisible,
primaryButtonCTA,
secondaryButtonCTA,
}: CheckoutModalProps ) {
const { __ } = useI18n();
useModalScreen( isVisible, closeModal );
if ( ! isVisible ) {
return null;
}
const titleId = `${ String( title )
.toLowerCase()
.replace( /[^a-z0-9_-]/g, '-' ) }-modal-title`;
return (
<CheckoutModalWrapper
role="dialog"
aria-labelledby={ titleId }
className={ joinClasses( [ className, 'checkout-modal' ] ) }
onClick={ () => handleActionAndClose( cancelAction, closeModal ) }
>
<CheckoutModalContent className="checkout-modal__content" onClick={ preventClose }>
<Button
className="checkout-modal__button--close"
onClick={ () => {
handleActionAndClose( cancelAction, closeModal );
} }
>
<CloseIcon />
</Button>
<CheckoutModalTitle id={ titleId } className="checkout-modal__title">
{ title }
</CheckoutModalTitle>
<CheckoutModalCopy className="checkout-modal__copy">{ copy }</CheckoutModalCopy>
</CheckoutModalContent>
<CheckoutModalActions>
{ secondaryAction && secondaryButtonCTA && (
<Button
className="checkout-modal__button"
onClick={ () => {
handleActionAndClose( secondaryAction, closeModal );
} }
>
{ secondaryButtonCTA }
</Button>
) }
<Button
className="checkout-modal__button"
buttonType="primary"
onClick={ () => {
handleActionAndClose( primaryAction, closeModal );
} }
>
{ primaryButtonCTA || __( 'Continue' ) }
</Button>
</CheckoutModalActions>
</CheckoutModalWrapper>
);
}
type Callback = () => void;
interface CheckoutModalProps {
closeModal: Callback;
title: React.ReactNode;
copy: React.ReactNode;
primaryAction: Callback;
secondaryAction?: Callback;
cancelAction?: Callback;
isVisible: boolean;
className?: string;
primaryButtonCTA?: React.ReactNode;
secondaryButtonCTA?: React.ReactNode;
}
// eslint-disable-next-line @typescript-eslint/no-empty-function
function noop(): void {}
const fadeIn = keyframes`
from {
opacity: 0;
}
to {
opacity: 1;
}
`;
const animateIn = keyframes`
from {
opacity: 0;
transform: scale(1.05);
}
to {
opacity: 1;
transform: scale(1);
}
`;
const CheckoutModalWrapper = styled.div`
position: fixed;
top: 0;
left: 0;
background: ${ ( props ) => props.theme.colors.modalBackground };
width: 100%;
height: 100vh;
z-index: 999;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
animation: ${ fadeIn } 0.2s ease-out;
animation-fill-mode: backwards;
box-sizing: border-box;
margin: 0;
padding: 0;
.rtl & {
right: 0;
left: auto;
}
`;
const CheckoutModalContent = styled.div`
background: ${ ( props ) => props.theme.colors.surface };
display: block;
position: relative;
width: 530px;
max-width: 80%;
border: 1px solid ${ ( props ) => props.theme.colors.borderColorLight };
border-bottom: none;
padding: 3em;
animation: ${ animateIn } 0.2s 0.1s ease-out;
animation-fill-mode: backwards;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
& > .checkout-modal__button--close {
position: absolute;
right: 13px;
top: 13px;
cursor: pointer;
padding: 0;
}
}
`;
const CheckoutModalTitle = styled.h1`
margin: 0 0 16px;
font-weight: ${ ( props ) => props.theme.weights.bold };
font-size: 20px;
color: ${ ( props ) => props.theme.colors.textColor };
line-height: 1.3;
word-wrap: break-word;
`;
const CheckoutModalCopy = styled.p`
margin: 0;
color: ${ ( props ) => props.theme.colors.textColor };
font-size: 16px;
word-wrap: break-word;
`;
const CheckoutModalActions = styled.div`
display: flex;
justify-content: flex-end;
background: ${ ( props ) => props.theme.colors.surface };
gap: 8px;
width: 530px;
max-width: 80%;
padding: 1em 3em;
border: 1px solid ${ ( props ) => props.theme.colors.borderColorLight };
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
& > .checkout-modal__button {
font-size: 14px;
padding: 10px 24px;
&:not( .is-status-primary ) {
border: 1px solid ${ ( props ) => props.theme.colors.borderColorLight };
}
}
`;
function handleActionAndClose( action: Callback, closeModal: Callback ) {
action();
closeModal();
}
function preventClose( event: MouseEvent< HTMLDivElement > ) {
event.stopPropagation();
}
function useModalScreen( isVisible: boolean, closeModal: Callback ) {
useEffect( () => {
document.body.style.cssText = isVisible ? 'overflow: hidden' : '';
const keyPressHandler = makeHandleKeyPress( closeModal );
if ( isVisible ) {
document.addEventListener( 'keydown', keyPressHandler, false );
}
return () => {
document.body.style.cssText = '';
document.removeEventListener( 'keydown', keyPressHandler, false );
};
}, [ isVisible, closeModal ] );
}
function makeHandleKeyPress( closeModal: Callback ) {
const escapeKey = 27;
return ( key: { keyCode: number } ) => {
if ( key.keyCode === escapeKey ) {
closeModal();
}
};
}