mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
feat: hide command bar when losing focus (#7544)
This commit is contained in:
parent
cad8a3c2df
commit
51a2b3aa0e
@ -213,6 +213,16 @@ export const CommandBar = () => {
|
|||||||
searchInputRef.current?.focus();
|
searchInputRef.current?.focus();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onBlur = (evt: React.FocusEvent) => {
|
||||||
|
if (
|
||||||
|
evt.relatedTarget === null ||
|
||||||
|
!searchContainerRef.current?.contains(evt.relatedTarget)
|
||||||
|
) {
|
||||||
|
hideSuggestions();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<StyledContainer ref={searchContainerRef} active={showSuggestions}>
|
<StyledContainer ref={searchContainerRef} active={showSuggestions}>
|
||||||
<RecentlyVisitedRecorder />
|
<RecentlyVisitedRecorder />
|
||||||
@ -279,7 +289,10 @@ export const CommandBar = () => {
|
|||||||
<ConditionallyRender
|
<ConditionallyRender
|
||||||
condition={Boolean(value) && showSuggestions}
|
condition={Boolean(value) && showSuggestions}
|
||||||
show={
|
show={
|
||||||
<CommandResultsPaper onKeyDownCapture={onKeyDown}>
|
<CommandResultsPaper
|
||||||
|
onKeyDownCapture={onKeyDown}
|
||||||
|
onBlur={onBlur}
|
||||||
|
>
|
||||||
{searchString !== undefined && (
|
{searchString !== undefined && (
|
||||||
<CommandSearchFeatures
|
<CommandSearchFeatures
|
||||||
searchString={searchString}
|
searchString={searchString}
|
||||||
@ -309,7 +322,10 @@ export const CommandBar = () => {
|
|||||||
}
|
}
|
||||||
elseShow={
|
elseShow={
|
||||||
showSuggestions && (
|
showSuggestions && (
|
||||||
<CommandResultsPaper onKeyDownCapture={onKeyDown}>
|
<CommandResultsPaper
|
||||||
|
onKeyDownCapture={onKeyDown}
|
||||||
|
onBlur={onBlur}
|
||||||
|
>
|
||||||
<CommandQuickSuggestions
|
<CommandQuickSuggestions
|
||||||
routes={allRoutes}
|
routes={allRoutes}
|
||||||
onClick={clearSearchValue}
|
onClick={clearSearchValue}
|
||||||
|
Loading…
Reference in New Issue
Block a user