mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Use shouldComponentUpdate instead of PureComponent
Because the `knob` object prop is being regenerated each time the parent re-renders, we can’t use the shallow prop comparison that PureComponent does. So this uses a `shouldComponentUpdate` instead, which in most cases just compares the `knob.value` prop to see if it has changed. I don’t believe that the `name` is changed between renders. Same goes for number range configurations and array separators.
This commit is contained in:
parent
554da3b295
commit
1652d64635
@ -10,7 +10,11 @@ function formatArray(value, separator) {
|
||||
return value.split(separator);
|
||||
}
|
||||
|
||||
class ArrayType extends React.PureComponent {
|
||||
class ArrayType extends React.Component {
|
||||
shouldComponentUpdate(nextProps) {
|
||||
return nextProps.knob.value !== this.props.knob.value;
|
||||
}
|
||||
|
||||
handleChange = e => {
|
||||
const { knob } = this.props;
|
||||
const { value } = e.target;
|
||||
|
@ -19,7 +19,7 @@ const Popover = styled('div')({
|
||||
zIndex: '2',
|
||||
});
|
||||
|
||||
class ColorType extends React.PureComponent {
|
||||
class ColorType extends React.Component {
|
||||
state = {
|
||||
displayColorPicker: false,
|
||||
};
|
||||
@ -27,6 +27,9 @@ class ColorType extends React.PureComponent {
|
||||
componentDidMount() {
|
||||
document.addEventListener('mousedown', this.handleWindowMouseDown);
|
||||
}
|
||||
shouldComponentUpdate(nextProps) {
|
||||
return nextProps.knob.value !== this.props.knob.value;
|
||||
}
|
||||
componentWillUnmount() {
|
||||
document.removeEventListener('mousedown', this.handleWindowMouseDown);
|
||||
}
|
||||
|
@ -8,7 +8,11 @@ import style from './styles';
|
||||
|
||||
const DateInput = styled(Datetime)(style);
|
||||
|
||||
class DateType extends React.PureComponent {
|
||||
class DateType extends React.Component {
|
||||
shouldComponentUpdate(nextProps) {
|
||||
return nextProps.knob.value !== this.props.knob.value;
|
||||
}
|
||||
|
||||
handleChange = date => {
|
||||
const value = date.valueOf();
|
||||
this.props.onChange(value);
|
||||
|
@ -32,7 +32,11 @@ const RangeWrapper = styled('div')({
|
||||
width: '100%',
|
||||
});
|
||||
|
||||
class NumberType extends React.PureComponent {
|
||||
class NumberType extends React.Component {
|
||||
shouldComponentUpdate(nextProps) {
|
||||
return nextProps.knob.value !== this.props.knob.value;
|
||||
}
|
||||
|
||||
handleChange = event => {
|
||||
const { value } = event.target;
|
||||
|
||||
|
@ -3,7 +3,11 @@ import React from 'react';
|
||||
|
||||
import { Textarea } from '@storybook/components';
|
||||
|
||||
class TextType extends React.PureComponent {
|
||||
class TextType extends React.Component {
|
||||
shouldComponentUpdate(nextProps) {
|
||||
return nextProps.knob.value !== this.props.knob.value;
|
||||
}
|
||||
|
||||
handleChange = event => {
|
||||
const { value } = event.target;
|
||||
this.props.onChange(value);
|
||||
|
Loading…
x
Reference in New Issue
Block a user