mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
d959dbc236
[web] Shared React hooks JS to TS conversion GitOrigin-RevId: 0ccdebff236c7424b1a73cd7d6646a9d01a20eb1
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { useCallback } from 'react'
|
|
import { useDetachCompileContext as useCompileContext } from '../context/detach-compile-context'
|
|
import { useProjectContext } from '../context/project-context'
|
|
import * as eventTracking from '../../infrastructure/event-tracking'
|
|
|
|
type UseStopOnFirstErrorProps = {
|
|
eventSource?: string
|
|
}
|
|
|
|
export function useStopOnFirstError(opts: UseStopOnFirstErrorProps = {}) {
|
|
const { eventSource } = opts
|
|
const { stopOnFirstError, setStopOnFirstError } = useCompileContext()
|
|
const { _id: projectId } = useProjectContext()
|
|
|
|
type Opts = {
|
|
projectId: string
|
|
source?: UseStopOnFirstErrorProps['eventSource']
|
|
}
|
|
|
|
const enableStopOnFirstError = useCallback(() => {
|
|
if (!stopOnFirstError) {
|
|
const opts: Opts = { projectId }
|
|
if (eventSource) {
|
|
opts.source = eventSource
|
|
}
|
|
eventTracking.sendMB('stop-on-first-error-enabled', opts)
|
|
}
|
|
setStopOnFirstError(true)
|
|
}, [eventSource, projectId, stopOnFirstError, setStopOnFirstError])
|
|
|
|
const disableStopOnFirstError = useCallback(() => {
|
|
const opts: Opts = { projectId }
|
|
if (eventSource) {
|
|
opts.source = eventSource
|
|
}
|
|
if (stopOnFirstError) {
|
|
eventTracking.sendMB('stop-on-first-error-disabled', opts)
|
|
}
|
|
setStopOnFirstError(false)
|
|
}, [eventSource, projectId, stopOnFirstError, setStopOnFirstError])
|
|
|
|
return { enableStopOnFirstError, disableStopOnFirstError }
|
|
}
|