Skip to content

Instantly share code, notes, and snippets.

@ZenulAbidin
Last active November 29, 2023 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZenulAbidin/a7fb055c2f76dacaf28300cb4405e444 to your computer and use it in GitHub Desktop.
Save ZenulAbidin/a7fb055c2f76dacaf28300cb4405e444 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
import { isValidPhoneNumber, parsePhoneNumber} from 'libphonenumber-js';
import { phoneNumbers } from './phone-numbers';
export interface Profile {
firstName?: string;
lastName?: string;
org?: string;
orgTitle?: string;
addressLine1?: string;
addressLine2?: string;
city?: string;
zipCode?: string;
stateProvince?: string;
country?: string;
tel?: string;
};
@Component({
selector: 'app-phone-number',
templateUrl: './phone-number.component.html',
styleUrls: ['./phone-number.component.scss'],
})
export class PhoneNumberComponent implements OnInit {
phoneNumbers = phoneNumbers;
profile: Profile = {};
constructor() { }
ngOnInit() { }
countryCode = "";
parsePhoneNumber() {
this.countryCode = "";
if (this.profile.tel && isValidPhoneNumber(this.profile.tel)) {
const phoneNumber = parsePhoneNumber(this.profile.tel)
if (phoneNumber?.country) {
this.countryCode = phoneNumber.country;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment