mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-22 19:14:33 -07:00
Scrollable support (#12544)
This commit is contained in:
@@ -0,0 +1,106 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2025 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
import { useState, useEffect, useRef, useCallback } from 'react';
|
||||
import { theme } from '../semantic-colors.js';
|
||||
import { interpolateColor } from '../themes/color-utils.js';
|
||||
|
||||
export function useAnimatedScrollbar(
|
||||
isFocused: boolean,
|
||||
scrollBy: (delta: number) => void,
|
||||
) {
|
||||
const [scrollbarColor, setScrollbarColor] = useState(theme.ui.dark);
|
||||
const colorRef = useRef(scrollbarColor);
|
||||
colorRef.current = scrollbarColor;
|
||||
|
||||
const animationFrame = useRef<NodeJS.Timeout | null>(null);
|
||||
const timeout = useRef<NodeJS.Timeout | null>(null);
|
||||
|
||||
const cleanup = useCallback(() => {
|
||||
if (animationFrame.current) {
|
||||
clearInterval(animationFrame.current);
|
||||
animationFrame.current = null;
|
||||
}
|
||||
if (timeout.current) {
|
||||
clearTimeout(timeout.current);
|
||||
timeout.current = null;
|
||||
}
|
||||
}, []);
|
||||
|
||||
const flashScrollbar = useCallback(() => {
|
||||
cleanup();
|
||||
|
||||
const fadeInDuration = 200;
|
||||
const visibleDuration = 1000;
|
||||
const fadeOutDuration = 300;
|
||||
|
||||
const focusedColor = theme.text.secondary;
|
||||
const unfocusedColor = theme.ui.dark;
|
||||
const startColor = colorRef.current;
|
||||
|
||||
// Phase 1: Fade In
|
||||
let start = Date.now();
|
||||
const animateFadeIn = () => {
|
||||
const elapsed = Date.now() - start;
|
||||
const progress = Math.min(elapsed / fadeInDuration, 1);
|
||||
|
||||
setScrollbarColor(interpolateColor(startColor, focusedColor, progress));
|
||||
|
||||
if (progress === 1) {
|
||||
if (animationFrame.current) {
|
||||
clearInterval(animationFrame.current);
|
||||
animationFrame.current = null;
|
||||
}
|
||||
|
||||
// Phase 2: Wait
|
||||
timeout.current = setTimeout(() => {
|
||||
// Phase 3: Fade Out
|
||||
start = Date.now();
|
||||
const animateFadeOut = () => {
|
||||
const elapsed = Date.now() - start;
|
||||
const progress = Math.min(elapsed / fadeOutDuration, 1);
|
||||
setScrollbarColor(
|
||||
interpolateColor(focusedColor, unfocusedColor, progress),
|
||||
);
|
||||
|
||||
if (progress === 1) {
|
||||
if (animationFrame.current) {
|
||||
clearInterval(animationFrame.current);
|
||||
animationFrame.current = null;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
animationFrame.current = setInterval(animateFadeOut, 33);
|
||||
}, visibleDuration);
|
||||
}
|
||||
};
|
||||
|
||||
animationFrame.current = setInterval(animateFadeIn, 33);
|
||||
}, [cleanup]);
|
||||
|
||||
const wasFocused = useRef(isFocused);
|
||||
useEffect(() => {
|
||||
if (isFocused && !wasFocused.current) {
|
||||
flashScrollbar();
|
||||
} else if (!isFocused && wasFocused.current) {
|
||||
cleanup();
|
||||
setScrollbarColor(theme.ui.dark);
|
||||
}
|
||||
wasFocused.current = isFocused;
|
||||
return cleanup;
|
||||
}, [isFocused, flashScrollbar, cleanup]);
|
||||
|
||||
const scrollByWithAnimation = useCallback(
|
||||
(delta: number) => {
|
||||
scrollBy(delta);
|
||||
flashScrollbar();
|
||||
},
|
||||
[scrollBy, flashScrollbar],
|
||||
);
|
||||
|
||||
return { scrollbarColor, flashScrollbar, scrollByWithAnimation };
|
||||
}
|
||||
Reference in New Issue
Block a user