GithubHelp home page GithubHelp logo

ster / cleave-zen Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nosir/cleave-zen

0.0 0.0 0.0 305 KB

A simple library to help you format input text content

Home Page: https://nosir.github.io/cleave-zen

License: MIT License

TypeScript 100.00%

cleave-zen's Introduction

cleave-zen

npm version npm downloads Documents

A simple library to help you format input text content

Unlike its predecessor cleave.js, cleave-zen no longer binds to DOM input elements. It now functions as a versatile formatting library, suitable for use in Node.js, browsers, and easier integration with frameworks like React, Angular, and any other libraries.

Features

  • Credit card formatting
  • Numeral formatting
  • Date / Time formatting
  • Custom delimiter, prefix and blocks pattern
  • Non-intrusive: only providing the formatting methods

TL;DR Demo | Usage Examples

Install

npm install --save cleave-zen

You can use it on unpkg.com as a CDN version

Usage

Basic

You have two text fields to display credit card number and type

<input class="creditcard-input" type="text" />
<input class="creditcard-type" type="text" />

Now in your JavaScript

import { formatCreditCard, getCreditCardType } from 'cleave-zen'

const creditcardInput = document.querySelector('.creditcard-input')
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

  • 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

cleave-zen's People

Contributors

nosir avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.