Cleanup ContactEdit a bit and add address support.

master
Tom Hacohen 7 years ago
parent 574df977c2
commit a7eb74bee1

@ -15,14 +15,24 @@ import * as EteSync from './api/EteSync';
import { ContactType } from './pim-types'; import { ContactType } from './pim-types';
const TypeSelector = (props: any) => { const telTypes = [
const types = [
{type: 'Home'}, {type: 'Home'},
{type: 'Work'}, {type: 'Work'},
{type: 'Cell'}, {type: 'Cell'},
{type: 'Other'}, {type: 'Other'},
]; ];
const emailTypes = telTypes;
const addressTypes = [
{type: 'Home'},
{type: 'Work'},
{type: 'Other'},
];
const TypeSelector = (props: any) => {
const types = props.types as {type: string}[];
return ( return (
<SelectField <SelectField
style={props.style} style={props.style}
@ -50,6 +60,7 @@ interface ValueTypeComponentProps {
type?: string; type?: string;
style?: object; style?: object;
types: {type: string}[];
name: string; name: string;
hintText: string; hintText: string;
value: ValueType; value: ValueType;
@ -76,6 +87,7 @@ const ValueTypeComponent = (props: ValueTypeComponentProps) => {
</IconButton> </IconButton>
<TypeSelector <TypeSelector
value={props.value.type} value={props.value.type}
types={props.types}
onChange={ onChange={
(contact: object, key: number, payload: any) => props.onChange(props.name, payload, props.value.value) (contact: object, key: number, payload: any) => props.onChange(props.name, payload, props.value.value)
} }
@ -88,8 +100,9 @@ class ContactEdit extends React.Component {
state: { state: {
uid: string, uid: string,
fn: string; fn: string;
phones: ValueType[]; phone: ValueType[];
emails: ValueType[]; email: ValueType[];
address: ValueType[];
journalUid: string; journalUid: string;
}; };
@ -106,8 +119,9 @@ class ContactEdit extends React.Component {
this.state = { this.state = {
uid: '', uid: '',
fn: '', fn: '',
phones: [new ValueType()], phone: [new ValueType()],
emails: [new ValueType()], email: [new ValueType()],
address: [new ValueType()],
journalUid: '', journalUid: '',
}; };
@ -128,8 +142,9 @@ class ContactEdit extends React.Component {
)) ))
); );
this.state.phones = propToValueType(contact.comp, 'tel'); this.state.phone = propToValueType(contact.comp, 'tel');
this.state.emails = propToValueType(contact.comp, 'email'); this.state.email = propToValueType(contact.comp, 'email');
this.state.address = propToValueType(contact.comp, 'adr');
} else { } else {
this.state.uid = uuid.v4(); this.state.uid = uuid.v4();
@ -224,8 +239,9 @@ class ContactEdit extends React.Component {
}); });
} }
setProperties('tel', this.state.phones); setProperties('tel', this.state.phone);
setProperties('email', this.state.emails); setProperties('email', this.state.email);
setProperties('adr', this.state.address);
this.props.onSave(contact, this.state.journalUid, this.props.contact); this.props.onSave(contact, this.state.journalUid, this.props.contact);
} }
@ -273,18 +289,19 @@ class ContactEdit extends React.Component {
<div> <div>
Phone numbers Phone numbers
<IconButton <IconButton
onClick={() => this.addValueType('phones')} onClick={() => this.addValueType('phone')}
tooltip="Add phone number" tooltip="Add phone number"
> >
<IconAdd /> <IconAdd />
</IconButton> </IconButton>
</div> </div>
{this.state.phones.map((x, idx) => ( {this.state.phone.map((x, idx) => (
<ValueTypeComponent <ValueTypeComponent
key={idx} key={idx}
name="phones" name="phone"
hintText="Phone" hintText="Phone"
value={this.state.phones[idx]} types={telTypes}
value={this.state.phone[idx]}
onClearRequest={(name: string) => this.removeValueType(name, idx)} onClearRequest={(name: string) => this.removeValueType(name, idx)}
onChange={(name: string, type: string, value: string) => ( onChange={(name: string, type: string, value: string) => (
this.handleValueTypeChange(name, idx, {type, value}) this.handleValueTypeChange(name, idx, {type, value})
@ -295,18 +312,42 @@ class ContactEdit extends React.Component {
<div> <div>
Emails Emails
<IconButton <IconButton
onClick={() => this.addValueType('emails')} onClick={() => this.addValueType('email')}
tooltip="Add email address" tooltip="Add email address"
> >
<IconAdd /> <IconAdd />
</IconButton> </IconButton>
</div> </div>
{this.state.emails.map((x, idx) => ( {this.state.email.map((x, idx) => (
<ValueTypeComponent
key={idx}
name="email"
hintText="Email"
types={emailTypes}
value={this.state.email[idx]}
onClearRequest={(name: string) => this.removeValueType(name, idx)}
onChange={(name: string, type: string, value: string) => (
this.handleValueTypeChange(name, idx, {type, value})
)}
/>
))}
<div>
Addresses
<IconButton
onClick={() => this.addValueType('address')}
tooltip="Add address"
>
<IconAdd />
</IconButton>
</div>
{this.state.address.map((x, idx) => (
<ValueTypeComponent <ValueTypeComponent
key={idx} key={idx}
name="emails" name="address"
hintText="Email" hintText="Email"
value={this.state.emails[idx]} types={addressTypes}
value={this.state.address[idx]}
onClearRequest={(name: string) => this.removeValueType(name, idx)} onClearRequest={(name: string) => this.removeValueType(name, idx)}
onChange={(name: string, type: string, value: string) => ( onChange={(name: string, type: string, value: string) => (
this.handleValueTypeChange(name, idx, {type, value}) this.handleValueTypeChange(name, idx, {type, value})

Loading…
Cancel
Save