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(
|
const getElementByDataItemId = useCallback(
|
||||||
(id: string) =>
|
(id: string) => containerRef.current?.querySelector(`[data-item-id="${id}"]`),
|
||||||
containerRef.current && containerRef.current.querySelector(`[data-item-id="${id}"]`),
|
|
||||||
[containerRef]
|
[containerRef]
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -98,7 +97,7 @@ export const useExpanded = ({
|
|||||||
({ ids, value }) => {
|
({ ids, value }) => {
|
||||||
setExpanded({ ids, value });
|
setExpanded({ ids, value });
|
||||||
if (ids.length === 1) {
|
if (ids.length === 1) {
|
||||||
const element = containerRef.current.querySelector(
|
const element = containerRef.current?.querySelector(
|
||||||
`[data-item-id="${ids[0]}"][data-ref-id="${refId}"]`
|
`[data-item-id="${ids[0]}"][data-ref-id="${refId}"]`
|
||||||
);
|
);
|
||||||
if (element) highlightElement(element);
|
if (element) highlightElement(element);
|
||||||
|
@ -67,12 +67,12 @@ export const useHighlighted = ({
|
|||||||
const { itemId, refId } = highlight;
|
const { itemId, refId } = highlight;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
scrollIntoView(
|
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
|
true // make sure it's clearly visible by centering it
|
||||||
);
|
);
|
||||||
}, 0);
|
}, 0);
|
||||||
}
|
}
|
||||||
}, [dataset, highlightedRef, selected]);
|
}, [dataset, highlightedRef, containerRef, selected]);
|
||||||
|
|
||||||
// Highlight nodes up/down the tree using arrow keys
|
// Highlight nodes up/down the tree using arrow keys
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user