import styled from '@emotion/styled'; import PropTypes from 'prop-types'; import { useState } from 'react'; import * as React from 'react'; import { Theme } from '../lib/theme'; interface RadioButtonWrapperProps { disabled?: boolean; isFocused?: boolean; checked?: boolean; hideRadioButton?: boolean; highlighted?: boolean; } const RadioButtonWrapper = styled.div< RadioButtonWrapperProps & React.HTMLAttributes< HTMLDivElement > >` position: relative; display: ${ ( props ) => ( props.hidden ? 'none' : 'block' ) }; border-radius: 3px; box-sizing: border-box; width: 100%; outline: ${ getOutline }; opacity: ${ ( props ) => ( props.disabled && props.highlighted ? '0.7' : '1' ) }; pointer-events: ${ ( props ) => ( props.disabled && props.highlighted ? 'none' : 'auto' ) }; ${ ( props ) => ! props.hideRadioButton && ` ::before { display: ${ props.hidden ? 'none' : 'block' }; width: 100%; height: 100%; position: absolute; top: 0; left: 0; content: ''; border: ${ props.checked || props.highlighted ? '1px solid ' + getBorderColor( props ) : 'none' }; border-bottom: 1px solid ${ getBorderColor( props ) }; box-sizing: border-box; border-radius: ${ props.checked || props.highlighted ? '3px' : 0 }; border-width: ${ props.checked && props.highlighted ? '2px' : '1px' }; .rtl & { right: 0; left: auto; } } :hover::before { border: 3px solid ${ props.theme.colors.highlight }; border-width: ${ ! props.checked && props.highlighted ? '1px' : '2px' }; border-radius: 3px; } ` } .payment-logos { display: none; @media ( ${ ( props ) => props.theme.breakpoints.smallPhoneUp } ) { display: flex; filter: grayscale( ${ getGrayscaleValue } ); } } :hover .payment-logos { @media ( ${ ( props ) => props.theme.breakpoints.smallPhoneUp } ) { filter: grayscale( 0 ); } } .credit-card__logos { ${ ( props ) => ( props.checked ? 'display:flex;' : 'display:none;' ) } @media ( ${ ( props ) => props.theme.breakpoints.smallPhoneUp } ) { display: flex; filter: grayscale( ${ getGrayscaleValue } ); } } svg { filter: grayscale( ${ getGrayscaleValue } ); } :hover svg { filter: grayscale( 0 ); } ${ handleWrapperDisabled }; `; const Radio = styled.input` position: absolute; opacity: 0 !important; clear: none; cursor: pointer; display: inline-block; line-height: 0; height: 16px; margin: 2px 0 0; float: left; outline: 0; padding: 0; text-align: center; vertical-align: middle; width: 16px; min-width: 16px; appearance: none; `; interface LabelProps { disabled?: boolean; checked?: boolean; hideRadioButton?: boolean; compact?: boolean; } /** * This is the label used by radio buttons. It includes a before/after which * are fake radio button dots whereas the actual radio button dots are hidden. */ const Label = styled.label< LabelProps & React.LabelHTMLAttributes< HTMLLabelElement > >` position: relative; padding: ${ ( props ) => { if ( props.compact ) { return '12px 12px 12px 43px'; } return props.hideRadioButton ? '16px 24px' : '16px 14px 16px 56px'; } }; border-radius: 3px; box-sizing: border-box; width: 100%; display: flex; flex-direction: column; gap: 10px; justify-content: center; align-items: flex-start; align-content: center; font-size: 14px; height: fit-content; min-height: 72px; .rtl & { padding: ${ ( props ) => { if ( props.compact ) { return '12px'; } return props.hideRadioButton ? '16px 24px' : '16px 56px 16px 14px'; } }; } :hover { cursor: pointer; } ::before { display: ${ ( props ) => ( props.hideRadioButton ? 'none' : 'block' ) }; width: 16px; height: 16px; content: ''; border: 1px solid ${ ( props ) => props.theme.colors.borderColor }; border-radius: 100%; top: 40%; left: ${ ( props ) => ( props.compact ? '16px' : '24px' ) }; position: absolute; background: ${ ( props ) => props.theme.colors.surface }; box-sizing: border-box; z-index: 2; .rtl & { right: ${ ( props ) => ( props.compact ? '8px' : '16px' ) }; left: auto; } } ::after { display: ${ ( props ) => ( props.hideRadioButton ? 'none' : 'block' ) }; width: 8px; height: 8px; content: ''; border-radius: 100%; margin-top: 4px; top: 40%; left: ${ ( props ) => ( props.compact ? '20px' : '28px' ) }; position: absolute; background: ${ getRadioColor }; box-sizing: border-box; z-index: 3; .rtl & { right: ${ ( props ) => ( props.compact ? '12px' : '20px' ) }; left: auto; } } @media ( ${ ( props ) => props.theme.breakpoints.smallPhoneUp } ) { flex-direction: row; align-items: center; justify-content: space-between; gap: 7px; } } ${ handleLabelDisabled }; `; const RadioButtonChildren = styled.div< RadioButtonWrapperProps & React.HTMLAttributes< HTMLDivElement > >` display: ${ ( props ) => ( props.checked ? 'block' : 'none' ) }; `; export default function RadioButton( { checked, name, value, onChange, children, label, disabled, hidden, id, ariaLabel, hideRadioButton, highlighted, compact, ...otherProps }: RadioButtonProps ) { const [ isFocused, changeFocus ] = useState( false ); return ( ); } interface RadioButtonProps { name: string; id: string; label: React.ReactNode; disabled?: boolean; hidden?: boolean; checked?: boolean; value: string; onChange?: () => void; ariaLabel?: string; children?: React.ReactNode; hideRadioButton?: boolean; highlighted?: boolean; compact?: boolean; } RadioButton.propTypes = { name: PropTypes.string.isRequired, id: PropTypes.string.isRequired, label: PropTypes.node.isRequired, disabled: PropTypes.bool, checked: PropTypes.bool, value: PropTypes.string.isRequired, onChange: PropTypes.func, ariaLabel: PropTypes.string, highlighted: PropTypes.bool, compact: PropTypes.bool, }; function handleWrapperDisabled( { disabled, checked }: { disabled?: boolean; checked?: boolean } ) { if ( ! disabled ) { return null; } const styles = ` svg, :hover svg { filter: grayscale( 100% ); opacity: 50%; } :hover::before { border-width: 1px; } `; if ( ! checked ) { return ( styles + ` :hover::before { border: none; border-bottom: 1px solid lightgray; border-radius: 0; } ` ); } return styles; } function handleLabelDisabled( { disabled }: { disabled?: boolean } ) { if ( ! disabled ) { return null; } return ` color: lightgray; font-style: italic; :hover { cursor: default; } ::before { border: 1px solid lightgray; background: lightgray; } ::after { background: white; } span { color: lightgray; } `; } function getBorderColor( { checked, theme }: { checked?: boolean; theme: Theme } ) { return checked ? theme.colors.highlight : theme.colors.borderColor; } function getRadioColor( { checked, theme }: { checked?: boolean; theme: Theme } ) { return checked ? theme.colors.highlight : theme.colors.surface; } function getGrayscaleValue( { checked }: { checked?: boolean } ) { return checked ? 0 : '100%'; } function getOutline( { isFocused, theme, hideRadioButton, }: { isFocused?: boolean; checked?: boolean; theme: Theme; hideRadioButton?: boolean; } ) { if ( isFocused && ! hideRadioButton ) { return theme.colors.outline + ' solid 2px'; } return '0'; }