mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
69 lines
1.5 KiB
JavaScript
69 lines
1.5 KiB
JavaScript
|
import { memo, useCallback, useMemo } from 'react'
|
||
|
import { Button } from 'react-bootstrap'
|
||
|
import { usePdfPreviewContext } from '../contexts/pdf-preview-context'
|
||
|
import { PdfLogsButtonContent } from './pdf-logs-button-content'
|
||
|
import { sendMBOnce } from '../../../infrastructure/event-tracking'
|
||
|
|
||
|
function PdfLogsButton() {
|
||
|
const {
|
||
|
autoCompileLintingError,
|
||
|
stopOnValidationError,
|
||
|
error,
|
||
|
logEntries,
|
||
|
showLogs,
|
||
|
setShowLogs,
|
||
|
} = usePdfPreviewContext()
|
||
|
|
||
|
const buttonStyle = useMemo(() => {
|
||
|
if (showLogs) {
|
||
|
return 'default'
|
||
|
}
|
||
|
|
||
|
if (autoCompileLintingError && stopOnValidationError) {
|
||
|
return 'danger'
|
||
|
}
|
||
|
|
||
|
if (logEntries) {
|
||
|
if (logEntries.errors?.length) {
|
||
|
return 'danger'
|
||
|
}
|
||
|
|
||
|
if (logEntries.warnings?.length) {
|
||
|
return 'warning'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return 'default'
|
||
|
}, [autoCompileLintingError, logEntries, showLogs, stopOnValidationError])
|
||
|
|
||
|
const handleClick = useCallback(() => {
|
||
|
setShowLogs(value => {
|
||
|
if (!value) {
|
||
|
sendMBOnce('ide-open-logs-once')
|
||
|
}
|
||
|
|
||
|
return !value
|
||
|
})
|
||
|
}, [setShowLogs])
|
||
|
|
||
|
return (
|
||
|
<Button
|
||
|
bsSize="xsmall"
|
||
|
bsStyle={buttonStyle}
|
||
|
disabled={Boolean(error)}
|
||
|
className="btn-toggle-logs toolbar-item"
|
||
|
onClick={handleClick}
|
||
|
>
|
||
|
<PdfLogsButtonContent
|
||
|
showLogs={showLogs}
|
||
|
logEntries={logEntries}
|
||
|
autoCompileLintingError={
|
||
|
autoCompileLintingError && stopOnValidationError
|
||
|
}
|
||
|
/>
|
||
|
</Button>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default memo(PdfLogsButton)
|