This commit is contained in:
2025-10-09 17:01:12 +05:00
6 changed files with 205 additions and 40 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ function Button({
onClick?.(e);
}}
className={clsx(
"transition-all cursor-pointer disabled:!cursor-default flex outline-none gap-2 items-center justify-center font-medium disabled:bg-[#F6F6F6] disabled:!text-[#D6D6D6]",
"transition-all select-none cursor-pointer disabled:!cursor-default flex outline-none gap-2 items-center justify-center font-medium disabled:bg-[#F6F6F6] disabled:!text-[#D6D6D6]",
variant === "menu" &&
"text-[#7D7D7D] hover:bg-[#F3F3F3] active:bg-[#F3F1FD] active:text-[#7B60F3]",
variant === "cta" &&
+1 -1
View File
@@ -74,7 +74,7 @@ function RangeInput({
style={{ width: `${((value - min) / (max - min)) * 100}%` }}
/>
<div
className="2xl:size-[0.833vw] size-3 rounded-full bg-[#7B60F3] absolute top-1/2 -translate-y-1/2"
className="2xl:size-[0.833vw] size-3 rounded-full bg-[#7B60F3] absolute top-1/2 -translate-y-1/2 -translate-x-1/2"
style={{ left: `${((value - min) / (max - min)) * 100}%` }}
/>
</div>
+84
View File
@@ -0,0 +1,84 @@
import { useClickAway } from "@uidotdev/usehooks";
import clsx from "clsx";
import { useEffect, useRef, useState } from "react";
import ChevronDownIcon from "../icons/ChevronDownIcon";
interface SelectProps {
options: string[];
onSelect: (value: string) => void;
className?: string;
defaultOption?: string;
}
function Select({
options,
onSelect,
className,
defaultOption: defaultValue = "",
}: SelectProps) {
const [isOpen, setIsOpen] = useState(false);
const [selectedOption, setSelectedOption] = useState(defaultValue);
const ref = useClickAway<HTMLDivElement>(() => setIsOpen(false));
const dropDownRef = useRef<HTMLDivElement>(null);
useEffect(() => setSelectedOption(defaultValue), [defaultValue]);
useEffect(() => onSelect(selectedOption), [onSelect, selectedOption]);
function handleScroll() {
if (!dropDownRef.current) return;
dropDownRef.current.style.maxHeight = `calc(100vh - ${
dropDownRef.current?.getBoundingClientRect().y
}px - 0.278vw)`;
}
useEffect(() => {
handleScroll();
document.addEventListener("scroll", handleScroll);
return () => document.removeEventListener("scroll", handleScroll);
}, [isOpen]);
return (
<div
ref={ref}
className={clsx(
"bg-[#F3F3F3] 2xl:p-[1.111vw] p-4 flex justify-between items-center 2xl:gap-[0.556vw] gap-2 relative select-none cursor-pointer",
isOpen
? "2xl:rounded-t-[1.111vw] rounded-t-2xl"
: "2xl:rounded-[1.111vw] rounded-2xl",
className
)}
onClick={() => setIsOpen(!isOpen)}
>
<p className="text-m">{selectedOption}</p>
<div
className={clsx(
"2xl:size-[1.111vw] size-4 text-[#7D7D7D]",
isOpen && "rotate-180"
)}
>
<ChevronDownIcon />
</div>
{isOpen && (
<div
className="absolute left-0 top-full z-10 w-full 2xl:rounded-b-[1.111vw] rounded-b-2xlo overflow-hidden"
ref={dropDownRef}
>
{options.map((option) => (
<p
key={option}
className="bg-[#F3F3F3] 2xl:p-[1.111vw] p-4 text-m hover:bg-[#f0f0f0] transition-colors"
>
{option}
</p>
))}
</div>
)}
</div>
);
}
export default Select;