// @flow import React, { Component } from 'react'; import styled from 'styled-components'; import { pulsate } from 'shared/styles/animations'; import { color } from 'shared/styles/constants'; import { randomInteger } from 'shared/random'; import Flex from 'shared/components/Flex'; class Mask extends Component { width: number; shouldComponentUpdate() { return false; } componentWillMount() { this.width = randomInteger(75, 100); } render() { return ; } } const Redacted = styled(Flex)` width: ${props => (props.header ? props.width / 2 : props.width)}%; height: ${props => (props.header ? 28 : 18)}px; margin-bottom: ${props => (props.header ? 18 : 12)}px; background-color: ${color.smokeDark}; animation: ${pulsate} 1.3s infinite; &:last-child { margin-bottom: 0; } `; export default Mask;