1.0.3 • Published 12 days ago

react-weblineindia-currency-input v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
12 days ago

ReactJS - Currency Input

Currency Input component built in ReactJS, used for currency value input field for all countries. You can change prefix and suffix for input. Can also handle negative and positive values depending on requirement.

Table of contents

Browser Support

ChromeFirefoxSafariEdgeIE
83.0 ✔77.0 ✔13.1.1 ✔83.0 ✔11.9 ✔

Demo

npm.io

Features

  • Prefix, suffix and thousand separator.
  • Custom format pattern.
  • Masking.
  • Custom formatting handler.
  • Formatting a input or a simple text.

Getting started

Install the npm package:

npm install react-weblineindia-currency-input 
# OR 
yarn add react-weblineindia-currency-input

Usage

ES6

import CurrencyFormat from 'react-weblineindia-currency-input';

ES5

const CurrencyFormat = require('react-weblineindia-currency-input');

Typescript

import * as CurrencyFormat from 'react-weblineindia-currency-input';
import React, { Component } from "react";
import CurrencyFormat from 'react-weblineindia-currency-input';

class Test extends Component {
  constructor(props) {
    super(props);
    this.state = {
    }
  }
  render(){
      return(
          <div>
          <CurrencyFormat value={2456981} displayType={'text'} thousandSeparator={true} prefix={'$'} />
           </div>
      )
  }
}
export default Test

Examples

Prefix and thousand separator : Format currency as text

var CurrencyFormat = require('react-currency-format');

<CurrencyFormat value={2456981} displayType={'text'} thousandSeparator={true} prefix={'$'} />

Output : $2,456,981

Custom renderText method

var CurrencyFormat = require('react-currency-format');

<CurrencyFormat value={2456981} displayType={'text'} thousandSeparator={true} prefix={'$'} renderText={value => <div>{value}</div>} />

Output : <div> $2,456,981 </div>

Format with pattern : Format credit card as text

<CurrencyFormat value={4111111111111111} displayType={'text'} format="#### #### #### ####" />

Output : 4111 1111 1111 1111

Prefix and thousand separator : Format currency in input

<CurrencyFormat thousandSeparator={true} prefix={'$'} />

Available Props

PropsOptionsDefaultDescription
thousandSeparatormixed: single character string or boolean true (true is default to ,)noneAdd thousand separators on number
thousandSpacingString, One of '2', '2s', '3', '4''3'Add thousand group spacing on number. Default: '2' will format like 1,23,45,67,89 '3' will format like 1,234,567,981 '2s' will format like 1,23,45,67,981 __ '4' will format like 1,2345,6789
decimalSeparatorsingle character string.Support decimal point on a number
decimalScalenumbernoneIf defined it limits to given decimal scale
fixedDecimalScalebooleanfalseIf true it add 0s to match given decimalScale
allowNegativebooleantrueallow negative numbers (Only when format option is not provided)
prefixString (ex : $)noneAdd a prefix before the number
suffixString (ex : /-)noneAdd a prefix after the number
valueNumber or StringnullValue to the number format. It can be a float number, or formatted string. If value is string representation of number (unformatted), isNumericString props should be passed as true.
isNumericStringbooleanfalseIf value is passed as string representation of numbers (unformatted) then this should be passed as true
displayTypeString: text / inputinputIf input it renders a input element where formatting happens as you input characters. If text it renders it as a normal text in a span formatting the given value
typeOne of 'text', 'tel'textInput type attribute
formatString : Hash based ex (#### #### #### ####) Or FunctionnoneIf format given as hash string allow number input inplace of hash. If format given as function, component calls the function with unformatted number and expects formatted number.
removeFormatting(formattedValue) => numericStringnoneIf you are providing custom format method and it add numbers as format you will need to add custom removeFormatting logic
maskString (ex : _)noneIf mask defined, component will show non entered placed with masked value.
customInputComponent ReferenceinputThis allow supporting custom inputs with number format.
onValueChange(values) => {}noneonValueChange handler accepts values object
isAllowed(values) => true or falsenoneA checker function to check if input value is valid or not
renderText(formattedValue) => React ElementnullA renderText method useful if you want to render formattedValue in different element other than span.

Want to Contribute?

  • Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).
  • Fork it.
  • Create new branch to contribute your changes.
  • Commit all your changes to your branch.
  • Submit a pull request.

Collection of Components

We have built many other components and free resources for software development in various programming languages. Kindly click here to view our Free Resources for Software Development.


Changelog

Detailed changes for each release are documented in CHANGELOG.md.

Credits

react-weblineindia-currency-input is inspired by the react-currency-format.

License

MIT

Keywords

react-weblineindia-currency-input, react-currency-input, react-currency-component, currency-input, money-input, currency-input-field, input-formatter, input-field-component