mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Merge pull request #26990 from overleaf/dp-pdf-logs-max-entries
Ensure that PreviewLogsPaneMaxEntries uses new style log entry in new editor GitOrigin-RevId: 964525a4676eeb341ce168aa3189ef59bb26b1cc
This commit is contained in:
@@ -1,79 +0,0 @@
|
||||
import { useCallback } from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import { Trans, useTranslation } from 'react-i18next'
|
||||
import OLButton from '@/features/ui/components/ol/ol-button'
|
||||
import PreviewLogEntryHeader from './preview-log-entry-header'
|
||||
import { useDetachCompileContext as useCompileContext } from '../../../shared/context/detach-compile-context'
|
||||
import { useStopOnFirstError } from '../../../shared/hooks/use-stop-on-first-error'
|
||||
import MaterialIcon from '@/shared/components/material-icon'
|
||||
|
||||
function PreviewLogsPaneMaxEntries({ totalEntries, entriesShown, hasErrors }) {
|
||||
const { t } = useTranslation()
|
||||
const { startCompile, stoppedOnFirstError, setAnimateCompileDropdownArrow } =
|
||||
useCompileContext()
|
||||
const { enableStopOnFirstError } = useStopOnFirstError({
|
||||
eventSource: 'too-many-logs',
|
||||
})
|
||||
|
||||
const title = t('log_entry_maximum_entries_title', {
|
||||
total: totalEntries,
|
||||
displayed: entriesShown,
|
||||
})
|
||||
|
||||
const handleEnableStopOnFirstErrorClick = useCallback(() => {
|
||||
enableStopOnFirstError()
|
||||
startCompile({ stopOnFirstError: true })
|
||||
setAnimateCompileDropdownArrow(true)
|
||||
}, [enableStopOnFirstError, startCompile, setAnimateCompileDropdownArrow])
|
||||
|
||||
return (
|
||||
<div className="log-entry" aria-label={t('log_entry_maximum_entries')}>
|
||||
<PreviewLogEntryHeader level="raw" headerTitle={title} />
|
||||
<div className="log-entry-content">
|
||||
<div className="log-entry-formatted-content">
|
||||
{hasErrors && !stoppedOnFirstError ? (
|
||||
<>
|
||||
<p>
|
||||
<MaterialIcon type="lightbulb" className="align-middle" />
|
||||
|
||||
<strong>{t('tip')}: </strong>
|
||||
<Trans
|
||||
i18nKey="log_entry_maximum_entries_enable_stop_on_first_error"
|
||||
components={[
|
||||
<OLButton
|
||||
variant="primary"
|
||||
size="sm"
|
||||
key="enable-stop-on-first-error"
|
||||
onClick={handleEnableStopOnFirstErrorClick}
|
||||
/>,
|
||||
// eslint-disable-next-line jsx-a11y/anchor-has-content
|
||||
<a
|
||||
key="learn-more"
|
||||
href="https://www.overleaf.com/learn/latex/Questions/Tips_and_Tricks_for_Troubleshooting_LaTeX"
|
||||
/>,
|
||||
]}
|
||||
/>{' '}
|
||||
</p>
|
||||
<p>{t('log_entry_maximum_entries_see_full_logs')}</p>
|
||||
</>
|
||||
) : (
|
||||
<p>
|
||||
<MaterialIcon type="lightbulb" className="align-middle" />
|
||||
|
||||
<strong>{t('tip')}: </strong>
|
||||
{t('log_entry_maximum_entries_see_full_logs')}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
PreviewLogsPaneMaxEntries.propTypes = {
|
||||
totalEntries: PropTypes.number,
|
||||
entriesShown: PropTypes.number,
|
||||
hasErrors: PropTypes.bool,
|
||||
}
|
||||
|
||||
export default PreviewLogsPaneMaxEntries
|
||||
@@ -0,0 +1,94 @@
|
||||
import { useCallback } from 'react'
|
||||
import { Trans, useTranslation } from 'react-i18next'
|
||||
import OLButton from '@/features/ui/components/ol/ol-button'
|
||||
import { useDetachCompileContext as useCompileContext } from '../../../shared/context/detach-compile-context'
|
||||
import { useStopOnFirstError } from '../../../shared/hooks/use-stop-on-first-error'
|
||||
import MaterialIcon from '@/shared/components/material-icon'
|
||||
import PdfLogEntry from '@/features/pdf-preview/components/pdf-log-entry'
|
||||
|
||||
function PreviewLogsPaneMaxEntries({
|
||||
totalEntries,
|
||||
entriesShown,
|
||||
hasErrors,
|
||||
}: {
|
||||
totalEntries: number
|
||||
entriesShown: number
|
||||
hasErrors?: boolean
|
||||
}) {
|
||||
const { t } = useTranslation()
|
||||
|
||||
const title = t('log_entry_maximum_entries_title', {
|
||||
total: totalEntries,
|
||||
displayed: entriesShown,
|
||||
})
|
||||
|
||||
return (
|
||||
<PdfLogEntry
|
||||
entryAriaLabel={t('log_entry_maximum_entries')}
|
||||
headerTitle={title}
|
||||
level="raw"
|
||||
formattedContent={
|
||||
<PreviewLogsPaneMaxEntriesContent hasErrors={hasErrors} />
|
||||
}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
function PreviewLogsPaneMaxEntriesContent({
|
||||
hasErrors,
|
||||
}: {
|
||||
hasErrors?: boolean
|
||||
}) {
|
||||
const { t } = useTranslation()
|
||||
const { startCompile, stoppedOnFirstError, setAnimateCompileDropdownArrow } =
|
||||
useCompileContext()
|
||||
const { enableStopOnFirstError } = useStopOnFirstError({
|
||||
eventSource: 'too-many-logs',
|
||||
})
|
||||
|
||||
const handleEnableStopOnFirstErrorClick = useCallback(() => {
|
||||
enableStopOnFirstError()
|
||||
startCompile({ stopOnFirstError: true })
|
||||
setAnimateCompileDropdownArrow(true)
|
||||
}, [enableStopOnFirstError, startCompile, setAnimateCompileDropdownArrow])
|
||||
|
||||
if (hasErrors && !stoppedOnFirstError) {
|
||||
return (
|
||||
<>
|
||||
<p>
|
||||
<MaterialIcon type="lightbulb" className="align-middle" />
|
||||
|
||||
<strong>{t('tip')}: </strong>
|
||||
<Trans
|
||||
i18nKey="log_entry_maximum_entries_enable_stop_on_first_error"
|
||||
components={[
|
||||
<OLButton
|
||||
variant="primary"
|
||||
size="sm"
|
||||
key="enable-stop-on-first-error"
|
||||
onClick={handleEnableStopOnFirstErrorClick}
|
||||
/>,
|
||||
// eslint-disable-next-line jsx-a11y/anchor-has-content
|
||||
<a
|
||||
key="learn-more"
|
||||
href="https://www.overleaf.com/learn/latex/Questions/Tips_and_Tricks_for_Troubleshooting_LaTeX"
|
||||
/>,
|
||||
]}
|
||||
/>{' '}
|
||||
</p>
|
||||
<p>{t('log_entry_maximum_entries_see_full_logs')}</p>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
return (
|
||||
<p>
|
||||
<MaterialIcon type="lightbulb" className="align-middle" />
|
||||
|
||||
<strong>{t('tip')}: </strong>
|
||||
{t('log_entry_maximum_entries_see_full_logs')}
|
||||
</p>
|
||||
)
|
||||
}
|
||||
|
||||
export default PreviewLogsPaneMaxEntries
|
||||
Reference in New Issue
Block a user