| import { captureException } from '@automattic/calypso-sentry'; | |
| import { useCallback } from 'react'; | |
| import { useIntent } from './use-intent'; | |
| import { useSite } from './use-site'; | |
| const useCaptureFlowException = ( flowName: string | null, stepName: string ) => { | |
| const flow = flowName || 'default'; | |
| const intent = useIntent() || null; | |
| const site = useSite(); | |
| return useCallback( | |
| ( error: any ) => { | |
| captureException( error, { | |
| tags: { | |
| blog_id: site?.ID || null, | |
| calypso_section: 'setup', | |
| flow, | |
| intent, | |
| stepName, | |
| }, | |
| } ); | |
| }, | |
| [ flow, intent, site ] | |
| ); | |
| }; | |
| export default useCaptureFlowException; | |