Last active
March 21, 2023 20:53
-
-
Save amponce/fce09b7438eb3ac9899deb857b4ed6f4 to your computer and use it in GitHub Desktop.
CurrencyInput
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import styled from 'styled-components'; | |
const CurrencyInputWrapper = styled.div` | |
position: relative; | |
display: inline-block; | |
`; | |
const CurrencySymbol = styled.span` | |
position: absolute; | |
left: 2px; /* Adjust this value to move the symbol horizontally */ | |
top: 78%; | |
transform: translateY(-50%); | |
pointer-events: none; /* Make sure the input remains clickable */ | |
`; | |
const StyledVaNumberInput = Component => { | |
const WrappedComponent = ({ currency, ...props }) => { | |
if (!currency) { | |
return <Component {...props} />; | |
} | |
return ( | |
<CurrencyInputWrapper> | |
<CurrencySymbol>$</CurrencySymbol> | |
<Component {...props} /> | |
</CurrencyInputWrapper> | |
); | |
}; | |
// define prop types | |
WrappedComponent.propTypes = { | |
currency: PropTypes.bool, | |
}; | |
WrappedComponent.displayName = `withCurrency(${Component.displayName || | |
Component.name})`; | |
return WrappedComponent; | |
}; | |
export default StyledVaNumberInput; | |
// Implementation | |
import withCurrency from './shared/CurrencyInput'; | |
const CurrencyVaNumberInput = withCurrency(VaNumberInput); | |
<CurrencyVaNumberInput | |
id={`dependentAge-${i}`} | |
label={DEPENDENT_AGE_LABELS[i + 1]} | |
name={`dependentAge-${i}`} | |
onInput={({ target }) => updateDependents(target, i)} | |
value={dependent.dependentAge} | |
className="no-wrap input-size-1" | |
onBlur={event => handleBlur(event, i)} | |
error={errors[i]} | |
currency | |
required | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment