UNPKG

libphonenumber-js

Version:

A simpler (and smaller) rewrite of Google Android's libphonenumber library in javascript

540 lines (500 loc) 18.8 kB
import Metadata from './metadata.js' import PhoneNumber from './PhoneNumber.js' import checkNumberLength from './helpers/checkNumberLength.js' import AsYouTypeState from './AsYouTypeState.js' import AsYouTypeFormatter, { DIGIT_PLACEHOLDER } from './AsYouTypeFormatter.js' import AsYouTypeParser, { extractFormattedDigitsAndPlus } from './AsYouTypeParser.js' import getCountryByCallingCode from './helpers/getCountryByCallingCode.js' import getCountryByNationalNumber from './helpers/getCountryByNationalNumber.js' import isObject from './helpers/isObject.js' const USE_NON_GEOGRAPHIC_COUNTRY_CODE = false export default class AsYouType { /** * @param {(string|object)?} [optionsOrDefaultCountry] - The default country used for parsing non-international phone numbers. Can also be an `options` object. * @param {Object} metadata */ constructor(optionsOrDefaultCountry, metadata) { // Metadata instance is created once and stays constant. // This is required because other utility classes such as `AsYouTypeFormatter` // will use this metadata instance "reference" and will assume that it stays constant. this.metadata = new Metadata(metadata) const [defaultCountry, defaultCallingCode] = this.getCountryAndCallingCode(optionsOrDefaultCountry) // `this.defaultCountry` and `this.defaultCallingCode` aren't required to be in sync. // For example, `this.defaultCountry` could be `"AR"` and `this.defaultCallingCode` could be `undefined`. // So `this.defaultCountry` and `this.defaultCallingCode` are totally independent. this.defaultCountry = defaultCountry this.defaultCallingCode = defaultCallingCode this.reset() } getCountryAndCallingCode(optionsOrDefaultCountry) { // Set `defaultCountry` and `defaultCallingCode` options. let defaultCountry let defaultCallingCode // Turns out `null` also has type "object". Weird. if (optionsOrDefaultCountry) { if (isObject(optionsOrDefaultCountry)) { defaultCountry = optionsOrDefaultCountry.defaultCountry defaultCallingCode = optionsOrDefaultCountry.defaultCallingCode } else { defaultCountry = optionsOrDefaultCountry } } if (defaultCountry && !this.metadata.hasCountry(defaultCountry)) { defaultCountry = undefined } if (defaultCallingCode) { /* istanbul ignore if */ if (USE_NON_GEOGRAPHIC_COUNTRY_CODE) { if (this.metadata.isNonGeographicCallingCode(defaultCallingCode)) { defaultCountry = '001' } } } return [defaultCountry, defaultCallingCode] } /** * Inputs "next" phone number characters. * @param {string} text * @return {string} Formatted phone number characters that have been input so far. */ input(text) { const { digits, justLeadingPlus } = this.parser.input(text, this.state) if (justLeadingPlus) { this.formattedOutput = '+' } else if (digits) { this.determineTheCountryIfNeeded() // Match the available formats by the currently available leading digits. if (this.state.nationalSignificantNumber) { this.formatter.narrowDownMatchingFormats(this.state) } let formattedNationalNumber if (this.metadata.hasSelectedNumberingPlan()) { formattedNationalNumber = this.formatter.format(digits, this.state) } if (formattedNationalNumber === undefined) { // See if another national (significant) number could be re-extracted. if (this.parser.reExtractNationalSignificantNumber(this.state)) { this.determineTheCountryIfNeeded() // If it could, then re-try formatting the new national (significant) number. const nationalDigits = this.state.getNationalDigits() if (nationalDigits) { formattedNationalNumber = this.formatter.format(nationalDigits, this.state) } } } this.formattedOutput = formattedNationalNumber ? this.getFullNumber(formattedNationalNumber) : this.getNonFormattedNumber() } return this.formattedOutput } reset() { this.state = new AsYouTypeState({ onCountryChange: (country) => { // Before version `1.6.0`, the official `AsYouType` formatter API // included a `.country` property on an `AsYouType` instance. // Since that property (along with the others) have been moved to // `this.state`, `this.country` property is emulated for compatibility // with the old versions. this.country = country }, onCallingCodeChange: (callingCode, country) => { this.metadata.selectNumberingPlan(country || callingCode) this.formatter.reset(this.metadata.numberingPlan, this.state) this.parser.reset(this.metadata.numberingPlan) } }) this.formatter = new AsYouTypeFormatter({ state: this.state, metadata: this.metadata }) this.parser = new AsYouTypeParser({ defaultCountry: this.defaultCountry, defaultCallingCode: this.defaultCallingCode, metadata: this.metadata, state: this.state, onNationalSignificantNumberChange: () => { this.determineTheCountryIfNeeded() this.formatter.reset(this.metadata.numberingPlan, this.state) } }) this.state.reset({ country: this.defaultCountry, callingCode: this.defaultCallingCode }) this.formattedOutput = '' return this } /** * Returns `true` if the phone number is being input in international format. * In other words, returns `true` if and only if the parsed phone number starts with a `"+"`. * @return {boolean} */ isInternational() { return this.state.international } /** * Returns the "calling code" part of the phone number when it's being input * in an international format. * If no valid calling code has been entered so far, returns `undefined`. * @return {string} [callingCode] */ getCallingCode() { // If the number is being input in national format and some "default calling code" // has been passed to `AsYouType` constructor, then `this.state.callingCode` // is equal to that "default calling code". // // If the number is being input in national format and no "default calling code" // has been passed to `AsYouType` constructor, then returns `undefined`, // even if a "default country" has been passed to `AsYouType` constructor. // if (this.isInternational()) { return this.state.callingCode } } // A legacy alias. getCountryCallingCode() { return this.getCallingCode() } /** * Returns a two-letter country code of the phone number. * Returns `undefined` for "non-geographic" phone numbering plans. * Returns `undefined` if no phone number has been input yet. * @return {string} [country] */ getCountry() { const { digits } = this.state // Return `undefined` if no digits have been input yet. if (digits) { return this._getCountry() } } /** * Returns a two-letter country code of the phone number. * Returns `undefined` for "non-geographic" phone numbering plans. * @return {string} [country] */ _getCountry() { const { country } = this.state /* istanbul ignore if */ if (USE_NON_GEOGRAPHIC_COUNTRY_CODE) { // `AsYouType.getCountry()` returns `undefined` // for "non-geographic" phone numbering plans. if (country === '001') { return } } return country } determineTheCountryIfNeeded() { // Suppose a user enters a phone number in international format, // and there're several countries corresponding to that country calling code, // and a country has been derived from the number, and then // a user enters one more digit and the number is no longer // valid for the derived country, so the country should be re-derived // on every new digit in those cases. // // If the phone number is being input in national format, // then it could be a case when `defaultCountry` wasn't specified // when creating `AsYouType` instance, and just `defaultCallingCode` was specified, // and that "calling code" could correspond to a "non-geographic entity", // or there could be several countries corresponding to that country calling code. // In those cases, `this.country` is `undefined` and should be derived // from the number. Again, if country calling code is ambiguous, then // `this.country` should be re-derived with each new digit. // if (!this.state.country || this.isCountryCallingCodeAmbiguous()) { this.determineTheCountry() } } // Prepends `+CountryCode ` in case of an international phone number getFullNumber(formattedNationalNumber) { if (this.isInternational()) { const prefix = (text) => this.formatter.getInternationalPrefixBeforeCountryCallingCode(this.state, { spacing: text ? true : false }) + text const { callingCode } = this.state if (!callingCode) { return prefix(`${this.state.getDigitsWithoutInternationalPrefix()}`) } if (!formattedNationalNumber) { return prefix(callingCode) } return prefix(`${callingCode} ${formattedNationalNumber}`) } return formattedNationalNumber } getNonFormattedNationalNumberWithPrefix() { const { nationalSignificantNumber, prefixBeforeNationalSignificantNumberThatIsNotNationalPrefix, nationalPrefix } = this.state let number = nationalSignificantNumber const prefix = prefixBeforeNationalSignificantNumberThatIsNotNationalPrefix || nationalPrefix if (prefix) { number = prefix + number } return number } getNonFormattedNumber() { const { nationalSignificantNumberIsModified } = this.state return this.getFullNumber( nationalSignificantNumberIsModified ? this.state.getNationalDigits() : this.getNonFormattedNationalNumberWithPrefix() ) } getNonFormattedTemplate() { const number = this.getNonFormattedNumber() if (number) { return number.replace(/[\+\d]/g, DIGIT_PLACEHOLDER) } } isCountryCallingCodeAmbiguous() { const { callingCode } = this.state const countryCodes = this.metadata.getCountryCodesForCallingCode(callingCode) return countryCodes && countryCodes.length > 1 } // Determines the exact country of the phone number // entered so far based on the country phone code // and the national phone number. determineTheCountry() { // Get a more precise country code for this national number. // It is possible that the precise country couldn't be determined // in cases when there're multiple countries sharing the same calling code. // In that case, `country` will be `undefined`. const country = getCountryByCallingCode( this.isInternational() ? this.state.callingCode : this.defaultCallingCode, { nationalNumber: this.state.nationalSignificantNumber, metadata: this.metadata } ) // If the derived country is indeed more precise, // or if no country could be derived for the updated phone number. if (country !== this.state.country) { // Set (or reset) the more precise country. this.state.setCountry(country) // If a more precise country could be derived. if (country) { // Select a more precise telephone numbering plan. // For example, consider that `AsYouType` instance was created with `defaultCountry: "US"` argument. // In that case, the metadata instance will be using "US" metadata. // But then the user could input a Canadian phone number, in which case // the metadata instance should be switched to Canadian telephone numbering plan. // It is required to do that because later `canFormatCompleteNumber()` function will be called, // and that function relies on the precise country being pre-selected in the metadata instance. // Or, for example, `checkNumberLength()` function also relies on same thing. this.metadata.selectNumberingPlan(country) } } } /** * Returns a E.164 phone number value for the user's input. * * For example, for country `"US"` and input `"(222) 333-4444"` * it will return `"+12223334444"`. * * For international phone number input, it will also auto-correct * some minor errors such as using a national prefix when writing * an international phone number. For example, if the user inputs * `"+44 0 7400 000000"` then it will return an auto-corrected * `"+447400000000"` phone number value. * * Will return `undefined` if no digits have been input, * or when inputting a phone number in national format and no * default country or default "country calling code" have been set. * * @return {string} [value] */ getNumberValue() { const { digits, callingCode, country, nationalSignificantNumber } = this.state // Will return `undefined` if no digits have been input. if (!digits) { return } if (this.isInternational()) { if (callingCode) { return '+' + callingCode + nationalSignificantNumber } else { return '+' + digits } } else { if (country || callingCode) { const callingCode_ = country ? this.metadata.countryCallingCode() : callingCode return '+' + callingCode_ + nationalSignificantNumber } } } /** * Returns an instance of `PhoneNumber` class. * Will return `undefined` if no national (significant) number * digits have been entered so far, or if no `defaultCountry` has been * set and the user enters a phone number not in international format. */ getNumber() { const { nationalSignificantNumber, carrierCode, callingCode } = this.state if (!nationalSignificantNumber) { return } // `this._getCountry()` is basically same as `this.state.country` // with the only change that it returns `undefined` in case of a // "non-geographic" numbering plan instead of `"001"` "internal use" value. let country = this._getCountry() // Sidenote: // `state.callingCode` and `state.country` are somewhat independent from one another // and there could be situations when one is defined but the other is not. // See the comment in `AsYouTypeState.js` for more info on when that is possible. if (!country && !callingCode) { return } // By default, if `defaultCountry` parameter was passed when // creating `AsYouType` instance, `state.country` is gonna be // that `defaultCountry`, which doesn't entirely conform with // `parsePhoneNumber()`'s behavior where it attempts to determine // the country more precisely in cases when multiple countries // could correspond to the same `countryCallingCode`. // https://gitlab.com/catamphetamine/libphonenumber-js/-/issues/103#note_1417192969 // // Because `AsYouType.getNumber()` method is supposed to be a 1:1 // equivalent for `parsePhoneNumber(AsYouType.getNumberValue())`, // it means that it should also behave accordingly in such cases of `country` ambiguity. // That's how users of this library would expect it to behave anyway. // // So here it checks if `state.country` is same as the `defaultCountry`, // and if it is, it attempts to get rid of any potential ambiguity. // if (country) { if (country === this.defaultCountry) { // // Create a `Metadata` instance just to get the calling code of the `country`. // const metadata = new Metadata(this.metadata.metadata) // // `state.callingCode` and `state.country` are somewhat independent from one another // // and there could be situations when one is defined but the other is not. // // See the comment in `AsYouTypeState.js` for more info on when that is possible. // // Here, it only passes `state.country` because there's no need to pass `state.callingCode` // // because `state.country` is known to be defined. // metadata.selectNumberingPlan(country) // const countryCallingCode = metadata.numberingPlan.callingCode() // Instead of getting `countryCallingCode` value above, // it could simply read it from the existing metadata instance. const countryCallingCode = this.metadata.numberingPlan.callingCode() // Attempt to rule out any potential country code ambiguity, if present. const exactCountry = getExactCountryForMultiCountryCallingCode( countryCallingCode, nationalSignificantNumber, this.metadata ) if (exactCountry) { country = exactCountry } } } const phoneNumber = new PhoneNumber( country || callingCode, nationalSignificantNumber, this.metadata.metadata ) if (carrierCode) { phoneNumber.carrierCode = carrierCode } // Phone number extensions are not supported by "As You Type" formatter. return phoneNumber } /** * Returns `true` if the phone number is "possible". * Is just a shortcut for `PhoneNumber.isPossible()`. * @return {boolean} */ isPossible() { const phoneNumber = this.getNumber() if (!phoneNumber) { return false } return phoneNumber.isPossible() } /** * Returns `true` if the phone number is "valid". * Is just a shortcut for `PhoneNumber.isValid()`. * @return {boolean} */ isValid() { const phoneNumber = this.getNumber() if (!phoneNumber) { return false } return phoneNumber.isValid() } /** * Checks if the phone number length is valid. * If it is, nothing is returned. * Otherwise, a rejection reason is returned. * @return {string?} */ validateLength() { const { digits, nationalSignificantNumber } = this.state if (!digits) { return 'NOT_A_NUMBER' } if (!this.metadata.numberingPlan) { return 'INVALID_COUNTRY' } if (!nationalSignificantNumber) { return 'TOO_SHORT' } // `state.callingCode` and `state.country` are somewhat independent from one another // and there could be situations when one is defined but the other is not. // See the comment in `AsYouTypeState.js` for more info on when that is possible. // Here, it uses both: if `country` is defined then it will use that, // otherwise it will use `callingCode`. const result = checkNumberLength(nationalSignificantNumber, undefined, this.metadata) if (result !== 'IS_POSSIBLE') { return result } } /** * @deprecated * This method is used in `react-phone-number-input/source/input-control.js` * in versions before `3.0.16`. */ getNationalNumber() { return this.state.nationalSignificantNumber } /** * Returns the phone number characters entered by the user. * @return {string} */ getChars() { return (this.state.international ? '+' : '') + this.state.digits } /** * Returns the template for the formatted phone number. * @return {string} */ getTemplate() { return this.formatter.getTemplate(this.state) || this.getNonFormattedTemplate() || '' } } // In situations when multiple countries use the same calling code, // this function tells what exact country does a given national (significant) number belong to. function getExactCountryForMultiCountryCallingCode(callingCode, nationalSignificantNumber, metadata) { const ambiguousCountries = metadata.getCountryCodesForCallingCode(callingCode) if (ambiguousCountries.length > 1) { return getCountryByNationalNumber(nationalSignificantNumber, ambiguousCountries, metadata.metadata) } }