{"version":3,"file":"useForceUpdate-98c9167a.js","sources":["../../../../../../app/node_modules/@restart/hooks/esm/useForceUpdate.js"],"sourcesContent":["import { useReducer } from 'react';\n\n/**\n * Returns a function that triggers a component update. the hook equivalent to\n * `this.forceUpdate()` in a class component. In most cases using a state value directly\n * is preferable but may be required in some advanced usages of refs for interop or\n * when direct DOM manipulation is required.\n *\n * ```ts\n * const forceUpdate = useForceUpdate();\n *\n * const updateOnClick = useCallback(() => {\n * forceUpdate()\n * }, [forceUpdate])\n *\n * return \n * ```\n */\nexport default function useForceUpdate() {\n // The toggling state value is designed to defeat React optimizations for skipping\n // updates when they are strictly equal to the last state value\n const [, dispatch] = useReducer(state => !state, false);\n return dispatch;\n}"],"names":["useForceUpdate","dispatch","useReducer","state"],"mappings":"wCAkBe,SAASA,GAAiB,CAGvC,KAAM,CAAA,CAAGC,CAAQ,EAAIC,EAAU,WAACC,GAAS,CAACA,EAAO,EAAK,EACtD,OAAOF,CACT","x_google_ignoreList":[0]}