mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00
47 lines
1 KiB
TypeScript
47 lines
1 KiB
TypeScript
import { GlobalToastGeneratorEntry } from '@/features/ide-react/components/global-toasts'
|
|
import { useTranslation } from 'react-i18next'
|
|
import OLButton from '@/features/ui/components/ol/ol-button'
|
|
|
|
export const SynctexFileErrorToast = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="synctex-error-toast-content">
|
|
<span>{t('synctex_failed')}</span>
|
|
|
|
<OLButton
|
|
href="/learn/how-to/SyncTeX_Errors"
|
|
target="_blank"
|
|
variant="secondary"
|
|
size="sm"
|
|
>
|
|
{t('more_info')}
|
|
</OLButton>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const generators: GlobalToastGeneratorEntry[] = [
|
|
{
|
|
key: 'synctex:file-error',
|
|
generator: () => ({
|
|
content: <SynctexFileErrorToast />,
|
|
type: 'warning',
|
|
autoHide: true,
|
|
delay: 4000,
|
|
isDismissible: true,
|
|
}),
|
|
},
|
|
]
|
|
|
|
export default generators
|
|
|
|
export const showFileErrorToast = () => {
|
|
window.dispatchEvent(
|
|
new CustomEvent('ide:show-toast', {
|
|
detail: {
|
|
key: 'synctex:file-error',
|
|
},
|
|
})
|
|
)
|
|
}
|