@ebay/ebayui-core
Version:
Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.
108 lines (107 loc) • 4.16 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const mask_1 = __importStar(require("../../common/mask"));
const countries_1 = __importDefault(require("../../common/countries"));
const dates_1 = require("../../common/dates");
class PhoneInput {
onCreate() {
this.state = {
index: 0,
countryNames: [],
};
}
getSelectedCountry() {
const [currentCountryName] = this.state.countryNames[this.state.index];
return countries_1.default[currentCountryName];
}
onInput(input) {
const { countryCode } = input;
let locale = (0, dates_1.localeDefault)(input.locale);
if (locale !== this.locale) {
this.locale = locale;
const getName = new Intl.DisplayNames([locale], { type: "region" });
this.state.countryNames = Object.keys(countries_1.default)
.map((code) => { var _a; return [code, (_a = getName.of(code)) !== null && _a !== void 0 ? _a : ""]; })
.sort(([, a], [, b]) => a.localeCompare(b));
}
if (countryCode) {
let index = this.state.countryNames.findIndex(([code]) => code === countryCode.toUpperCase());
if (index === -1) {
index = 0;
}
this.state.index = index;
}
}
handleCountryChange(e) {
this.state.index = e.index;
// Trigger change event after state is updated so that the right mask value will be emitted
this.once("update", () => {
this.forwardEvent("change", { originalEvent: e });
});
}
forwardEvent(eventName, event) {
const selectedCountry = this.getSelectedCountry();
setTimeout(() => {
this.emit(eventName, {
originalEvent: event.originalEvent,
value: this.mask.value,
rawValue: (0, mask_1.stripNonDigits)(this.mask.value || ""),
callingCode: selectedCountry.callingCode,
countryCode: selectedCountry.countryCode,
});
});
}
_initializeMask() {
const country = this.getSelectedCountry();
this.mask = (0, mask_1.default)(this.getComponent("textbox").getEl("input"), country.mask);
}
onMount() {
this._initializeMask();
}
onUpdate() {
if (this.mask) {
this.mask.update(this.getComponent("textbox").getEl("input").value, this.getSelectedCountry().mask);
}
}
onDestroy() {
var _a;
(_a = this.mask) === null || _a === void 0 ? void 0 : _a.destroy();
}
}
module.exports = PhoneInput;