UNPKG

24.5 kBSource Map (JSON)View Raw
1{"version":3,"file":"hooks.module.js","sources":["../src/index.js"],"sourcesContent":["import { options as _options } from 'preact';\n\n/** @type {number} */\nlet currentIndex;\n\n/** @type {import('./internal').Component} */\nlet currentComponent;\n\n/** @type {import('./internal').Component} */\nlet previousComponent;\n\n/** @type {number} */\nlet currentHook = 0;\n\n/** @type {Array<import('./internal').Component>} */\nlet afterPaintEffects = [];\n\nlet EMPTY = [];\n\n// Cast to use internal Options type\nconst options = /** @type {import('./internal').Options} */ (_options);\n\nlet oldBeforeDiff = options._diff;\nlet oldBeforeRender = options._render;\nlet oldAfterDiff = options.diffed;\nlet oldCommit = options._commit;\nlet oldBeforeUnmount = options.unmount;\nlet oldRoot = options._root;\n\nconst RAF_TIMEOUT = 100;\nlet prevRaf;\n\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions._diff = vnode => {\n\tcurrentComponent = null;\n\tif (oldBeforeDiff) oldBeforeDiff(vnode);\n};\n\noptions._root = (vnode, parentDom) => {\n\tif (vnode && parentDom._children && parentDom._children._mask) {\n\t\tvnode._mask = parentDom._children._mask;\n\t}\n\n\tif (oldRoot) oldRoot(vnode, parentDom);\n};\n\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions._render = vnode => {\n\tif (oldBeforeRender) oldBeforeRender(vnode);\n\n\tcurrentComponent = vnode._component;\n\tcurrentIndex = 0;\n\n\tconst hooks = currentComponent.__hooks;\n\tif (hooks) {\n\t\tif (previousComponent === currentComponent) {\n\t\t\thooks._pendingEffects = [];\n\t\t\tcurrentComponent._renderCallbacks = [];\n\t\t\thooks._list.forEach(hookItem => {\n\t\t\t\tif (hookItem._nextValue) {\n\t\t\t\t\thookItem._value = hookItem._nextValue;\n\t\t\t\t}\n\t\t\t\thookItem._pendingValue = EMPTY;\n\t\t\t\thookItem._nextValue = hookItem._pendingArgs = undefined;\n\t\t\t});\n\t\t} else {\n\t\t\thooks._pendingEffects.forEach(invokeCleanup);\n\t\t\thooks._pendingEffects.forEach(invokeEffect);\n\t\t\thooks._pendingEffects = [];\n\t\t\tcurrentIndex = 0;\n\t\t}\n\t}\n\tpreviousComponent = currentComponent;\n};\n\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions.diffed = vnode => {\n\tif (oldAfterDiff) oldAfterDiff(vnode);\n\n\tconst c = vnode._component;\n\tif (c && c.__hooks) {\n\t\tif (c.__hooks._pendingEffects.length) afterPaint(afterPaintEffects.push(c));\n\t\tc.__hooks._list.forEach(hookItem => {\n\t\t\tif (hookItem._pendingArgs) {\n\t\t\t\thookItem._args = hookItem._pendingArgs;\n\t\t\t}\n\t\t\tif (hookItem._pendingValue !== EMPTY) {\n\t\t\t\thookItem._value = hookItem._pendingValue;\n\t\t\t}\n\t\t\thookItem._pendingArgs = undefined;\n\t\t\thookItem._pendingValue = EMPTY;\n\t\t});\n\t}\n\tpreviousComponent = currentComponent = null;\n};\n\n// TODO: Improve typing of commitQueue parameter\n/** @type {(vnode: import('./internal').VNode, commitQueue: any) => void} */\noptions._commit = (vnode, commitQueue) => {\n\tcommitQueue.some(component => {\n\t\ttry {\n\t\t\tcomponent._renderCallbacks.forEach(invokeCleanup);\n\t\t\tcomponent._renderCallbacks = component._renderCallbacks.filter(cb =>\n\t\t\t\tcb._value ? invokeEffect(cb) : true\n\t\t\t);\n\t\t} catch (e) {\n\t\t\tcommitQueue.some(c => {\n\t\t\t\tif (c._renderCallbacks) c._renderCallbacks = [];\n\t\t\t});\n\t\t\tcommitQueue = [];\n\t\t\toptions._catchError(e, component._vnode);\n\t\t}\n\t});\n\n\tif (oldCommit) oldCommit(vnode, commitQueue);\n};\n\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions.unmount = vnode => {\n\tif (oldBeforeUnmount) oldBeforeUnmount(vnode);\n\n\tconst c = vnode._component;\n\tif (c && c.__hooks) {\n\t\tlet hasErrored;\n\t\tc.__hooks._list.forEach(s => {\n\t\t\ttry {\n\t\t\t\tinvokeCleanup(s);\n\t\t\t} catch (e) {\n\t\t\t\thasErrored = e;\n\t\t\t}\n\t\t});\n\t\tc.__hooks = undefined;\n\t\tif (hasErrored) options._catchError(hasErrored, c._vnode);\n\t}\n};\n\n/**\n * Get a hook's state from the currentComponent\n * @param {number} index The index of the hook to get\n * @param {number} type The index of the hook to get\n * @returns {any}\n */\nfunction getHookState(index, type) {\n\tif (options._hook) {\n\t\toptions._hook(currentComponent, index, currentHook || type);\n\t}\n\tcurrentHook = 0;\n\n\t// Largely inspired by:\n\t// * https://github.com/michael-klein/funcy.js/blob/f6be73468e6ec46b0ff5aa3cc4c9baf72a29025a/src/hooks/core_hooks.mjs\n\t// * https://github.com/michael-klein/funcy.js/blob/650beaa58c43c33a74820a3c98b3c7079cf2e333/src/renderer.mjs\n\t// Other implementations to look at:\n\t// * https://codesandbox.io/s/mnox05qp8\n\tconst hooks =\n\t\tcurrentComponent.__hooks ||\n\t\t(currentComponent.__hooks = {\n\t\t\t_list: [],\n\t\t\t_pendingEffects: []\n\t\t});\n\n\tif (index >= hooks._list.length) {\n\t\thooks._list.push({ _pendingValue: EMPTY });\n\t}\n\n\treturn hooks._list[index];\n}\n\n/**\n * @template {unknown} S\n * @param {import('./index').Dispatch<import('./index').StateUpdater<S>>} [initialState]\n * @returns {[S, (state: S) => void]}\n */\nexport function useState(initialState) {\n\tcurrentHook = 1;\n\treturn useReducer(invokeOrReturn, initialState);\n}\n\n/**\n * @template {unknown} S\n * @template {unknown} A\n * @param {import('./index').Reducer<S, A>} reducer\n * @param {import('./index').Dispatch<import('./index').StateUpdater<S>>} initialState\n * @param {(initialState: any) => void} [init]\n * @returns {[ S, (state: S) => void ]}\n */\nexport function useReducer(reducer, initialState, init) {\n\t/** @type {import('./internal').ReducerHookState} */\n\tconst hookState = getHookState(currentIndex++, 2);\n\thookState._reducer = reducer;\n\tif (!hookState._component) {\n\t\thookState._value = [\n\t\t\t!init ? invokeOrReturn(undefined, initialState) : init(initialState),\n\n\t\t\taction => {\n\t\t\t\tconst currentValue = hookState._nextValue\n\t\t\t\t\t? hookState._nextValue[0]\n\t\t\t\t\t: hookState._value[0];\n\t\t\t\tconst nextValue = hookState._reducer(currentValue, action);\n\n\t\t\t\tif (currentValue !== nextValue) {\n\t\t\t\t\thookState._nextValue = [nextValue, hookState._value[1]];\n\t\t\t\t\thookState._component.setState({});\n\t\t\t\t}\n\t\t\t}\n\t\t];\n\n\t\thookState._component = currentComponent;\n\n\t\tif (!currentComponent._hasScuFromHooks) {\n\t\t\tcurrentComponent._hasScuFromHooks = true;\n\t\t\tlet prevScu = currentComponent.shouldComponentUpdate;\n\t\t\tconst prevCWU = currentComponent.componentWillUpdate;\n\n\t\t\t// If we're dealing with a forced update `shouldComponentUpdate` will\n\t\t\t// not be called. But we use that to update the hook values, so we\n\t\t\t// need to call it.\n\t\t\tcurrentComponent.componentWillUpdate = function (p, s, c) {\n\t\t\t\tif (this._force) {\n\t\t\t\t\tlet tmp = prevScu;\n\t\t\t\t\t// Clear to avoid other sCU hooks from being called\n\t\t\t\t\tprevScu = undefined;\n\t\t\t\t\tupdateHookState(p, s, c);\n\t\t\t\t\tprevScu = tmp;\n\t\t\t\t}\n\n\t\t\t\tif (prevCWU) prevCWU.call(this, p, s, c);\n\t\t\t};\n\n\t\t\t// This SCU has the purpose of bailing out after repeated updates\n\t\t\t// to stateful hooks.\n\t\t\t// we store the next value in _nextValue[0] and keep doing that for all\n\t\t\t// state setters, if we have next states and\n\t\t\t// all next states within a component end up being equal to their original state\n\t\t\t// we are safe to bail out for this specific component.\n\t\t\t/**\n\t\t\t *\n\t\t\t * @type {import('./internal').Component[\"shouldComponentUpdate\"]}\n\t\t\t */\n\t\t\t// @ts-ignore - We don't use TS to downtranspile\n\t\t\t// eslint-disable-next-line no-inner-declarations\n\t\t\tfunction updateHookState(p, s, c) {\n\t\t\t\tif (!hookState._component.__hooks) return true;\n\n\t\t\t\t/** @type {(x: import('./internal').HookState) => x is import('./internal').ReducerHookState} */\n\t\t\t\tconst isStateHook = x => !!x._component;\n\t\t\t\tconst stateHooks =\n\t\t\t\t\thookState._component.__hooks._list.filter(isStateHook);\n\n\t\t\t\tconst allHooksEmpty = stateHooks.every(x => !x._nextValue);\n\t\t\t\t// When we have no updated hooks in the component we invoke the previous SCU or\n\t\t\t\t// traverse the VDOM tree further.\n\t\t\t\tif (allHooksEmpty) {\n\t\t\t\t\treturn prevScu ? prevScu.call(this, p, s, c) : true;\n\t\t\t\t}\n\n\t\t\t\t// We check whether we have components with a nextValue set that\n\t\t\t\t// have values that aren't equal to one another this pushes\n\t\t\t\t// us to update further down the tree\n\t\t\t\tlet shouldUpdate = false;\n\t\t\t\tstateHooks.forEach(hookItem => {\n\t\t\t\t\tif (hookItem._nextValue) {\n\t\t\t\t\t\tconst currentValue = hookItem._value[0];\n\t\t\t\t\t\thookItem._value = hookItem._nextValue;\n\t\t\t\t\t\thookItem._nextValue = undefined;\n\t\t\t\t\t\tif (currentValue !== hookItem._value[0]) shouldUpdate = true;\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\treturn shouldUpdate || hookState._component.props !== p\n\t\t\t\t\t? prevScu\n\t\t\t\t\t\t? prevScu.call(this, p, s, c)\n\t\t\t\t\t\t: true\n\t\t\t\t\t: false;\n\t\t\t}\n\n\t\t\tcurrentComponent.shouldComponentUpdate = updateHookState;\n\t\t}\n\t}\n\n\treturn hookState._nextValue || hookState._value;\n}\n\n/**\n * @param {import('./internal').Effect} callback\n * @param {unknown[]} args\n * @returns {void}\n */\nexport function useEffect(callback, args) {\n\t/** @type {import('./internal').EffectHookState} */\n\tconst state = getHookState(currentIndex++, 3);\n\tif (!options._skipEffects && argsChanged(state._args, args)) {\n\t\tstate._value = callback;\n\t\tstate._pendingArgs = args;\n\n\t\tcurrentComponent.__hooks._pendingEffects.push(state);\n\t}\n}\n\n/**\n * @param {import('./internal').Effect} callback\n * @param {unknown[]} args\n * @returns {void}\n */\nexport function useLayoutEffect(callback, args) {\n\t/** @type {import('./internal').EffectHookState} */\n\tconst state = getHookState(currentIndex++, 4);\n\tif (!options._skipEffects && argsChanged(state._args, args)) {\n\t\tstate._value = callback;\n\t\tstate._pendingArgs = args;\n\n\t\tcurrentComponent._renderCallbacks.push(state);\n\t}\n}\n\n/** @type {(initialValue: unknown) => unknown} */\nexport function useRef(initialValue) {\n\tcurrentHook = 5;\n\treturn useMemo(() => ({ current: initialValue }), []);\n}\n\n/**\n * @param {object} ref\n * @param {() => object} createHandle\n * @param {unknown[]} args\n * @returns {void}\n */\nexport function useImperativeHandle(ref, createHandle, args) {\n\tcurrentHook = 6;\n\tuseLayoutEffect(\n\t\t() => {\n\t\t\tif (typeof ref == 'function') {\n\t\t\t\tref(createHandle());\n\t\t\t\treturn () => ref(null);\n\t\t\t} else if (ref) {\n\t\t\t\tref.current = createHandle();\n\t\t\t\treturn () => (ref.current = null);\n\t\t\t}\n\t\t},\n\t\targs == null ? args : args.concat(ref)\n\t);\n}\n\n/**\n * @template {unknown} T\n * @param {() => T} factory\n * @param {unknown[]} args\n * @returns {T}\n */\nexport function useMemo(factory, args) {\n\t/** @type {import('./internal').MemoHookState<T>} */\n\tconst state = getHookState(currentIndex++, 7);\n\tif (argsChanged(state._args, args)) {\n\t\tstate._pendingValue = factory();\n\t\tstate._pendingArgs = args;\n\t\tstate._factory = factory;\n\t\treturn state._pendingValue;\n\t}\n\n\treturn state._value;\n}\n\n/**\n * @param {() => void} callback\n * @param {unknown[]} args\n * @returns {() => void}\n */\nexport function useCallback(callback, args) {\n\tcurrentHook = 8;\n\treturn useMemo(() => callback, args);\n}\n\n/**\n * @param {import('./internal').PreactContext} context\n */\nexport function useContext(context) {\n\tconst provider = currentComponent.context[context._id];\n\t// We could skip this call here, but than we'd not call\n\t// `options._hook`. We need to do that in order to make\n\t// the devtools aware of this hook.\n\t/** @type {import('./internal').ContextHookState} */\n\tconst state = getHookState(currentIndex++, 9);\n\t// The devtools needs access to the context object to\n\t// be able to pull of the default value when no provider\n\t// is present in the tree.\n\tstate._context = context;\n\tif (!provider) return context._defaultValue;\n\t// This is probably not safe to convert to \"!\"\n\tif (state._value == null) {\n\t\tstate._value = true;\n\t\tprovider.sub(currentComponent);\n\t}\n\treturn provider.props.value;\n}\n\n/**\n * Display a custom label for a custom hook for the devtools panel\n * @type {<T>(value: T, cb?: (value: T) => string | number) => void}\n */\nexport function useDebugValue(value, formatter) {\n\tif (options.useDebugValue) {\n\t\toptions.useDebugValue(\n\t\t\tformatter ? formatter(value) : /** @type {any}*/ (value)\n\t\t);\n\t}\n}\n\n/**\n * @param {(error: unknown, errorInfo: import('preact').ErrorInfo) => void} cb\n * @returns {[unknown, () => void]}\n */\nexport function useErrorBoundary(cb) {\n\t/** @type {import('./internal').ErrorBoundaryHookState} */\n\tconst state = getHookState(currentIndex++, 10);\n\tconst errState = useState();\n\tstate._value = cb;\n\tif (!currentComponent.componentDidCatch) {\n\t\tcurrentComponent.componentDidCatch = (err, errorInfo) => {\n\t\t\tif (state._value) state._value(err, errorInfo);\n\t\t\terrState[1](err);\n\t\t};\n\t}\n\treturn [\n\t\terrState[0],\n\t\t() => {\n\t\t\terrState[1](undefined);\n\t\t}\n\t];\n}\n\n/** @type {() => string} */\nexport function useId() {\n\t/** @type {import('./internal').IdHookState} */\n\tconst state = getHookState(currentIndex++, 11);\n\tif (!state._value) {\n\t\t// Grab either the root node or the nearest async boundary node.\n\t\t/** @type {import('./internal.d').VNode} */\n\t\tlet root = currentComponent._vnode;\n\t\twhile (root !== null && !root._mask && root._parent !== null) {\n\t\t\troot = root._parent;\n\t\t}\n\n\t\tlet mask = root._mask || (root._mask = [0, 0]);\n\t\tstate._value = 'P' + mask[0] + '-' + mask[1]++;\n\t}\n\n\treturn state._value;\n}\n\n/**\n * After paint effects consumer.\n */\nfunction flushAfterPaintEffects() {\n\tlet component;\n\twhile ((component = afterPaintEffects.shift())) {\n\t\tif (!component._parentDom || !component.__hooks) continue;\n\t\ttry {\n\t\t\tcomponent.__hooks._pendingEffects.forEach(invokeCleanup);\n\t\t\tcomponent.__hooks._pendingEffects.forEach(invokeEffect);\n\t\t\tcomponent.__hooks._pendingEffects = [];\n\t\t} catch (e) {\n\t\t\tcomponent.__hooks._pendingEffects = [];\n\t\t\toptions._catchError(e, component._vnode);\n\t\t}\n\t}\n}\n\nlet HAS_RAF = typeof requestAnimationFrame == 'function';\n\n/**\n * Schedule a callback to be invoked after the browser has a chance to paint a new frame.\n * Do this by combining requestAnimationFrame (rAF) + setTimeout to invoke a callback after\n * the next browser frame.\n *\n * Also, schedule a timeout in parallel to the the rAF to ensure the callback is invoked\n * even if RAF doesn't fire (for example if the browser tab is not visible)\n *\n * @param {() => void} callback\n */\nfunction afterNextFrame(callback) {\n\tconst done = () => {\n\t\tclearTimeout(timeout);\n\t\tif (HAS_RAF) cancelAnimationFrame(raf);\n\t\tsetTimeout(callback);\n\t};\n\tconst timeout = setTimeout(done, RAF_TIMEOUT);\n\n\tlet raf;\n\tif (HAS_RAF) {\n\t\traf = requestAnimationFrame(done);\n\t}\n}\n\n// Note: if someone used options.debounceRendering = requestAnimationFrame,\n// then effects will ALWAYS run on the NEXT frame instead of the current one, incurring a ~16ms delay.\n// Perhaps this is not such a big deal.\n/**\n * Schedule afterPaintEffects flush after the browser paints\n * @param {number} newQueueLength\n * @returns {void}\n */\nfunction afterPaint(newQueueLength) {\n\tif (newQueueLength === 1 || prevRaf !== options.requestAnimationFrame) {\n\t\tprevRaf = options.requestAnimationFrame;\n\t\t(prevRaf || afterNextFrame)(flushAfterPaintEffects);\n\t}\n}\n\n/**\n * @param {import('./internal').HookState} hook\n * @returns {void}\n */\nfunction invokeCleanup(hook) {\n\t// A hook cleanup can introduce a call to render which creates a new root, this will call options.vnode\n\t// and move the currentComponent away.\n\tconst comp = currentComponent;\n\tlet cleanup = hook._cleanup;\n\tif (typeof cleanup == 'function') {\n\t\thook._cleanup = undefined;\n\t\tcleanup();\n\t}\n\n\tcurrentComponent = comp;\n}\n\n/**\n * Invoke a Hook's effect\n * @param {import('./internal').EffectHookState} hook\n * @returns {void}\n */\nfunction invokeEffect(hook) {\n\t// A hook call can introduce a call to render which creates a new root, this will call options.vnode\n\t// and move the currentComponent away.\n\tconst comp = currentComponent;\n\thook._cleanup = hook._value();\n\tcurrentComponent = comp;\n}\n\n/**\n * @param {unknown[]} oldArgs\n * @param {unknown[]} newArgs\n * @returns {boolean}\n */\nfunction argsChanged(oldArgs, newArgs) {\n\treturn (\n\t\t!oldArgs ||\n\t\toldArgs.length !== newArgs.length ||\n\t\tnewArgs.some((arg, index) => arg !== oldArgs[index])\n\t);\n}\n\n/**\n * @template Arg\n * @param {Arg} arg\n * @param {(arg: Arg) => any} f\n * @returns {any}\n */\nfunction invokeOrReturn(arg, f) {\n\treturn typeof f == 'function' ? f(arg) : f;\n}\n"],"names":["currentIndex","currentComponent","previousComponent","prevRaf","currentHook","afterPaintEffects","EMPTY","options","_options","oldBeforeDiff","__b","oldBeforeRender","__r","oldAfterDiff","diffed","oldCommit","__c","oldBeforeUnmount","unmount","oldRoot","__","getHookState","index","type","__h","hooks","__H","length","push","__V","useState","initialState","useReducer","invokeOrReturn","reducer","init","hookState","_reducer","undefined","action","currentValue","__N","nextValue","setState","_hasScuFromHooks","updateHookState","p","s","c","stateHooks","filter","x","every","prevScu","call","this","shouldUpdate","forEach","hookItem","props","shouldComponentUpdate","prevCWU","componentWillUpdate","__e","tmp","useEffect","callback","args","state","argsChanged","_pendingArgs","useLayoutEffect","__s","useRef","initialValue","useMemo","current","useImperativeHandle","ref","createHandle","concat","factory","useCallback","useContext","context","provider","sub","value","useDebugValue","formatter","useErrorBoundary","cb","errState","componentDidCatch","err","errorInfo","useId","root","__m","mask","flushAfterPaintEffects","component","shift","__P","invokeCleanup","invokeEffect","e","__v","vnode","parentDom","__k","requestAnimationFrame","afterNextFrame","commitQueue","some","hasErrored","HAS_RAF","raf","done","clearTimeout","timeout","cancelAnimationFrame","setTimeout","hook","comp","cleanup","oldArgs","newArgs","arg","f"],"mappings":"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"}
\No newline at end of file