mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
31190b967b
GitOrigin-RevId: 3043d1369ed85b38b1fec7479385b123a304c05b
32 lines
911 B
TypeScript
32 lines
911 B
TypeScript
import { useEffect, useState } from 'react'
|
|
import { getJSON } from '../../../infrastructure/fetch-json'
|
|
import { fileCollator } from '../util/file-collator'
|
|
import useAbortController from '../../../shared/hooks/use-abort-controller'
|
|
|
|
export type Project = {
|
|
_id: string
|
|
name: string
|
|
accessLevel: string
|
|
}
|
|
|
|
const alphabetical = (a: Project, b: Project) =>
|
|
fileCollator.compare(a.name, b.name)
|
|
|
|
export function useUserProjects() {
|
|
const [loading, setLoading] = useState(true)
|
|
const [data, setData] = useState<Project[] | null>(null)
|
|
const [error, setError] = useState<any>(false)
|
|
|
|
const { signal } = useAbortController()
|
|
|
|
useEffect(() => {
|
|
getJSON('/user/projects', { signal })
|
|
.then(data => {
|
|
setData(data.projects.sort(alphabetical))
|
|
})
|
|
.catch(error => setError(error))
|
|
.finally(() => setLoading(false))
|
|
}, [signal])
|
|
|
|
return { loading, data, error }
|
|
}
|