Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
var width = this.props.small ? 100 : 220;
var height = this.props.small ? 100 : 220;
var style = {
alignSelf: 'center',
marginTop: '20px',
objectFit: 'cover',
height: height,
width: width,
borderRadius: '50%',
objectPosition: 'center center'
};
var props = Object.assign({}, this.props);
delete props.video;
return _react2.default.createElement(
_card.CardMedia,
{
style: {
backgroundColor: item.backgroundColor,
cursor: this.props.imageClickable && !this.state.detailDialogOpen ? 'pointer' : 'initial'
},
onClick: function onClick() {
_this3.props.imageClickable ? _this3.setState({ detailDialogOpen: true, item: item }) : false;
}
},
_react2.default.createElement(_Media2.default, { cache: this.props.cache, roundImg: true, image: image, style: style })
);
}
}, {
return _react2.default.createElement('div', null);
}
var style = {
alignSelf: 'center',
width: '320px',
height: '170px',
objectFit: 'cover',
objectPosition: 'center center'
};
var innerWidth = '320px';
var props = Object.assign({}, this.props);
delete props.video;
return _react2.default.createElement(
_card.CardMedia,
{ style: {
backgroundColor: item.backgroundColor
} },
_react2.default.createElement(_Media2.default, {
cache: this.props.cache,
image: image,
desktop: this.props.desktop,
innerWidth: innerWidth,
style: style })
);
}
}, {