Files
bedolaga-cabinet/src/components/admin/bulkActions/MultiSelectDropdown.tsx
c0mrade b5088c70a1 refactor(cabinet): migrate inline SVG icons to the central react-icons set
Audit-driven sweep: replaced 168 hand-written inline <svg> icons across 77
files with the central Phosphor (react-icons/pi) components from
@/components/icons, preserving each icon's size classes and colour (dynamic
stroke colours via the parent's currentColor, RefreshIcon's spinning state,
conditional rotate-180 chevrons).

Verified: tsc + vite build + eslint clean; an adversarial diff review of all
changed files found the replacements correct (70 files clean, 0 blockers).
Remaining inline <svg> dropped from 262 to ~95 — the survivors are legitimate
non-icons (brand/provider logos, loading spinners & framer-motion animations,
charts/sparklines, background decoration) plus a few ambiguous glyphs.
2026-05-31 23:37:12 +03:00

152 lines
5.3 KiB
TypeScript

import { useEffect, useMemo, useRef, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { cn } from '@/lib/utils';
import { CheckIcon } from '@/components/icons';
import { ChevronDownIcon } from './DropdownSelect';
// ──────────────────────────────────────────────────────────────────
// MultiSelectDropdown
//
// Pop-over multi-select used by AdminBulkActions filters (tariffs,
// statuses, nodes, etc.). Closes on outside click; provides
// select-all / deselect-all helpers. Pure controlled component.
// ──────────────────────────────────────────────────────────────────
export interface MultiSelectOption {
value: number;
label: string;
}
export interface MultiSelectDropdownProps {
options: MultiSelectOption[];
selected: number[];
onChange: (ids: number[]) => void;
placeholder: string;
className?: string;
}
export function MultiSelectDropdown({
options,
selected,
onChange,
placeholder,
className,
}: MultiSelectDropdownProps) {
const { t } = useTranslation();
const [open, setOpen] = useState(false);
const containerRef = useRef<HTMLDivElement>(null);
useEffect(() => {
if (!open) return;
const handler = (e: MouseEvent) => {
if (containerRef.current && !containerRef.current.contains(e.target as Node)) {
setOpen(false);
}
};
document.addEventListener('mousedown', handler);
return () => document.removeEventListener('mousedown', handler);
}, [open]);
const buttonLabel = useMemo(() => {
if (selected.length === 0) return placeholder;
if (selected.length <= 2) {
return selected
.map((id) => options.find((o) => o.value === id)?.label)
.filter(Boolean)
.join(', ');
}
return t('admin.bulkActions.filters.tariffsSelected', { count: selected.length });
}, [selected, options, placeholder, t]);
const handleToggle = (value: number) => {
if (selected.includes(value)) {
onChange(selected.filter((id) => id !== value));
} else {
onChange([...selected, value]);
}
};
const handleSelectAll = () => {
onChange(options.map((o) => o.value));
};
const handleDeselectAll = () => {
onChange([]);
};
return (
<div ref={containerRef} className={cn('relative', className)}>
<button
type="button"
onClick={() => setOpen(!open)}
className={cn(
'flex w-full items-center justify-between rounded-xl border bg-dark-800 px-3 py-2.5 text-left text-sm outline-none transition-colors',
open
? 'border-accent-500/40 shadow-[0_0_0_3px_rgba(var(--color-accent-500),0.08)]'
: 'border-dark-700',
selected.length > 0 ? 'text-dark-100' : 'text-dark-500',
)}
aria-expanded={open}
aria-haspopup="listbox"
>
<span className="truncate">{buttonLabel}</span>
<div
className={cn('ml-2 shrink-0 text-dark-500 transition-transform', open && 'rotate-180')}
>
<ChevronDownIcon />
</div>
</button>
{open && (
<div className="absolute left-0 right-0 top-full z-50 mt-1 max-h-64 overflow-y-auto rounded-xl border border-dark-700 bg-dark-800 py-1 shadow-2xl">
<div className="flex items-center gap-1 border-b border-dark-700/50 px-3 py-1.5">
<button
type="button"
onClick={handleSelectAll}
className="text-xs font-medium text-accent-400 transition-colors hover:text-accent-300"
>
{t('admin.bulkActions.filters.selectAll')}
</button>
<span className="text-dark-600">/</span>
<button
type="button"
onClick={handleDeselectAll}
className="text-xs font-medium text-dark-400 transition-colors hover:text-dark-300"
>
{t('admin.bulkActions.filters.deselectAll')}
</button>
</div>
{options.map((option) => {
const isChecked = selected.includes(option.value);
return (
<button
key={option.value}
type="button"
onClick={() => handleToggle(option.value)}
className="flex w-full items-center gap-2.5 px-3 py-2 text-left text-sm transition-colors hover:bg-dark-700/50"
role="option"
aria-selected={isChecked}
>
<div
className={cn(
'flex h-4 w-4 shrink-0 items-center justify-center rounded border transition-all duration-150',
isChecked
? 'border-accent-500 bg-accent-500'
: 'border-dark-500 bg-dark-700/60',
)}
>
{isChecked && <CheckIcon className="h-2.5 w-2.5 text-white" />}
</div>
<span className={cn('text-sm', isChecked ? 'text-dark-100' : 'text-dark-300')}>
{option.label}
</span>
</button>
);
})}
</div>
)}
</div>
);
}