Files
no-copy-frontend/src/app/components/dropDownList.tsx
T

80 lines
2.0 KiB
TypeScript
Raw Normal View History

2025-12-12 20:28:59 +07:00
import React, { ReactNode, useState, useRef } from 'react';
import { useClickOutside } from '@/app/hooks/useClickOutside';
interface DropDownListProps {
children: ReactNode;
value: string | number;
callBack: (value: string) => void;
2025-12-19 13:05:50 +07:00
translatedValue?: string;
2025-12-12 20:28:59 +07:00
}
interface ChildProps {
value?: string;
onClick?: () => void;
className?: string;
children?: React.ReactNode;
}
2025-12-19 13:05:50 +07:00
export default function DropDownList({ children, value, callBack, translatedValue }: DropDownListProps) {
2025-12-12 20:28:59 +07:00
const [isOpen, setIsOpen] = useState(false)
const dropdownRef = useRef<HTMLDivElement>(null)
useClickOutside(dropdownRef, () => {
setIsOpen(false);
});
const enhancedChildren = React.Children.map(children, (child, index) => {
if (React.isValidElement<ChildProps>(child)) {
const childValue = child.props.value || undefined;
return React.cloneElement<ChildProps>(child, {
onClick: () => {
callBack(childValue || "");
setIsOpen(false);
},
2026-01-15 13:11:53 +07:00
className: `dropdown-item ${value === childValue ? "current" : ""}`,
2025-12-19 13:05:50 +07:00
key: index,
2025-12-12 20:28:59 +07:00
});
}
return child;
});
return (
2026-01-15 13:11:53 +07:00
<div className="dropdown-wrapper" ref={dropdownRef}>
2025-12-12 20:28:59 +07:00
<button
onClick={() => {
setIsOpen(!isOpen)
}}
2026-01-15 13:11:53 +07:00
className="dropdown-button"
2025-12-12 20:28:59 +07:00
>
<span className="flex items-center">
<span className="mr-2">
2025-12-19 13:05:50 +07:00
{translatedValue ? translatedValue : value}
2025-12-12 20:28:59 +07:00
</span>
</span>
<svg
className={`w-5 h-5 ml-2 transition-transform ${isOpen ? 'rotate-180' : ''}`}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fillRule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clipRule="evenodd"
/>
</svg>
</button>
{isOpen && (
2026-01-15 13:11:53 +07:00
<div className="dropdown-list">
2025-12-12 20:28:59 +07:00
<ul
className="py-1"
role="listbox"
aria-labelledby="language-selector"
>
{enhancedChildren}
</ul>
</div>
)}
</div>
)
}