Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core] Add useTransitionStatus and useExecuteIfNotAnimated Hooks #396

Merged
merged 10 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions packages/mui-base/src/utils/useExecuteIfNotAnimated.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
'use client';
import * as React from 'react';
import { useEventCallback } from './useEventCallback';
import { ownerWindow } from './owner';

/**
* Executes a function only if the given element has no CSS animations or transitions.
* @ignore - internal hook.
*/
export function useExecuteIfNotAnimated(getElement: () => Element | null | undefined) {
const frame1Ref = React.useRef(-1);
const frame2Ref = React.useRef(-1);

const cancelFrames = useEventCallback(() => {
cancelAnimationFrame(frame1Ref.current);
cancelAnimationFrame(frame2Ref.current);
});

React.useEffect(() => cancelFrames, [cancelFrames]);

return useEventCallback((fnToExecute: () => void) => {
cancelFrames();

const element = getElement();

if (!element) {
return;
}

// Wait for the CSS styles to be applied to determine if the animation has been removed in the
// [data-instant] state. This allows the close animation to play if the `delay` instantType is
// applying to the same element.
// Notes:
// - A single `requestAnimationFrame` is sometimes unreliable.
// - `queueMicrotask` does not work.
frame1Ref.current = requestAnimationFrame(() => {
frame2Ref.current = requestAnimationFrame(() => {
const computedStyles = ownerWindow(element).getComputedStyle(element);
const hasNoAnimation =
['', 'none'].includes(computedStyles.animationName) ||
['', '0s'].includes(computedStyles.animationDuration);
const hasNoTransition = ['', '0s'].includes(computedStyles.transitionDuration);
if (hasNoAnimation && hasNoTransition) {
fnToExecute();
}
});
});
});
}
52 changes: 52 additions & 0 deletions packages/mui-base/src/utils/useTransitionStatus.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
'use client';
import * as React from 'react';
import { useEnhancedEffect } from './useEnhancedEffect';

export type TransitionStatus = 'entering' | 'exiting' | undefined;

/**
* Provides a status string for CSS animations.
* @param open - a boolean that determines if the element is open.
* @ignore - internal hook.
*/
export function useTransitionStatus(open: boolean) {
const [transitionStatus, setTransitionStatus] = React.useState<TransitionStatus>();
const [mounted, setMounted] = React.useState(open);

if (open && !mounted) {
setMounted(true);
}

if (!open && mounted && transitionStatus !== 'exiting') {
setTransitionStatus('exiting');
}

if (!open && !mounted && transitionStatus === 'exiting') {
setTransitionStatus(undefined);
}

useEnhancedEffect(() => {
if (!open) {
return undefined;
}

setTransitionStatus('entering');

const frame = requestAnimationFrame(() => {
setTransitionStatus(undefined);
});

return () => {
cancelAnimationFrame(frame);
};
}, [open]);

return React.useMemo(
() => ({
mounted,
setMounted,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does it make sense to call setMounted(true) from outside of this hook? If not, we could return an onAnimationEnd callback that will call setMounted(false) (and maybe also setTransitionStatus(undefined)?)

Copy link
Contributor Author

@atomiks atomiks May 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

setMounted gives them the freedom to perform more complex checks and keeps its responsibility minimal. For example, due to the wrapper in anchored popups, the checks in animationend/transitionend may differ. This gives full control.

Example:

      function handleEnd({ target }: React.SyntheticEvent) {
        const popupElement = refs.floating.current?.firstElementChild;
        if (target === popupElement && setMounted) {
          setMounted((prevMounted) => (prevMounted ? false : prevMounted));
        }
      }

transitionStatus,
}),
[mounted, transitionStatus],
);
}