cleave-meiso
v0.0.19
Published
[](https://badge.fury.io/js/cleave-zen) [](https://www.npmjs.com/package/cleave-zen) [
const creditCardType = document.querySelector('.creditcard-type')
creditcardInput.addEventListener('input', e => {
const value = e.target.value
creditcardInput.value = formatCreditCard(value)
creditCardType.innerHTML = getCreditCardType(value)
})ReactJS (hook)
import React, { useRef, useState } from 'react'
import { formatCreditCard, getCreditCardType } from 'cleave-zen'
const App = () => {
const inputRef = useRef(null)
const [value, setValue] = useState('')
const [type, setType] = useState('')
return (
<>
<input
ref={inputRef}
value={value}
onChange={e => {
const value = e.target.value
setValue(formatCreditCard(value))
setType(getCreditCardType(value))
}}
/>
<div>value: {value}</div>
<div>type: {type}</div>
</>
)
}TypeScript
This lib is written by TypeScript, so if you prefer to use it that way:
import { formatCreditCard, type FormatCreditCardOptions } from 'cleave-zen'
const options: FormatCreditCardOptions = { delimiter: '-' }
const value: string = formatCreditCard('5163000011112222', options)Track cursor (optional)
When you manually updating the input field with formatted value, the cursor moves to the end of the field, which can be super annoying when you typing or deleting letters inside the string content.
This library can fix this issue for you! Simply add registerCursorTracker for
the input field:
import { registerCursorTracker, DefaultCreditCardDelimiter } from 'cleave-zen'
registerCursorTracker({ input: creditCardInput, delimiter: DefaultCreditCardDelimiter }})And for ReactJS usage above:
import { useRef, useEffect } from 'react'
...
const inputRef = useRef(null)
useEffect(() => {
// registerCursorTracker itself returns an unregister destructor
// function so you can place it here for hook component unmount
return registerCursorTracker({ input: inputRef.current, delimiter: DefaultCreditCardDelimiter })
}, [])
...All other examples
See all examples in this repo
Documentation
TODO List
- [x] Create an example repo for individual lib usage case
- [ ] Create demo page for different type of formatting
- [ ] Review still related PRs and issues in the old cleave.js repo and implement it here
- [ ] Add unit tests
- [ ] Add docs comments for functions and usages
- [ ] Add more library integration usages in example repo
- [ ] Create legacy cleave.js phone formatter in a separate repo
