📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
This commit is contained in:
38
frontend/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.mjs
generated
vendored
Normal file
38
frontend/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.mjs
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import { useCallback } from 'react';
|
||||
import { isRefObject } from '../../utils/is-ref-object.mjs';
|
||||
|
||||
/**
|
||||
* Creates a ref function that, when called, hydrates the provided
|
||||
* external ref and VisualElement.
|
||||
*/
|
||||
function useMotionRef(visualState, visualElement, externalRef) {
|
||||
return useCallback((instance) => {
|
||||
if (instance) {
|
||||
visualState.onMount && visualState.onMount(instance);
|
||||
}
|
||||
if (visualElement) {
|
||||
if (instance) {
|
||||
visualElement.mount(instance);
|
||||
}
|
||||
else {
|
||||
visualElement.unmount();
|
||||
}
|
||||
}
|
||||
if (externalRef) {
|
||||
if (typeof externalRef === "function") {
|
||||
externalRef(instance);
|
||||
}
|
||||
else if (isRefObject(externalRef)) {
|
||||
externalRef.current = instance;
|
||||
}
|
||||
}
|
||||
},
|
||||
/**
|
||||
* Only pass a new ref callback to React if we've received a visual element
|
||||
* factory. Otherwise we'll be mounting/remounting every time externalRef
|
||||
* or other dependencies change.
|
||||
*/
|
||||
[visualElement]);
|
||||
}
|
||||
|
||||
export { useMotionRef };
|
||||
Reference in New Issue
Block a user