mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
more changes
This commit is contained in:
@@ -7,13 +7,45 @@ import {
|
|||||||
TooltipContent,
|
TooltipContent,
|
||||||
TooltipTrigger,
|
TooltipTrigger,
|
||||||
} from "@/components/ui/tooltip";
|
} from "@/components/ui/tooltip";
|
||||||
|
import { useEffect, useRef, useState } from "react";
|
||||||
|
|
||||||
export function TabBar() {
|
export function TabBar() {
|
||||||
const { activeTab, setActiveTab } = useMediaPanelStore();
|
const { activeTab, setActiveTab } = useMediaPanelStore();
|
||||||
|
const scrollRef = useRef<HTMLDivElement>(null);
|
||||||
|
const [showTopFade, setShowTopFade] = useState(false);
|
||||||
|
const [showBottomFade, setShowBottomFade] = useState(false);
|
||||||
|
|
||||||
|
const checkScrollPosition = () => {
|
||||||
|
const element = scrollRef.current;
|
||||||
|
if (!element) return;
|
||||||
|
|
||||||
|
const { scrollTop, scrollHeight, clientHeight } = element;
|
||||||
|
setShowTopFade(scrollTop > 0);
|
||||||
|
setShowBottomFade(scrollTop < scrollHeight - clientHeight - 1);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const element = scrollRef.current;
|
||||||
|
if (!element) return;
|
||||||
|
|
||||||
|
checkScrollPosition();
|
||||||
|
element.addEventListener("scroll", checkScrollPosition);
|
||||||
|
|
||||||
|
const resizeObserver = new ResizeObserver(checkScrollPosition);
|
||||||
|
resizeObserver.observe(element);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
element.removeEventListener("scroll", checkScrollPosition);
|
||||||
|
resizeObserver.disconnect();
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex">
|
<div className="flex relative">
|
||||||
<div className="h-full px-4 flex flex-col justify-start items-center gap-5 overflow-x-auto scrollbar-x-hidden relative w-full py-4">
|
<div
|
||||||
|
ref={scrollRef}
|
||||||
|
className="h-full px-4 flex flex-col justify-start items-center gap-5 overflow-y-auto scrollbar-hidden relative w-full py-4"
|
||||||
|
>
|
||||||
{(Object.keys(tabs) as Tab[]).map((tabKey) => {
|
{(Object.keys(tabs) as Tab[]).map((tabKey) => {
|
||||||
const tab = tabs[tabKey];
|
const tab = tabs[tabKey];
|
||||||
return (
|
return (
|
||||||
@@ -46,6 +78,22 @@ export function TabBar() {
|
|||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<FadeOverlay direction="top" show={showTopFade} />
|
||||||
|
<FadeOverlay direction="bottom" show={showBottomFade} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function FadeOverlay({ direction, show }: { direction: "top" | "bottom", show: boolean }) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={cn(
|
||||||
|
"absolute left-0 right-0 h-6 pointer-events-none z-[101] transition-opacity duration-200",
|
||||||
|
direction === "top" && show
|
||||||
|
? "top-0 bg-gradient-to-b from-panel to-transparent"
|
||||||
|
: "bottom-0 bg-gradient-to-t from-panel to-transparent"
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -23,9 +23,11 @@ import Image from "next/image";
|
|||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import { colors } from "@/data/colors/solid";
|
import { colors } from "@/data/colors/solid";
|
||||||
import { patternCraftGradients } from "@/data/colors/pattern-craft";
|
import { patternCraftGradients } from "@/data/colors/pattern-craft";
|
||||||
import { PipetteIcon } from "lucide-react";
|
import { PipetteIcon, PlusIcon } from "lucide-react";
|
||||||
import { useMemo, memo, useCallback } from "react";
|
import { useMemo, memo, useCallback } from "react";
|
||||||
import { syntaxUIGradients } from "@/data/colors/syntax-ui";
|
import { syntaxUIGradients } from "@/data/colors/syntax-ui";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Separator } from "@/components/ui/separator";
|
||||||
|
|
||||||
export function SettingsView() {
|
export function SettingsView() {
|
||||||
return <ProjectSettingsTabs />;
|
return <ProjectSettingsTabs />;
|
||||||
@@ -39,14 +41,40 @@ function ProjectSettingsTabs() {
|
|||||||
{
|
{
|
||||||
value: "project-info",
|
value: "project-info",
|
||||||
label: "Project info",
|
label: "Project info",
|
||||||
content: <ProjectInfoView />,
|
content: (
|
||||||
|
<div className="p-5">
|
||||||
|
<ProjectInfoView />
|
||||||
|
</div>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "background",
|
value: "background",
|
||||||
label: "Background",
|
label: "Background",
|
||||||
content: <BackgroundView />,
|
content: (
|
||||||
|
<div className="flex flex-col justify-between h-full">
|
||||||
|
<div className="flex-1 p-5">
|
||||||
|
<BackgroundView />
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-col sticky -bottom-0 bg-panel/85 backdrop-blur-lg">
|
||||||
|
<Separator />
|
||||||
|
<Button className="w-fit h-auto p-5 py-4 !bg-transparent shadow-none text-muted-foreground hover:text-foreground/85 text-xs">
|
||||||
|
Custom background
|
||||||
|
<PlusIcon />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Another UI, looks so beautiful i don't wanna remove it */}
|
||||||
|
{/* <div className="flex flex-col justify-center items-center pb-5 sticky bottom-0">
|
||||||
|
<Button className="w-fit h-auto gap-1.5 px-3.5 py-1.5 bg-foreground hover:bg-foreground/85 text-background rounded-full">
|
||||||
|
<span className="text-sm">Custom</span>
|
||||||
|
<PlusIcon className="" />
|
||||||
|
</Button>
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
className="flex flex-col justify-between h-full p-0"
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -258,7 +286,7 @@ function BackgroundView() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-4">
|
<div className="flex flex-col gap-4 h-full">
|
||||||
<PropertyGroup title="Blur" defaultExpanded={false}>
|
<PropertyGroup title="Blur" defaultExpanded={false}>
|
||||||
<div className="grid grid-cols-4 gap-2 w-full">{blurPreviews}</div>
|
<div className="grid grid-cols-4 gap-2 w-full">{blurPreviews}</div>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
@@ -278,7 +306,7 @@ function BackgroundView() {
|
|||||||
</div>
|
</div>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup title="Pattern Craft" defaultExpanded={false}>
|
<PropertyGroup title="Pattern craft" defaultExpanded={false}>
|
||||||
<div className="grid grid-cols-4 gap-2 w-full">
|
<div className="grid grid-cols-4 gap-2 w-full">
|
||||||
<BackgroundPreviews
|
<BackgroundPreviews
|
||||||
backgrounds={patternCraftGradients}
|
backgrounds={patternCraftGradients}
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ export function PanelBaseView({
|
|||||||
value={tab.value}
|
value={tab.value}
|
||||||
className="mt-0 flex-1 flex flex-col min-h-0"
|
className="mt-0 flex-1 flex flex-col min-h-0"
|
||||||
>
|
>
|
||||||
<ViewContent>{tab.content}</ViewContent>
|
<ViewContent className={className}>{tab.content}</ViewContent>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
))}
|
))}
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|||||||
Reference in New Issue
Block a user