This commit is contained in:
@@ -12,23 +12,11 @@ export type Props = {
|
||||
delay?: number;
|
||||
};
|
||||
|
||||
class PlaceholderText extends React.Component<Props> {
|
||||
width = randomInteger(this.props.minWidth || 75, this.props.maxWidth || 100);
|
||||
function PlaceholderText({ minWidth, maxWidth, ...restProps }: Props) {
|
||||
// We only want to compute the width once so we are storing it inside ref
|
||||
const widthRef = React.useRef(randomInteger(minWidth || 75, maxWidth || 100));
|
||||
|
||||
shouldComponentUpdate() {
|
||||
return false;
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Mask
|
||||
width={this.width}
|
||||
height={this.props.height}
|
||||
delay={this.props.delay}
|
||||
header={this.props.header}
|
||||
/>
|
||||
);
|
||||
}
|
||||
return <Mask width={widthRef.current} {...restProps} />;
|
||||
}
|
||||
|
||||
const Mask = styled(Flex)<{
|
||||
@@ -51,4 +39,6 @@ const Mask = styled(Flex)<{
|
||||
}
|
||||
`;
|
||||
|
||||
export default PlaceholderText;
|
||||
// We don't want the component to re-render on any props change
|
||||
// So returning true from the custom comparison function to avoid re-render
|
||||
export default React.memo(PlaceholderText, () => true);
|
||||
|
||||
Reference in New Issue
Block a user