2026-02-24 15:16:26 +01:00
|
|
|
import { useState, useMemo } from 'react'
|
|
|
|
|
import { MagnifyingGlass } from '@phosphor-icons/react'
|
|
|
|
|
import { ICON_OPTIONS, type IconEntry } from '../utils/iconRegistry'
|
2026-02-21 13:27:33 +01:00
|
|
|
import { ACCENT_COLORS } from '../utils/typeColors'
|
|
|
|
|
import { cn } from '@/lib/utils'
|
|
|
|
|
|
2026-02-24 15:16:26 +01:00
|
|
|
function filterIcons(icons: IconEntry[], query: string): IconEntry[] {
|
|
|
|
|
if (!query) return icons
|
|
|
|
|
const lower = query.toLowerCase()
|
|
|
|
|
return icons.filter((o) => o.name.includes(lower))
|
2026-02-21 13:27:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface TypeCustomizePopoverProps {
|
|
|
|
|
currentIcon: string | null
|
|
|
|
|
currentColor: string | null
|
|
|
|
|
onChangeIcon: (icon: string) => void
|
|
|
|
|
onChangeColor: (color: string) => void
|
|
|
|
|
onClose: () => void
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function TypeCustomizePopover({
|
|
|
|
|
currentIcon,
|
|
|
|
|
currentColor,
|
|
|
|
|
onChangeIcon,
|
|
|
|
|
onChangeColor,
|
|
|
|
|
onClose,
|
|
|
|
|
}: TypeCustomizePopoverProps) {
|
|
|
|
|
const [selectedColor, setSelectedColor] = useState(currentColor)
|
|
|
|
|
const [selectedIcon, setSelectedIcon] = useState(currentIcon)
|
2026-02-24 15:16:26 +01:00
|
|
|
const [search, setSearch] = useState('')
|
|
|
|
|
|
|
|
|
|
const filteredIcons = useMemo(() => filterIcons(ICON_OPTIONS, search), [search])
|
2026-02-21 13:27:33 +01:00
|
|
|
|
|
|
|
|
const handleColorClick = (key: string) => {
|
|
|
|
|
setSelectedColor(key)
|
|
|
|
|
onChangeColor(key)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleIconClick = (name: string) => {
|
|
|
|
|
setSelectedIcon(name)
|
|
|
|
|
onChangeIcon(name)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
className="bg-popover text-popover-foreground z-50 rounded-lg border shadow-md"
|
2026-02-24 15:16:26 +01:00
|
|
|
style={{ width: 280, padding: 12 }}
|
2026-02-21 13:27:33 +01:00
|
|
|
onClick={(e) => e.stopPropagation()}
|
|
|
|
|
onContextMenu={(e) => e.stopPropagation()}
|
|
|
|
|
>
|
|
|
|
|
{/* Color section */}
|
|
|
|
|
<div className="font-mono-overline mb-2 text-muted-foreground">COLOR</div>
|
2026-02-24 15:16:26 +01:00
|
|
|
<div className="flex gap-2 mb-3 flex-wrap">
|
2026-02-21 13:27:33 +01:00
|
|
|
{ACCENT_COLORS.map((c) => (
|
|
|
|
|
<button
|
|
|
|
|
key={c.key}
|
|
|
|
|
className={cn(
|
|
|
|
|
"flex items-center justify-center rounded-full border-2 cursor-pointer transition-all",
|
|
|
|
|
selectedColor === c.key ? "border-foreground scale-110" : "border-transparent hover:scale-105",
|
|
|
|
|
)}
|
2026-02-24 15:16:26 +01:00
|
|
|
style={{ width: 24, height: 24, backgroundColor: c.css, border: selectedColor === c.key ? '2px solid var(--foreground)' : '2px solid transparent' }}
|
2026-02-21 13:27:33 +01:00
|
|
|
onClick={() => handleColorClick(c.key)}
|
|
|
|
|
title={c.label}
|
|
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Icon section */}
|
|
|
|
|
<div className="font-mono-overline mb-2 text-muted-foreground">ICON</div>
|
2026-02-24 15:16:26 +01:00
|
|
|
|
|
|
|
|
{/* Search input */}
|
|
|
|
|
<div className="relative mb-2">
|
|
|
|
|
<MagnifyingGlass
|
|
|
|
|
size={14}
|
|
|
|
|
className="absolute left-2 top-1/2 -translate-y-1/2 text-muted-foreground pointer-events-none"
|
|
|
|
|
/>
|
|
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
value={search}
|
|
|
|
|
onChange={(e) => setSearch(e.target.value)}
|
|
|
|
|
placeholder="Search icons…"
|
|
|
|
|
className="w-full rounded border border-border bg-background pl-7 pr-2 py-1 text-[12px] text-foreground placeholder:text-muted-foreground outline-none focus:border-primary"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Icon grid */}
|
|
|
|
|
<div className="flex flex-wrap gap-1 overflow-y-auto" style={{ maxHeight: 240 }}>
|
|
|
|
|
{filteredIcons.length === 0 ? (
|
|
|
|
|
<div className="w-full py-6 text-center text-[12px] text-muted-foreground">
|
|
|
|
|
No icons found
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
filteredIcons.map(({ name, Icon }) => (
|
|
|
|
|
<button
|
|
|
|
|
key={name}
|
|
|
|
|
className={cn(
|
|
|
|
|
"flex items-center justify-center rounded cursor-pointer transition-colors",
|
|
|
|
|
selectedIcon === name
|
|
|
|
|
? "bg-primary/10 text-primary"
|
|
|
|
|
: "text-muted-foreground hover:bg-accent hover:text-foreground",
|
|
|
|
|
)}
|
|
|
|
|
style={{ width: 30, height: 30 }}
|
|
|
|
|
onClick={() => handleIconClick(name)}
|
|
|
|
|
title={name}
|
|
|
|
|
>
|
|
|
|
|
<Icon size={16} />
|
|
|
|
|
</button>
|
|
|
|
|
))
|
|
|
|
|
)}
|
2026-02-21 13:27:33 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Done button */}
|
|
|
|
|
<div className="mt-3 flex justify-end">
|
|
|
|
|
<button
|
|
|
|
|
className="rounded px-3 py-1 text-[12px] font-medium text-muted-foreground hover:text-foreground hover:bg-accent cursor-pointer transition-colors border-none bg-transparent"
|
|
|
|
|
onClick={onClose}
|
|
|
|
|
>
|
|
|
|
|
Done
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|