1.0.22 • Published 3 months ago

use-modal-transition v1.0.22

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

useModalTransition hook

This is a react hook for adding transition between an element on your page and an element in modal.

Features

  • Based on the “flip animation technique”,
  • Support react and nextjs,
  • It's a hook, so there's no problem with the container ruining your style
  • Use the Web Animations API (WAAPI),
  • Lightweight,
  • Wait until image in modal is loaded,
  • Images in Modal height and width property can be set to “auto” (when “imgLoaded” added),
  • Works with “srcset” and "sizes" (when “imgLoaded” added),
  • Many configuration options,
  • Tested in Cypress

Demo

https://use-modal-transition.vercel.app/

Setup

To run this project, install it locally using npm:

npm i use-modal-transition

Quick start

1) Import the “useModalTransition” hook:

import useModalTransition from "use-modal-transition";

2) Assign refs to the elements you want to animate.

const firstElemRef = useRef<HTMLDivElement>(null);
const modalElemRef = useRef<HTMLDivElement>(null);

<Modal isOpen={isOpen} onClose={onClose}>
   <div ref={modalElemRef}></div>
</Modal>

<div ref={firstElemRef}></div> 

3) Create a state for the modal

const [isOpen, setIsOpen] = useState(false);

4) Call the hook and pass the references and modal state

 useModalTransition({
    modalOpened: isOpen,
    firstElemRef,
    modalElemRef,
  });

5) Change the state onClick to start the animation.

 return (
    <>
    <Modal isOpen={isOpen} onClose={onClose}>
        <div
          onClick={() => {
            setIsOpen(false);
          }}
          ref={modalElemRef}>
        </div>
     </Modal>
      
     <div
       ref={firstElemRef}
       onClick={() => {
       setIsOpen(true);
       }}>
     </div>
 
    </>
  );

Usage details

PropertyDefaultTypeDetails
modalOpened-booleanChanging this to „true” starts opening the animation, changing to “false” starts closing the animation.
firstElemRef(ref)-React.RefObjectReference to an element on the page, needed to download the dimensions for the animation.
modalElemRef(ref)-React.RefObjectReference to an element in the modal, needed to download the dimensions for the animation.
openDuration280numberOpening the animation duration (ms).
closeDuration280numberClosing the animation duration (ms).
imgLoaded-booleanYou have to pass the result of img tag “onload” event or “onLoadingComplete” from the NextJS Component. Highly recommended when you make the transition between images.
modalSelector-stringIt accepts querySelector selectors. To prevent flickering when you have the transition between images. You can do the same by using “modalRef”.
modalRef(ref)-React.RefObjectAccept the ref which have access to your Modal. To prevent flickering when you have the transition between images. You can do the same by using “modalSelector”.
hideFirstElemtruebooleanIt hides the first element when the modal is opened.
disableOpenAnimationfalsebooleanSet it to ‘true’ when you have to disable the opening of the animation.
disableCloseAnimationfalsebooleanSet it to true when you have to disable closing the animation.
openEasing“ease-in”stringOpen the animation easing function. You can pass here e.g. cubic-bezier.
closeEasing“ease-out”stringClose the animation easing function. You can pass here e.g. cubic-bezier.
transformOrigincenterstringtransformOrigin CSS property value.
pauseOnOpenfalsebooleanA property for debugging. Pause an element before the animation starts. It works on the firstElemRef (opening the animation).
pauseOnClosefalsebooleanA property for debugging. Pause an element before the animation starts. It works on modalElemRef (close animation).
onOpenAnimationStart-function(element: HTMLElement)Called when the opening animation is ready to start. It is provided a reference to the DOM element (modalElemRef) being transitioned as the argument.
onOpenAnimationEnd-function(element: HTMLElement)Called when the opening animation is finished. It is provided a reference to the DOM element (modalElemRef) being transitioned as the argument.
onCloseAnimationStart-function(element: HTMLElement)Called when the closing animation is ready to start. It is provided a reference to the DOM element (firstElemRef) being transitioned as the argument.
onCloseAnimationEnd-function(element: HTMLElement)Called when the closing animation is finished. It is provided a reference to the DOM element (firstElemRef) being transitioned as the argument.
activeIndex-number / stringThis must be the ID of your active element. You need this when you want the first element to become visible after changing its ID. If you have hideFirstElem set to false, you don't need it.

Functions that hook returns

Hook returns a function called "restartAnimation", which can be used to restart the animation. A practical example of its usage is when you have a lightbox and you want to restart the animation each time you change a slide.

Examples on Codesandbox

Squares

https://codesandbox.io/p/devbox/squares-dm9f8w

Gallery

https://codesandbox.io/p/devbox/gallery-wf2r4t

Contact Button

https://codesandbox.io/p/devbox/contactbtn-rqgl9t

Possible problems

An element is being covered by others

Solution: use the callback functions (onOpenAnimationStart, onOpenAnimationEnd, onCloseAnimationStart, onCloseAnimationEnd) to change the “z-index” property during the animation.

Container with the overflow: "hidden" property covers an element

Solution: use the callback functions (onOpenAnimationStart, onOpenAnimationEnd, onCloseAnimationStart, onCloseAnimationEnd) to change the “overflow” property during the animation.

Sometimes the animation doesn't start(when use images)

Solution: When you use the images you have to pass the “imgLoaded” prop to hook.

Elements are distorted during the animation

Solution: Check that you are not animating any parent elements that are larger than the elements you want to animate. You can use the prop “pauseOnOpen” or “PauseOnClose”. During the animation the element should perfectly cover the element that is going to be under it.

The "restartAnimation" function is causing flickering.

Solution: Try calling the "restartAnimation" function in the "useLayoutEffect" hook.

About the flip animation technique

https://css-tricks.com/animating-layouts-with-the-flip-technique/

1.0.22

3 months ago

1.0.21

4 months ago

1.0.20

4 months ago

1.0.19

4 months ago

1.0.18

5 months ago

1.0.17

5 months ago

1.0.16

5 months ago

1.0.11

5 months ago

1.0.15

5 months ago

1.0.14

5 months ago

1.0.13

5 months ago

1.0.12

5 months ago

1.0.10

5 months ago

1.0.9

5 months ago

1.0.8

5 months ago

1.0.7

5 months ago

1.0.6

5 months ago

1.0.5

5 months ago

1.0.4

5 months ago

1.0.3

5 months ago

1.0.2

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago