mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ae76850d39
GitOrigin-RevId: df957893c8495c582d721716daa20030deb02f72
22 lines
595 B
JavaScript
22 lines
595 B
JavaScript
import { useEffect } from 'react'
|
|
import fetchMock from 'fetch-mock'
|
|
fetchMock.config.fallbackToNetwork = true
|
|
|
|
/**
|
|
* Run callback to mock fetch routes, call restore() when unmounted
|
|
*/
|
|
export default function useFetchMock(callback) {
|
|
useEffect(() => {
|
|
return () => {
|
|
fetchMock.restore()
|
|
}
|
|
}, [])
|
|
|
|
// Running fetchMock.restore() here as well,
|
|
// in case there was an error before the component was unmounted.
|
|
fetchMock.restore()
|
|
|
|
// The callback has to be run here, rather than in useEffect,
|
|
// so it's run before the component is rendered.
|
|
callback(fetchMock)
|
|
}
|