about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/util/optional_motion.js
blob: 4276eeaa4990ef0aa7547e800c4707aae58f7766 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Like react-motion's Motion, but checks to see if the user prefers
// reduced motion and uses a cross-fade in those cases.

import Motion from 'react-motion/lib/Motion';
import { connect } from 'react-redux';

const stylesToKeep = ['opacity', 'backgroundOpacity'];

const extractValue = (value) => {
  // This is either an object with a "val" property or it's a number
  return (typeof value === 'object' && value && 'val' in value) ? value.val : value;
};

const mapStateToProps = (state, ownProps) => {
  const reduceMotion = state.getIn(['meta', 'reduce_motion']);

  if (reduceMotion) {
    const { style, defaultStyle } = ownProps;

    Object.keys(style).forEach(key => {
      if (stylesToKeep.includes(key)) {
        return;
      }
      // If it's setting an x or height or scale or some other value, we need
      // to preserve the end-state value without actually animating it
      style[key] = defaultStyle[key] = extractValue(style[key]);
    });

    return { style, defaultStyle };
  }
  return {};
};

export default connect(mapStateToProps)(Motion);