feat: onboarding

This commit is contained in:
Maze Winther
2025-07-20 21:42:02 +02:00
parent cac4fcaab8
commit c7c394b2ef
2 changed files with 114 additions and 22 deletions
@@ -1,6 +1,6 @@
"use client"; "use client";
import { useEffect, useRef, useState } from "react"; import { useEffect, useRef } from "react";
import { useParams, useRouter } from "next/navigation"; import { useParams, useRouter } from "next/navigation";
import { import {
ResizablePanelGroup, ResizablePanelGroup,
@@ -37,7 +37,6 @@ export default function Editor() {
const router = useRouter(); const router = useRouter();
const projectId = params.project_id as string; const projectId = params.project_id as string;
const handledProjectIds = useRef<Set<string>>(new Set()); const handledProjectIds = useRef<Set<string>>(new Set());
const [isOnboardingOpen, setIsOnboardingOpen] = useState(true);
usePlaybackControls(); usePlaybackControls();
@@ -139,6 +138,7 @@ export default function Editor() {
</ResizablePanel> </ResizablePanel>
</ResizablePanelGroup> </ResizablePanelGroup>
</div> </div>
<Onboarding />
</div> </div>
</EditorProvider> </EditorProvider>
); );
+112 -20
View File
@@ -1,29 +1,121 @@
"use client"; "use client";
import { import { Dialog, DialogContent } from "./ui/dialog";
Dialog, import { Button } from "./ui/button";
DialogContent, import { ArrowRightIcon } from "lucide-react";
DialogDescription, import { useState, useEffect } from "react";
DialogHeader, import ReactMarkdown from "react-markdown";
DialogTitle,
} from "./ui/dialog";
interface OnboardingProps { export function Onboarding() {
isOpen: boolean; const [step, setStep] = useState(0);
onClose: () => void; const [isOpen, setIsOpen] = useState(false);
}
useEffect(() => {
const hasSeenOnboarding = localStorage.getItem("hasSeenOnboarding");
if (!hasSeenOnboarding) {
setIsOpen(true);
}
}, []);
const handleNext = () => {
setStep(step + 1);
};
const handleClose = () => {
setIsOpen(false);
localStorage.setItem("hasSeenOnboarding", "true");
};
const renderStepContent = () => {
switch (step) {
case 0:
return (
<div className="space-y-5">
<div className="space-y-3">
<Title title="Welcome to OpenCut Beta! 🎉" />
<Description description="You're among the first to try OpenCut - the fully open source CapCut alternative." />
</div>
<NextButton onClick={handleNext}>Next</NextButton>
</div>
);
case 1:
return (
<div className="space-y-5">
<div className="space-y-3">
<Title title="⚠️ This is a super early beta!" />
<Description description="OpenCut started just one month ago. There's still a ton of things to do to make this editor amazing." />
<Description description="If you're curious, check out our roadmap [here](https://opencut.app/roadmap)" />
</div>
<NextButton onClick={handleNext}>Next</NextButton>
</div>
);
case 2:
return (
<div className="space-y-5">
<div className="space-y-3">
<Title title="🦋 Have fun testing!" />
<Description description="Join our [Discord](https://discord.gg/zmR9N35cjK), chat with cool people and share feedback to help make OpenCut the best editor ever." />
</div>
<NextButton onClick={handleClose}>Finish</NextButton>
</div>
);
default:
return null;
}
};
export function Onboarding({ isOpen, onClose }: OnboardingProps) {
return ( return (
<Dialog open={isOpen} onOpenChange={onClose}> <Dialog open={isOpen} onOpenChange={handleClose}>
<DialogContent> <DialogContent className="sm:max-w-[425px] !outline-none">
<DialogHeader> {renderStepContent()}
<DialogTitle>Welcome to Clipture</DialogTitle>
<DialogDescription>
Let's get you started with the basics.
</DialogDescription>
</DialogHeader>
</DialogContent> </DialogContent>
</Dialog> </Dialog>
); );
} }
function Title({ title }: { title: string }) {
return <h2 className="text-lg md:text-xl font-bold">{title}</h2>;
}
function Subtitle({ subtitle }: { subtitle: string }) {
return <h3 className="text-lg font-medium">{subtitle}</h3>;
}
function Description({ description }: { description: string }) {
return (
<div className="text-muted-foreground">
<ReactMarkdown
components={{
p: ({ children }) => <p className="mb-0">{children}</p>,
a: ({ href, children }) => (
<a
href={href}
target="_blank"
rel="noopener noreferrer"
className="text-foreground hover:text-foreground/80 underline"
>
{children}
</a>
),
}}
>
{description}
</ReactMarkdown>
</div>
);
}
function NextButton({
children,
onClick,
}: {
children: React.ReactNode;
onClick: () => void;
}) {
return (
<Button onClick={onClick} variant="default" className="w-full">
{children}
<ArrowRightIcon className="w-4 h-4" />
</Button>
);
}