npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-advanced-input-mask

v1.1.1

Published

Text input mask for React Native on iOS and Android.

Downloads

374

Readme

To create detailed documentation for the react-native-advanced-input-mask package by following the structure and details provided in the input-mask-android library by RedMadRobot, we can develop an organized, comprehensive document that will help users understand the purpose, setup, and use of react-native-advanced-input-mask for masking input fields in React Native apps. Below is a suggested structure for the documentation:


React Native Advanced Input Mask

Overview

react-native-advanced-input-mask is a React Native package that provides flexible input masking functionality for mobile applications. It allows you to format input fields dynamically as users type, ensuring that data is entered in a consistent and valid format. This package wraps the input-mask-android library for Android and its equivalent for iOS, offering a cross-platform solution.

Input masking can be used to format text fields for phone numbers, dates, credit card numbers, social security numbers, and other input types that require specific formatting.

Features

  • Supports multiple mask types and formats.
  • Automatic formatting as users type.
  • Cross-platform support for iOS and Android.
  • Easy integration with existing React Native components.

Installation

Install the package using npm or yarn:

npm install react-native-advanced-input-mask
# or
yarn add react-native-advanced-input-mask

Usage

Import react-native-advanced-input-mask in your component to apply masking to input fields.

Basic Example

import React, { useState, useCallback } from 'react';
import { TextInput, View } from 'react-native';
import { MaskedTextInput } from 'react-native-advanced-input-mask';

const ExampleComponent = () => {
  const [phoneNumber, setPhoneNumber] = useState('');

  const onChangeText = useCallback((formatted, extracted) => {
   setPhoneNumber(formatted)
  }, []);

  return (
    <View>
      <MaskedTextInput
        mask="+1 ([000]) [000]-[0000]"
        value={phoneNumber}
        onChangeText={onChangeText}
        keyboardType="numeric"
      />
    </View>
  );
};

export default ExampleComponent;

UK IBAN:

import React, { useState, useCallback } from 'react';
import { TextInput, View } from 'react-native';
import { MaskedTextInput } from 'react-native-advanced-input-mask';

const ExampleComponent = () => {
  const [IBAN, setIBAN] = useState('');

  const onChangeText = useCallback((formatted, extracted) => {
   setIBAN(formatted)
  }, []);

  return (
    <View>
      <MaskedTextInput
        mask="GB[00] [____] [0000] [0000] [0000] [00]"
        value={IBAN}
        onChangeText={onChangeText}
      />
    </View>
  );
};

export default ExampleComponent;

Dates:

import React, { useState, useCallback } from 'react';
import { TextInput, View } from 'react-native';
import { MaskedTextInput } from 'react-native-advanced-input-mask';

const ExampleComponent = () => {
  const [date, setDate] = useState('');

  const onChangeText = useCallback((formatted, extracted) => {
   setDate(formatted)
  }, []);

  return (
    <View>
      <MaskedTextInput
        mask="[00]{.}[00]{.}[9900]"
        value={date}
        onChangeText={onChangeText}
      />
    </View>
  );
};

export default ExampleComponent;

Detailed Mask Explanation

The mask pattern defines how user input is processed and displayed. The characters below are used for defining patterns:

  • [0]: Allows only digits (0-9).
  • [A]: Allows only letters (A-Z, case insensitive).
  • [...]: Allows any character(s) in a custom range, e.g., [0-9A-Za-z].

Advanced Usage

For applications requiring conditional or more complex formatting, this package provides additional configuration options.

MaskedTextInput Component - Props

| Prop | Type | Description | |-------------------------------|--------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| | mask | string | The mask format to be applied to the text input, defining the pattern for formatting. Example: "[0000] [0000] [0000] [0000]". | | customNotations | Notation[] | Array of custom notations for the mask format. Each notation object includes: character, characterSet, and isOptional. | | onChangeText | (formatted: string, extracted: string) => void | Callback function triggered on text change. Receives formattedValue (with mask) and extractedValue (raw input). | | onTailPlaceholderChange | (tailPlaceholder: string) => void | Callback function called when the tail placeholder changes, receiving the updated tailPlaceholder value. | | affinityFormat | string[] | Array of strings for affinity format, used to determine the best mask format based on the input. | | autocomplete | boolean | Enables or disables autocomplete for the text input. Default is false. | | autoSkip | boolean | Automatically skips to the next input field when the current one is filled. Default is false. | | isRTL | boolean | Enables right-to-left (RTL) text direction for the text input. Default is false. | | affinityCalculationStrategy | AFFINITY_CALCULATION_STRATEGY | Defines the strategy for affinity calculation, determining how the best mask format is selected based on input. | | customTransformation | CustomTransformation | Custom transformation applied to the text input to define how the input text should be transformed. | | defaultValue | string | The default value for the input field. | | value | string | Current value of the input field, allowing controlled input behavior. | | allowSuggestions | boolean (iOS only) | Enables or disables input suggestions on iOS. Default is false. | | autocompleteOnFocus | boolean (iOS only) | Enables autocomplete when the text input is focused (iOS only). | | placeholder | string | Placeholder text displayed in the input. | | keyboardType | string | Sets the keyboard type. Useful for numeric masks with keyboardType="numeric". | | autoFocus | boolean | If true, focuses the input on component load. Default is false. |

Mask Format Guide

The mask format uses placeholders to define the acceptable input:

  • 0: Digit (0-9).
  • A: Letter (A-Z).
  • _: Any character.

Cookbook

Cookbook is a community-driven handbook with complete solutions for common problems.
Text formatting problems, of course.

Feel free to suggest your own recipes or correct the existing ones.

Chapters

Credit cards

MM/YY: [00]{/}[00]
CVV: [000]

American Express

[0000] [000000] [00000]
3[000] [000000] [00000]

Diners Club International

[0000] [000000] [0000]
3[000] [000000] [0000]

Discover

[0000] [0000] [0000] [0000]
6[000] [0000] [0000] [0000]

MasterCard

[0000] [0000] [0000] [0000]
5[000] [0000] [0000] [0000]

Visa

[0000] [0000] [0000] [0000]
4[000] [0000] [0000] [0000]

Dates

Affine formats:

[00]{/}[00]{/}[00]
[00]{/}[00]{/}[0000]
[00]{.}[00]{.}[00]
[00]{.}[00]{.}[0000]

IBAN, International Bank Account Number

Belgium

BE[00] [0000] [0000] [0000]

France

FR[00] [0000] [0000] [0000] [0000] [0000] [000]

Germany

DE[00] [0000] [0000] [0000] [0000] [00]

Greece

GR[00] [0000] [0000] [0000] [0000] [0000] [000]

Romania

RO[00] [____] [0000] [0000] [0000] [0000]

Saudi Arabia

SA[00] [0000] [0000] [0000] [0000] [0000]

Spain

ES[00] [0000] [0000] [0000] [0000] [0000]

Switzerland

CH[00] [0000] [0000] [0000] [0000] [0]

United Kingdom

GB[00] [____] [0000] [0000] [0000] [00]

Phone numbers

8 ([000]) [000]-[00]-[00]

Custom notations

import React, { useState, useCallback } from 'react';
import { TextInput, View } from 'react-native';
import { MaskedTextInput } from 'react-native-advanced-input-mask';


const alphaNumericChars =
  'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';

const charAlphaNumerics = [
  {
    character: '$',
    characterSet: alphaNumericChars,
    isOptional: false,
  },
];


const ExampleComponent = () => {
  const [text, setText] = useState('');

  const onChangeText = useCallback((formatted, extracted) => {
   setText(formatted)
  }, []);

  return (
    <View>
      <MaskedTextInput
        mask="[$$$$$$$$$$$]"
        value={text}
        onChangeText={onChangeText}
      />
    </View>
  );
};

Contributing

To contribute to this package, clone the repository and install dependencies:

git clone https://github.com/IvanIhnatsiuk/react-native-advanced-input-mask
cd react-native-advanced-input-mask && yarn install