/* @flow */ import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps, } from '../utilities/props' import { globalProps } from '../utilities/globalProps.js' import { Caption, Contact, Person } from '../' type ContactItem = { contactType: string, contactValue: string, contactDetail: string, } type PersonContactProps = { aria?: object, className?: string | array, dark?: boolean, data?: object, firstName: string, id?: string, lastName: string, contacts?: array, } const PersonContact = (props: PersonContactProps) => { const { aria = {}, className, contacts = [], data = {}, firstName, id, lastName, } = props const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const classes = classnames(buildCss('pb_person_contact_kit'), className, globalProps(props)) const wrongContacts = () => ( contacts.filter((contactObject) => ( contactObject.contactType === 'wrong-phone' )) ) const validContacts = () => ( contacts.filter((contactObject) => ( contactObject.contactType !== 'wrong-phone' )) ) return (
{validContacts().map((contactObject, index) => ( ))} {wrongContacts().map((contactObject, index) => (
))}
) } export default PersonContact