Skip to content
Snippets Groups Projects
Unverified Commit ae573b0e authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Disable expanding content transition when reduced-motion is preferred (#18636)

parent b8c7ee22
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@
import React, { Component } from "react";
import cx from "classnames";
import { isReducedMotionPreferred } from "metabase/lib/dom";
class ExpandingContent extends Component {
constructor({ isInitiallyOpen }) {
super();
......@@ -49,6 +51,9 @@ class ExpandingContent extends Component {
render() {
const { children, duration, animateHeight, animateOpacity } = this.props;
const transition = isReducedMotionPreferred()
? `none`
: `all ${duration}ms ease`;
const { isOpen, isTransitioning } = this.state;
// get the actual content height (after the first render)
const maxHeight = isTransitioning
......@@ -58,7 +63,7 @@ class ExpandingContent extends Component {
<div
ref={ref => (this._ref = ref)}
style={{
transition: `all ${duration}ms ease`,
transition,
maxHeight: !animateHeight || isOpen ? maxHeight : 0,
opacity: !animateOpacity || isOpen ? 1 : 0,
}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment