mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
78b7c8de9b
Logs UI beta icons GitOrigin-RevId: 2d22dea3625ed24b87a1ae9e48cbbe77ad8a1827
91 lines
2.5 KiB
JavaScript
91 lines
2.5 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Icon from '../../../shared/components/icon'
|
|
import PreviewLogsPaneEntry from './preview-logs-pane-entry'
|
|
import { OverlayTrigger, Tooltip } from 'react-bootstrap'
|
|
|
|
function PreviewFirstErrorPopUp({
|
|
logEntry,
|
|
onGoToErrorLocation,
|
|
onViewLogs,
|
|
onClose
|
|
}) {
|
|
const { t } = useTranslation()
|
|
|
|
function handleGoToErrorLocation() {
|
|
const { file, line, column } = logEntry
|
|
onGoToErrorLocation({ file, line, column })
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className="first-error-popup"
|
|
role="alertdialog"
|
|
aria-label={t('first_error_popup_label')}
|
|
>
|
|
<PreviewLogsPaneEntry
|
|
headerTitle={logEntry.message}
|
|
headerIcon={<FirstErrorPopUpBetaBadge />}
|
|
rawContent={logEntry.content}
|
|
formattedContent={logEntry.humanReadableHintComponent}
|
|
extraInfoURL={logEntry.extraInfoURL}
|
|
level={logEntry.level}
|
|
showLineAndNoLink={false}
|
|
showCloseButton
|
|
customClass="log-entry-first-error-popup"
|
|
onClose={onClose}
|
|
/>
|
|
<div className="first-error-popup-actions">
|
|
<button
|
|
className="btn btn-info btn-xs first-error-btn"
|
|
type="button"
|
|
onClick={handleGoToErrorLocation}
|
|
>
|
|
<Icon type="chain" />
|
|
|
|
{t('go_to_error_location')}
|
|
</button>
|
|
<button
|
|
className="btn btn-info btn-xs first-error-btn"
|
|
type="button"
|
|
onClick={onViewLogs}
|
|
>
|
|
<Icon type="file-text-o" />
|
|
|
|
{t('view_all_errors')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function FirstErrorPopUpBetaBadge() {
|
|
const { t } = useTranslation()
|
|
const logsPaneBetaMessage = t('logs_pane_beta_message_popup')
|
|
const tooltip = (
|
|
<Tooltip id="file-tree-badge-tooltip">{logsPaneBetaMessage}</Tooltip>
|
|
)
|
|
|
|
return (
|
|
<OverlayTrigger placement="bottom" overlay={tooltip} delayHide={100}>
|
|
<a
|
|
href="/beta/participate"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="beta-badge"
|
|
>
|
|
<span className="sr-only">{logsPaneBetaMessage}</span>
|
|
</a>
|
|
</OverlayTrigger>
|
|
)
|
|
}
|
|
|
|
PreviewFirstErrorPopUp.propTypes = {
|
|
logEntry: PropTypes.object.isRequired,
|
|
onGoToErrorLocation: PropTypes.func.isRequired,
|
|
onViewLogs: PropTypes.func.isRequired,
|
|
onClose: PropTypes.func.isRequired
|
|
}
|
|
|
|
export default PreviewFirstErrorPopUp
|