mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 15:11:10 +08:00
allow disabling force-update and debounce by knob options
This commit is contained in:
parent
967a3e9a27
commit
9fea73ab4b
@ -22,9 +22,7 @@ function setPaneKnobs(timestamp: boolean | number = +new Date()) {
|
||||
|
||||
const resetAndForceUpdate = () => {
|
||||
knobStore.markAllUnused();
|
||||
if (!manager.options.disableForceUpdate) {
|
||||
forceReRender();
|
||||
}
|
||||
forceReRender();
|
||||
};
|
||||
|
||||
// Increase performance by reducing how frequently the story is recreated during knob changes
|
||||
@ -39,10 +37,12 @@ function knobChanged(change: KnobStoreKnob) {
|
||||
const knobOptions = knobStore.get(name);
|
||||
knobOptions.value = value;
|
||||
|
||||
if (!manager.options.disableDebounce) {
|
||||
debouncedResetAndForceUpdate();
|
||||
} else {
|
||||
resetAndForceUpdate();
|
||||
if (!manager.options.disableForceUpdate && !knobOptions.disableForceUpdate) {
|
||||
if (!manager.options.disableDebounce && !knobOptions.disableDebounce) {
|
||||
debouncedResetAndForceUpdate();
|
||||
} else {
|
||||
resetAndForceUpdate();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user