import React from 'react'; class CardMedia extends React.PureComponent { static AUTO_THUMB_CLASSES = [ 'purple', 'red', 'pink', 'indigo', 'blue', 'light-blue', 'cyan', 'teal', 'green', 'yellow', 'orange', ]; componentWillMount() { this.setState({ autoThumbClass: CardMedia.AUTO_THUMB_CLASSES[ Math.floor(Math.random() * CardMedia.AUTO_THUMB_CLASSES.length) ], }); } render() { const { title, thumbnail } = this.props; const atClass = this.state.autoThumbClass; if (thumbnail) { return
; } return (