Skip to content

Commit

Permalink
CreatePlan: add auto scroller
Browse files Browse the repository at this point in the history
  • Loading branch information
makinbacon21 committed Nov 14, 2024
1 parent 168170f commit de2cbdc
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 66 deletions.
154 changes: 88 additions & 66 deletions components/CreatePlan.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default function CreatePlan(props: any) {
const { data: session, status } = useSession();
const [coursePlanName, setCoursePlanName]: any = useState("");
const [selectedCoursePlan, setSelectedCoursePlan]: any = useState([]);
const [isScrolled, setIsScrolled] = useState(false);

const fetcher = (url: any) => fetch(url).then((r) => r.json());
const { data, isLoading, error } = useSWR("/api/getplancourses", fetcher, {
Expand Down Expand Up @@ -166,82 +167,103 @@ export default function CreatePlan(props: any) {
};

const scrollToPlan = () => {
if (scrollRef.current)
console.log("A");
if (scrollRef.current) {
console.log("B");
scrollRef.current.scrollIntoView({ behavior: "smooth", inline: "start" });
setIsScrolled(true);
}
};

const scrollToTop = () => {
console.log("C");
window.scrollTo({
top: 0,
behavior: "smooth",
});
setIsScrolled(false);
};

return (
<div className="flex flex-col mt-5 lg:mt-0 gap-5">
{/* <div className="flex flex-row" ref={scrollRef}>
<div className="font-bold text-primary h1">Create a Plan</div>
<button className="flex lg:hidden" onClick={scrollToPlan}>
<ExpandLessIcon />
</button>
</div> */}
<div className="flex flex-col gap-3">
<div>
<div className="font-bold text-lg">Create a Plan</div>
<div className="flex mt-2 items-center gap-2">
<Input
isRequired
label="Plan Name"
placeholder="Name your plan..."
size="lg"
value={coursePlanName}
onChange={(event: any) => {
setCoursePlanName(event.target.value);
}}
/>
<Button
startContent={<AddIcon />}
size="md"
onClick={() => createPlan()}
></Button>
<>
<Button
className="rounded-full fixed md:hidden bottom-5 right-5 z-50 w-12 h-12 shadow-md"
color="secondary"
isIconOnly
onClick={() => {
isScrolled ? scrollToTop() : scrollToPlan();
}}
>
<ExpandLessIcon
className={"transition" + (isScrolled ? " rotate-0" : " rotate-180")}
/>
</Button>
<div className="flex flex-col mt-5 lg:mt-0 gap-5">
<div className="flex flex-col gap-3">
<div ref={scrollRef}>
<div className="font-bold text-lg">Create a Plan</div>
<div className="flex mt-2 items-center gap-2">
<Input
isRequired
label="Plan Name"
placeholder="Name your plan..."
size="lg"
value={coursePlanName}
onChange={(event: any) => {
setCoursePlanName(event.target.value);
}}
/>
<Button
startContent={<AddIcon />}
size="md"
onClick={() => createPlan()}
></Button>
</div>
</div>
</div>

<div className="grid grid-cols-3 items-center">
<Divider />
{/* --------------------------------- or --------------------------- */}
<div className="text-center mt-1">or</div>
<Divider />
</div>
<div className="grid grid-cols-3 items-center">
<Divider />
{/* --------------------------------- or --------------------------- */}
<div className="text-center mt-1">or</div>
<Divider />
</div>

<div>
<div className="font-bold text-lg">Select a Plan</div>
<div className="flex mt-2 items-center justify gap-2">
<Select
className="col-span-3"
label="Current Plan"
selectedKeys={selectedCoursePlan}
selectionMode="single"
size="lg"
onChange={handleSelectionChange}
>
{coursePlans != null
? coursePlans.map((plan: any) => (
<SelectItem key={plan.id}>{plan.name}</SelectItem>
))
: null}
</Select>

<Button
isIconOnly
size="md"
startContent={<DeleteIcon />}
onClick={deletePlan}
/>
<Button isIconOnly size="md" startContent={<IosShareIcon />} />
<div>
<div className="font-bold text-lg">Select a Plan</div>
<div className="flex mt-2 items-center justify gap-2">
<Select
className="col-span-3"
label="Current Plan"
selectedKeys={selectedCoursePlan}
selectionMode="single"
size="lg"
onChange={handleSelectionChange}
>
{coursePlans != null
? coursePlans.map((plan: any) => (
<SelectItem key={plan.id}>{plan.name}</SelectItem>
))
: null}
</Select>

<Button
isIconOnly
size="md"
startContent={<DeleteIcon />}
onClick={deletePlan}
/>
<Button isIconOnly size="md" startContent={<IosShareIcon />} />
</div>
</div>
</div>
</div>

<div
className="flex flex-col h-[55vh] overflow-y-scroll gap-3 scrollbar-thin scrollbar-thumb-accent-500 scrollbar-track-transparent"
id="scrollMe"
>
<CoursesList />
<div
className="flex flex-col h-[55vh] overflow-y-scroll gap-3 scrollbar-thin scrollbar-thumb-accent-500 scrollbar-track-transparent"
id="scrollMe"
>
<CoursesList />
</div>
</div>
</div>
</>
);
}
1 change: 1 addition & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ module.exports = {
DEFAULT: "#9FADBC",
foreground: "#1D2125",
},
secondary: "#F46523",
focus: "#BEF264",
},
},
Expand Down

0 comments on commit de2cbdc

Please sign in to comment.