Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 31x 31x 31x 31x 31x 31x 31x 22x 22x 22x 22x 22x 22x 31x | import React, { useCallback, useMemo, Fragment, FunctionComponent } from 'react';
import { TranslatedString } from '../../locale';
import { FormField, TextInputIframeContainer } from '../../ui/form';
import { IconHelp, IconLock } from '../../ui/icon';
import { TooltipTrigger } from '../../ui/tooltip';
import { CreditCardCodeTooltip } from '../creditCard';
export interface HostedCreditCardCodeFieldProps {
appearFocused: boolean;
id: string;
name: string;
}
const HostedCreditCardCodeField: FunctionComponent<HostedCreditCardCodeFieldProps> = ({
appearFocused,
id,
name,
}) => {
const renderInput = useCallback(() => (<>
<TextInputIframeContainer
additionalClassName="has-icon"
appearFocused={ appearFocused }
id={ id }
/>
<IconLock />
</>), [id, appearFocused]);
const labelContent = useMemo(() => (
<Fragment>
<TranslatedString id="payment.credit_card_cvv_label" />
<TooltipTrigger
placement="top-start"
tooltip={ <CreditCardCodeTooltip /> }
>
<span className="has-tip">
<IconHelp />
</span>
</TooltipTrigger>
</Fragment>
), []);
return (
<FormField
additionalClassName="form-ccFields-field--ccCvv"
input={ renderInput }
labelContent={ labelContent }
name={ name }
/>
);
};
export default HostedCreditCardCodeField;
|