mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
e1c2291fef
GitOrigin-RevId: 2589246448047fb42637bd12252291cef442c9da
75 lines
2.2 KiB
JavaScript
75 lines
2.2 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import PreviewToolbar from './preview-toolbar'
|
|
import PreviewLogsPane from './preview-logs-pane'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
function PreviewPane({
|
|
compilerState,
|
|
onRecompile,
|
|
onRunSyntaxCheckNow,
|
|
onSetAutoCompile,
|
|
onSetDraftMode,
|
|
onSetSyntaxCheck,
|
|
onToggleLogs,
|
|
showLogs
|
|
}) {
|
|
const { t } = useTranslation()
|
|
|
|
const nErrors =
|
|
compilerState.logEntries && compilerState.logEntries.errors
|
|
? compilerState.logEntries.errors.length
|
|
: 0
|
|
const nWarnings =
|
|
compilerState.logEntries && compilerState.logEntries.warnings
|
|
? compilerState.logEntries.warnings.length
|
|
: 0
|
|
const nLogEntries =
|
|
compilerState.logEntries && compilerState.logEntries.all
|
|
? compilerState.logEntries.all.length
|
|
: 0
|
|
|
|
return (
|
|
<>
|
|
<PreviewToolbar
|
|
compilerState={compilerState}
|
|
logsState={{ nErrors, nWarnings, nLogEntries }}
|
|
showLogs={showLogs}
|
|
onRecompile={onRecompile}
|
|
onRunSyntaxCheckNow={onRunSyntaxCheckNow}
|
|
onSetAutoCompile={onSetAutoCompile}
|
|
onSetDraftMode={onSetDraftMode}
|
|
onSetSyntaxCheck={onSetSyntaxCheck}
|
|
onToggleLogs={onToggleLogs}
|
|
/>
|
|
<span aria-live="polite" className="sr-only">
|
|
{nErrors ? t('n_errors', { count: nErrors }) : ''}
|
|
</span>
|
|
<span aria-live="polite" className="sr-only">
|
|
{nWarnings ? t('n_warnings', { count: nWarnings }) : ''}
|
|
</span>
|
|
{showLogs ? (
|
|
<PreviewLogsPane logEntries={compilerState.logEntries.all} />
|
|
) : null}
|
|
</>
|
|
)
|
|
}
|
|
|
|
PreviewPane.propTypes = {
|
|
compilerState: PropTypes.shape({
|
|
isAutoCompileOn: PropTypes.bool.isRequired,
|
|
isCompiling: PropTypes.bool.isRequired,
|
|
isDraftModeOn: PropTypes.bool.isRequired,
|
|
isSyntaxCheckOn: PropTypes.bool.isRequired,
|
|
logEntries: PropTypes.object.isRequired
|
|
}),
|
|
onRecompile: PropTypes.func.isRequired,
|
|
onRunSyntaxCheckNow: PropTypes.func.isRequired,
|
|
onSetAutoCompile: PropTypes.func.isRequired,
|
|
onSetDraftMode: PropTypes.func.isRequired,
|
|
onSetSyntaxCheck: PropTypes.func.isRequired,
|
|
onToggleLogs: PropTypes.func.isRequired,
|
|
showLogs: PropTypes.bool.isRequired
|
|
}
|
|
|
|
export default PreviewPane
|