| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import { memo, useCallback } from 'react'
- import { sendMBOnce } from '../../../infrastructure/event-tracking'
- import { Button } from 'react-bootstrap'
- import Icon from '../../../shared/components/icon'
- import { useTranslation } from 'react-i18next'
- import { useCompileContext } from '../../../shared/context/compile-context'
- function PdfHybridCodeCheckButton() {
- const { codeCheckFailed, error, setShowLogs } = useCompileContext()
- const { t } = useTranslation()
- const handleClick = useCallback(() => {
- setShowLogs(value => {
- if (!value) {
- sendMBOnce('ide-open-logs-once')
- }
- return !value
- })
- }, [setShowLogs])
- if (!codeCheckFailed) {
- return null
- }
- return (
- <Button
- bsSize="xsmall"
- bsStyle="danger"
- disabled={Boolean(error)}
- className="btn-toggle-logs toolbar-item"
- onClick={handleClick}
- >
- <Icon type="exclamation-triangle" />
- <span className="toolbar-text toolbar-hide-small">
- {t('code_check_failed')}
- </span>
- </Button>
- )
- }
- export default memo(PdfHybridCodeCheckButton)
|