2021-03-18 05:52:36 -04:00
|
|
|
import { useEffect, useState } from 'react'
|
|
|
|
import { postJSON } from '../../../infrastructure/fetch-json'
|
|
|
|
import { fileCollator } from '../util/file-collator'
|
2021-06-23 04:09:23 -04:00
|
|
|
import useAbortController from '../../../shared/hooks/use-abort-controller'
|
2021-03-18 05:52:36 -04:00
|
|
|
|
|
|
|
const alphabetical = (a, b) => fileCollator.compare(a.path, b.path)
|
|
|
|
|
|
|
|
export function useProjectOutputFiles(projectId) {
|
|
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
const [data, setData] = useState(null)
|
|
|
|
const [error, setError] = useState(false)
|
|
|
|
|
2021-06-23 04:09:23 -04:00
|
|
|
const { signal } = useAbortController()
|
|
|
|
|
2021-03-18 05:52:36 -04:00
|
|
|
useEffect(() => {
|
|
|
|
if (projectId) {
|
|
|
|
setLoading(true)
|
|
|
|
setError(false)
|
|
|
|
setData(null)
|
|
|
|
|
|
|
|
postJSON(`/project/${projectId}/compile`, {
|
|
|
|
body: {
|
|
|
|
check: 'silent',
|
|
|
|
draft: false,
|
2021-04-27 03:52:58 -04:00
|
|
|
incrementalCompilesEnabled: false,
|
|
|
|
},
|
2021-06-23 04:09:23 -04:00
|
|
|
signal,
|
2021-03-18 05:52:36 -04:00
|
|
|
})
|
|
|
|
.then(data => {
|
|
|
|
if (data.status === 'success') {
|
|
|
|
const filteredFiles = data.outputFiles.filter(file =>
|
|
|
|
file.path.match(/.*\.(pdf|png|jpeg|jpg|gif)/)
|
|
|
|
)
|
2022-05-13 05:35:31 -04:00
|
|
|
data.outputFiles.forEach(file => {
|
|
|
|
file.clsiServerId = data.clsiServerId
|
|
|
|
file.compileGroup = data.compileGroup
|
|
|
|
})
|
2021-03-18 05:52:36 -04:00
|
|
|
setData(filteredFiles.sort(alphabetical))
|
|
|
|
} else {
|
2021-07-30 04:57:48 -04:00
|
|
|
setError('linked-project-compile-error')
|
2021-03-18 05:52:36 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(error => setError(error))
|
|
|
|
.finally(() => setLoading(false))
|
|
|
|
}
|
2021-06-23 04:09:23 -04:00
|
|
|
}, [projectId, signal])
|
2021-03-18 05:52:36 -04:00
|
|
|
|
|
|
|
return { loading, data, error }
|
|
|
|
}
|