Skip to content

Commit

Permalink
Fix GIF avatars not autoplaying when GIF autoplay is enabled (#6000)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargron committed Dec 13, 2017
1 parent 81923f8 commit 155e211
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
5 changes: 3 additions & 2 deletions app/javascript/mastodon/components/avatar.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { autoPlayGif } from '../initial_state';

export default class Avatar extends React.PureComponent {

static propTypes = {
account: ImmutablePropTypes.map.isRequired,
size: PropTypes.number.isRequired,
style: PropTypes.object,
animate: PropTypes.bool,
inline: PropTypes.bool,
animate: PropTypes.bool,
};

static defaultProps = {
animate: false,
animate: autoPlayGif,
size: 20,
inline: false,
};
Expand Down
13 changes: 10 additions & 3 deletions app/javascript/mastodon/components/avatar_overlay.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { autoPlayGif } from '../initial_state';

export default class AvatarOverlay extends React.PureComponent {

static propTypes = {
account: ImmutablePropTypes.map.isRequired,
friend: ImmutablePropTypes.map.isRequired,
animate: PropTypes.bool,
};

static defaultProps = {
animate: autoPlayGif,
};

render() {
const { account, friend } = this.props;
const { account, friend, animate } = this.props;

const baseStyle = {
backgroundImage: `url(${account.get('avatar_static')})`,
backgroundImage: `url(${account.get(animate ? 'avatar' : 'avatar_static')})`,
};

const overlayStyle = {
backgroundImage: `url(${friend.get('avatar_static')})`,
backgroundImage: `url(${friend.get(animate ? 'avatar' : 'avatar_static')})`,
};

return (
Expand Down

0 comments on commit 155e211

Please sign in to comment.