mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
cb657d1f1c
Stop on first error info box in logs pane GitOrigin-RevId: cf11f65d582d98bea93c6506393940d9a6144c0d
91 lines
2.4 KiB
JavaScript
91 lines
2.4 KiB
JavaScript
import PropTypes from 'prop-types'
|
|
import classNames from 'classnames'
|
|
import { memo, useCallback } from 'react'
|
|
import PreviewLogEntryHeader from '../../preview/components/preview-log-entry-header'
|
|
import PdfLogEntryContent from './pdf-log-entry-content'
|
|
import HumanReadableLogsHints from '../../../ide/human-readable-logs/HumanReadableLogsHints'
|
|
|
|
function PdfLogEntry({
|
|
ruleId,
|
|
headerTitle,
|
|
headerIcon,
|
|
rawContent,
|
|
logType,
|
|
formattedContent,
|
|
extraInfoURL,
|
|
level,
|
|
sourceLocation,
|
|
showSourceLocationLink = true,
|
|
showCloseButton = false,
|
|
entryAriaLabel = null,
|
|
customClass,
|
|
onSourceLocationClick,
|
|
onClose,
|
|
}) {
|
|
if (ruleId && HumanReadableLogsHints[ruleId]) {
|
|
const hint = HumanReadableLogsHints[ruleId]
|
|
formattedContent = hint.formattedContent
|
|
extraInfoURL = hint.extraInfoURL
|
|
}
|
|
|
|
const handleLogEntryLinkClick = useCallback(
|
|
event => {
|
|
event.preventDefault()
|
|
onSourceLocationClick(sourceLocation)
|
|
},
|
|
[onSourceLocationClick, sourceLocation]
|
|
)
|
|
|
|
return (
|
|
<div
|
|
className={classNames('log-entry', customClass)}
|
|
aria-label={entryAriaLabel}
|
|
>
|
|
<PreviewLogEntryHeader
|
|
level={level}
|
|
sourceLocation={sourceLocation}
|
|
headerTitle={headerTitle}
|
|
headerIcon={headerIcon}
|
|
logType={logType}
|
|
showSourceLocationLink={showSourceLocationLink}
|
|
onSourceLocationClick={handleLogEntryLinkClick}
|
|
showCloseButton={showCloseButton}
|
|
onClose={onClose}
|
|
/>
|
|
{(rawContent || formattedContent) && (
|
|
<PdfLogEntryContent
|
|
rawContent={rawContent}
|
|
formattedContent={formattedContent}
|
|
extraInfoURL={extraInfoURL}
|
|
/>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
PdfLogEntry.propTypes = {
|
|
ruleId: PropTypes.string,
|
|
sourceLocation: PreviewLogEntryHeader.propTypes.sourceLocation,
|
|
headerTitle: PropTypes.string,
|
|
headerIcon: PropTypes.element,
|
|
rawContent: PropTypes.string,
|
|
logType: PropTypes.string,
|
|
formattedContent: PropTypes.node,
|
|
extraInfoURL: PropTypes.string,
|
|
level: PropTypes.oneOf([
|
|
'error',
|
|
'warning',
|
|
'info',
|
|
'typesetting',
|
|
'raw',
|
|
'success',
|
|
]).isRequired,
|
|
customClass: PropTypes.string,
|
|
showSourceLocationLink: PropTypes.bool,
|
|
showCloseButton: PropTypes.bool,
|
|
entryAriaLabel: PropTypes.string,
|
|
onSourceLocationClick: PropTypes.func,
|
|
onClose: PropTypes.func,
|
|
}
|
|
|
|
export default memo(PdfLogEntry)
|