mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Fix 'Cannot read property querySelector of null' bug in sidebar.
This commit is contained in:
parent
7e53bc8fbe
commit
28e377b2f2
@ -81,8 +81,7 @@ export const useExpanded = ({
|
||||
);
|
||||
|
||||
const getElementByDataItemId = useCallback(
|
||||
(id: string) =>
|
||||
containerRef.current && containerRef.current.querySelector(`[data-item-id="${id}"]`),
|
||||
(id: string) => containerRef.current?.querySelector(`[data-item-id="${id}"]`),
|
||||
[containerRef]
|
||||
);
|
||||
|
||||
@ -98,7 +97,7 @@ export const useExpanded = ({
|
||||
({ ids, value }) => {
|
||||
setExpanded({ ids, value });
|
||||
if (ids.length === 1) {
|
||||
const element = containerRef.current.querySelector(
|
||||
const element = containerRef.current?.querySelector(
|
||||
`[data-item-id="${ids[0]}"][data-ref-id="${refId}"]`
|
||||
);
|
||||
if (element) highlightElement(element);
|
||||
|
@ -67,12 +67,12 @@ export const useHighlighted = ({
|
||||
const { itemId, refId } = highlight;
|
||||
setTimeout(() => {
|
||||
scrollIntoView(
|
||||
containerRef.current.querySelector(`[data-item-id="${itemId}"][data-ref-id="${refId}"]`),
|
||||
containerRef.current?.querySelector(`[data-item-id="${itemId}"][data-ref-id="${refId}"]`),
|
||||
true // make sure it's clearly visible by centering it
|
||||
);
|
||||
}, 0);
|
||||
}
|
||||
}, [dataset, highlightedRef, selected]);
|
||||
}, [dataset, highlightedRef, containerRef, selected]);
|
||||
|
||||
// Highlight nodes up/down the tree using arrow keys
|
||||
useEffect(() => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user