mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
|
import { useEffect, useState } from 'react'
|
||
|
import { getJSON } from '../../../infrastructure/fetch-json'
|
||
|
|
||
|
const contactCollator = new Intl.Collator('en')
|
||
|
|
||
|
const alphabetical = (a, b) =>
|
||
|
contactCollator.compare(a.name, b.name) ||
|
||
|
contactCollator.compare(a.email, b.email)
|
||
|
|
||
|
export function useUserContacts() {
|
||
|
const [loading, setLoading] = useState(true)
|
||
|
const [data, setData] = useState(null)
|
||
|
const [error, setError] = useState(false)
|
||
|
|
||
|
useEffect(() => {
|
||
|
getJSON('/user/contacts')
|
||
|
.then(data => {
|
||
|
setData(data.contacts.map(buildContact).sort(alphabetical))
|
||
|
})
|
||
|
.catch(error => setError(error))
|
||
|
.finally(() => setLoading(false))
|
||
|
}, [])
|
||
|
|
||
|
return { loading, data, error }
|
||
|
}
|
||
|
|
||
|
function buildContact(contact) {
|
||
|
const [emailPrefix] = contact.email.split('@')
|
||
|
|
||
|
// the name is not just the default "email prefix as first name"
|
||
|
const hasName = contact.last_name || contact.first_name !== emailPrefix
|
||
|
|
||
|
const name = hasName
|
||
|
? [contact.first_name, contact.last_name].filter(Boolean).join(' ')
|
||
|
: ''
|
||
|
|
||
|
return {
|
||
|
...contact,
|
||
|
name,
|
||
|
display: name ? `${name} <${contact.email}>` : contact.email
|
||
|
}
|
||
|
}
|