chore: merge with web UI project

This commit is contained in:
Li Xin
2025-04-17 12:02:23 +08:00
parent 3aebb67e2b
commit fd7a803753
58 changed files with 10290 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
import { useStickToBottom } from "use-stick-to-bottom";
import { cn } from "~/lib/utils";
export function ScrollContainer({
className,
children,
scrollShadow = true,
scrollShadowColor = "white",
}: {
className?: string;
children: React.ReactNode;
scrollShadow?: boolean;
scrollShadowColor?: string;
}) {
const { scrollRef, contentRef } = useStickToBottom({
initial: "instant",
});
return (
<div className={cn("relative", className)}>
{scrollShadow && (
<>
<div
className={cn(
"absolute top-0 right-0 left-0 z-10 h-10 bg-gradient-to-b",
`from-[var(--scroll-shadow-color)] to-transparent`,
)}
style={
{
"--scroll-shadow-color": scrollShadowColor,
} as React.CSSProperties
}
></div>
<div
className={cn(
"absolute right-0 bottom-0 left-0 z-10 h-10 bg-gradient-to-b",
`from-transparent to-[var(--scroll-shadow-color)]`,
)}
style={
{
"--scroll-shadow-color": scrollShadowColor,
} as React.CSSProperties
}
></div>
</>
)}
<div ref={scrollRef} className={"h-full w-full overflow-y-scroll"}>
<div className="h-fit w-full" ref={contentRef}>
{children}
</div>
</div>
</div>
);
}