Wire up all contact behaviors, refactor Contact type/selector
parent
41be7f126b
commit
37821e5a1b
@ -0,0 +1 @@
|
|||||||
|
export function toLogFormat(error: any): string;
|
@ -0,0 +1,99 @@
|
|||||||
|
// @ts-ignore
|
||||||
|
import Attachments from '../../app/attachments';
|
||||||
|
import { formatPhoneNumber } from '../util/formatPhoneNumber';
|
||||||
|
|
||||||
|
export interface Contact {
|
||||||
|
name: Name;
|
||||||
|
number?: Array<Phone>;
|
||||||
|
email?: Array<Email>;
|
||||||
|
address?: Array<PostalAddress>;
|
||||||
|
avatar?: Avatar;
|
||||||
|
organization?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Name {
|
||||||
|
givenName?: string;
|
||||||
|
familyName?: string;
|
||||||
|
prefix?: string;
|
||||||
|
suffix?: string;
|
||||||
|
middleName?: string;
|
||||||
|
displayName: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum ContactType {
|
||||||
|
HOME = 1,
|
||||||
|
MOBILE = 2,
|
||||||
|
WORK = 3,
|
||||||
|
CUSTOM = 4,
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum AddressType {
|
||||||
|
HOME = 1,
|
||||||
|
WORK = 2,
|
||||||
|
CUSTOM = 3,
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Phone {
|
||||||
|
value: string;
|
||||||
|
type: ContactType;
|
||||||
|
label?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Email {
|
||||||
|
value: string;
|
||||||
|
type: ContactType;
|
||||||
|
label?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface PostalAddress {
|
||||||
|
type: AddressType;
|
||||||
|
label?: string;
|
||||||
|
street?: string;
|
||||||
|
pobox?: string;
|
||||||
|
neighborhood?: string;
|
||||||
|
city?: string;
|
||||||
|
region?: string;
|
||||||
|
postcode?: string;
|
||||||
|
country?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Avatar {
|
||||||
|
avatar: Attachment;
|
||||||
|
isProfile: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Attachment {
|
||||||
|
path: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function contactSelector(
|
||||||
|
contact: Contact,
|
||||||
|
options: {
|
||||||
|
regionCode: string;
|
||||||
|
getAbsoluteAttachmentPath: (path: string) => string;
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
const { regionCode, getAbsoluteAttachmentPath } = options;
|
||||||
|
|
||||||
|
let { avatar } = contact;
|
||||||
|
if (avatar && avatar.avatar && avatar.avatar.path) {
|
||||||
|
avatar = {
|
||||||
|
...avatar,
|
||||||
|
avatar: {
|
||||||
|
...avatar.avatar,
|
||||||
|
path: getAbsoluteAttachmentPath(avatar.avatar.path),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return Object.assign({}, contact, {
|
||||||
|
avatar,
|
||||||
|
number:
|
||||||
|
contact.number &&
|
||||||
|
contact.number.map(item => ({
|
||||||
|
...item,
|
||||||
|
value: formatPhoneNumber(item.value, {
|
||||||
|
ourRegionCode: regionCode,
|
||||||
|
}),
|
||||||
|
})),
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
import { toLogFormat } from '../../js/modules/types/errors';
|
||||||
|
import { instance, PhoneNumberFormat } from './libphonenumberInstance';
|
||||||
|
|
||||||
|
export function formatPhoneNumber(
|
||||||
|
number: string,
|
||||||
|
options: {
|
||||||
|
ourRegionCode: string;
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
try {
|
||||||
|
const { ourRegionCode } = options;
|
||||||
|
const parsedNumber = instance.parse(number);
|
||||||
|
const regionCode = instance.getRegionCodeForNumber(parsedNumber);
|
||||||
|
|
||||||
|
if (ourRegionCode && regionCode === ourRegionCode) {
|
||||||
|
return instance.format(parsedNumber, PhoneNumberFormat.NATIONAL);
|
||||||
|
}
|
||||||
|
|
||||||
|
return instance.format(parsedNumber, PhoneNumberFormat.INTERNATIONAL);
|
||||||
|
} catch (error) {
|
||||||
|
console.log(
|
||||||
|
'formatPhoneNumber - had problems formatting number:',
|
||||||
|
toLogFormat(error)
|
||||||
|
);
|
||||||
|
return number;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
import libphonenumber from 'google-libphonenumber';
|
||||||
|
|
||||||
|
const instance = libphonenumber.PhoneNumberUtil.getInstance();
|
||||||
|
const PhoneNumberFormat = libphonenumber.PhoneNumberFormat;
|
||||||
|
|
||||||
|
export { instance, PhoneNumberFormat };
|
Loading…
Reference in New Issue