2020-11-16 05:01:01 -05:00
|
|
|
import React from 'react'
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import Icon from '../../../shared/components/icon'
|
2020-11-26 04:58:42 -05:00
|
|
|
import PreviewLogsPaneEntry from './preview-logs-pane-entry'
|
2020-11-16 05:01:01 -05:00
|
|
|
|
|
|
|
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')}
|
|
|
|
>
|
2020-11-26 04:58:42 -05:00
|
|
|
<PreviewLogsPaneEntry
|
|
|
|
headerTitle={logEntry.message}
|
|
|
|
rawContent={logEntry.content}
|
|
|
|
formattedContent={logEntry.humanReadableHintComponent}
|
|
|
|
extraInfoURL={logEntry.extraInfoURL}
|
|
|
|
level={logEntry.level}
|
2020-11-16 05:01:01 -05:00
|
|
|
showLineAndNoLink={false}
|
|
|
|
showCloseButton
|
|
|
|
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>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
PreviewFirstErrorPopUp.propTypes = {
|
|
|
|
logEntry: PropTypes.object.isRequired,
|
|
|
|
onGoToErrorLocation: PropTypes.func.isRequired,
|
|
|
|
onViewLogs: PropTypes.func.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PreviewFirstErrorPopUp
|