feat(core): adjust app sidebar (#8572)

This commit is contained in:
EYHN 2024-10-22 04:55:05 +00:00
parent 6a9a7d8b39
commit b8cb504fa4
No known key found for this signature in database
GPG Key ID: 46C9E26A75AB276C
2 changed files with 2 additions and 19 deletions

View File

@ -48,7 +48,6 @@ export function AppSidebar({ children }: PropsWithChildren) {
const smallScreenMode = useLiveData(appSidebarService.smallScreenMode$);
const hovering = useLiveData(appSidebarService.hovering$) && open !== true;
const resizing = useLiveData(appSidebarService.resizing$);
const [deferredHovering, setDeferredHovering] = useState(false);
const [initialized, setInitialized] = useState(false);
useEffect(() => {
@ -65,29 +64,13 @@ export function AppSidebar({ children }: PropsWithChildren) {
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
useEffect(() => {
if (open) {
// if open, we don't need to show the floating sidebar
setDeferredHovering(false);
return;
}
// we make a little delay here.
// this allow the sidebar close animation to complete.
const timeout = setTimeout(() => {
setDeferredHovering(hovering);
}, 150);
return () => {
clearTimeout(timeout);
};
}, [hovering, open]);
const sidebarState = smallScreenMode
? open
? 'floating-with-mask'
: 'close'
: open
? 'open'
: deferredHovering
: hovering
? 'floating'
: 'close';

View File

@ -10,7 +10,7 @@
"fr": 77,
"hi": 2,
"it": 1,
"ja": 75,
"ja": 100,
"ko": 91,
"pl": 0,
"pt-BR": 99,