UNPKG

react-phone-number-input

Version:

Telephone number input React component

122 lines (120 loc) 6.42 kB
var _excluded = ["Component", "country", "defaultCountry", "useNationalFormatForDefaultCountryValue", "value", "onChange", "metadata", "international", "withCountryCallingCode"]; function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } import React from 'react'; import PropTypes from 'prop-types'; import usePhoneDigits from './usePhoneDigits.js'; import { metadata as metadataType } from './PropTypes.js'; function PhoneInput(_ref, ref) { var Component = _ref.Component, country = _ref.country, defaultCountry = _ref.defaultCountry, _ref$useNationalForma = _ref.useNationalFormatForDefaultCountryValue, useNationalFormatForDefaultCountryValue = _ref$useNationalForma === void 0 ? true : _ref$useNationalForma, value = _ref.value, onChange = _ref.onChange, metadata = _ref.metadata, international = _ref.international, withCountryCallingCode = _ref.withCountryCallingCode, rest = _objectWithoutProperties(_ref, _excluded); // "Phone digits" includes not only "digits" but also a `+` sign. var _usePhoneDigits = usePhoneDigits({ value: value, onChange: onChange, country: country, defaultCountry: defaultCountry, international: international, withCountryCallingCode: withCountryCallingCode, useNationalFormatForDefaultCountryValue: useNationalFormatForDefaultCountryValue, metadata: metadata }), phoneDigits = _usePhoneDigits.phoneDigits, setPhoneDigits = _usePhoneDigits.setPhoneDigits, inputFormat = _usePhoneDigits.inputFormat; // * Passing `international` property is deprecated. // * Passing `withCountryCallingCode` property is deprecated. // * Passing `country` property: it should've been called `defaultCountry` instead // because it only applies when the user inputs a phone number in a national format // and is completely ignored when the user inputs a phone number in an international format. return /*#__PURE__*/React.createElement(Component, _extends({}, rest, { ref: ref, metadata: metadata, inputFormat: inputFormat, international: international, withCountryCallingCode: withCountryCallingCode, country: country || defaultCountry, value: phoneDigits, onChange: setPhoneDigits })); } PhoneInput = /*#__PURE__*/React.forwardRef(PhoneInput); PhoneInput.propTypes = { /** * The phone number (in E.164 format). * Examples: `"+12"`, `"+12133734253"`. * An "empty" `value` could be represented by any "falsy" value like `undefined`, `null` or an empty string `""`. */ value: PropTypes.string, /** * A function of `value: string?`. * Updates the `value` property (to `undefined` in case it's empty). */ onChange: PropTypes.func.isRequired, /** * A two-letter country code for formatting `value` * as a national phone number (example: `(213) 373-4253`), * or as an international phone number without "country calling code" * if `international` property is passed (example: `213 373 4253`). * Example: "US". * If no `country` is passed then `value` * is formatted as an international phone number. * (example: `+1 213 373 4253`) */ country: PropTypes.string, /** * A two-letter country code for formatting `value` * when a user inputs a national phone number (example: `(213) 373-4253`). * The user can still input a phone number in international format. * Example: "US". * `country` and `defaultCountry` properties are mutually exclusive. */ defaultCountry: PropTypes.string, /** * If `country` property is passed along with `international={true}` property * then the phone number will be input in "international" format for that `country` * (without "country calling code"). * For example, if `country="US"` property is passed to "without country select" input * then the phone number will be input in the "national" format for `US` (`(213) 373-4253`). * But if both `country="US"` and `international={true}` properties are passed then * the phone number will be input in the "international" format for `US` (`213 373 4253`) * (without "country calling code" `+1`). */ international: PropTypes.bool, /** * If `country` and `international` properties are set, * then by default it won't include "country calling code" in the input field. * To change that, pass `withCountryCallingCode` property, * and it will include "country calling code" in the input field. */ withCountryCallingCode: PropTypes.bool, /** * A component that renders the `<input/>` itself and also * parses and formats its `value` as the user inputs it. * See `InputBasic.js` and `InputSmart.js` for an example. */ Component: PropTypes.elementType.isRequired, /** * When `defaultCountry` is defined and the initial `value` corresponds to `defaultCountry`, * then the `value` will be formatted as a national phone number by default. * To format the initial `value` of `defaultCountry` as an international number instead * set `useNationalFormatForDefaultCountryValue` property to `true`. */ useNationalFormatForDefaultCountryValue: PropTypes.bool, /** * `libphonenumber-js` metadata. */ metadata: metadataType }; export default PhoneInput; //# sourceMappingURL=PhoneInput.js.map