mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
- removeScope preserves graph state when items remain (only resets on empty) - Extract shared CheckIcon, CloseIcon, Spinner, ScopeListItem components - Unify three handleSelect* into single handleToggle - Fix shared mutable Set in reset state (factory function) - Add MAX_SCOPE_ITEMS UI feedback (disabled button, warning banner) - Correct ARIA: dialog > tablist + listbox > option structure - Event listeners only attached when dropdown is open - isSelected uses Set lookup via useMemo instead of O(n) scan - Clear user search only on add, not on deselect
468 lines
16 KiB
TypeScript
468 lines
16 KiB
TypeScript
import { useState, useEffect, useRef, useMemo, useCallback } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { referralNetworkApi } from '@/api/referralNetwork';
|
|
import { MAX_SCOPE_ITEMS } from '@/store/referralNetwork';
|
|
import type { ScopeSelection, ScopeType } from '@/types/referralNetwork';
|
|
|
|
interface ScopeSelectorProps {
|
|
value: ScopeSelection[];
|
|
onAdd: (selection: ScopeSelection) => void;
|
|
onRemove: (type: ScopeSelection['type'], id: number) => void;
|
|
onClear: () => void;
|
|
className?: string;
|
|
}
|
|
|
|
const SCOPE_TABS: ScopeType[] = ['campaign', 'partner', 'user'];
|
|
|
|
const CHIP_COLORS: Record<ScopeType, string> = {
|
|
campaign: 'bg-success-500/20 text-success-400',
|
|
partner: 'bg-warning-500/20 text-warning-400',
|
|
user: 'bg-accent-500/20 text-accent-400',
|
|
};
|
|
|
|
// Reuse CHIP_COLORS for avatar backgrounds (same palette)
|
|
const AVATAR_COLORS = CHIP_COLORS;
|
|
|
|
const AVATAR_LETTERS: Record<ScopeType, string> = {
|
|
campaign: 'C',
|
|
partner: 'P',
|
|
user: 'U',
|
|
};
|
|
|
|
function CheckIcon() {
|
|
return (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M4.5 12.75l6 6 9-13.5" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
function CloseIcon({ className = 'h-3 w-3' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18L18 6M6 6l12 12" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
function Spinner({ size = 'h-5 w-5' }: { size?: string }) {
|
|
return (
|
|
<div
|
|
className={`${size} animate-spin rounded-full border-2 border-dark-600 border-t-accent-400`}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function EmptyMessage({ text }: { text: string }) {
|
|
return <div className="px-4 py-3 text-center text-sm text-dark-500">{text}</div>;
|
|
}
|
|
|
|
interface ScopeListItemProps {
|
|
type: ScopeType;
|
|
selected: boolean;
|
|
onClick: () => void;
|
|
title: string;
|
|
subtitle: string;
|
|
badge?: React.ReactNode;
|
|
}
|
|
|
|
function ScopeListItem({ type, selected, onClick, title, subtitle, badge }: ScopeListItemProps) {
|
|
return (
|
|
<button
|
|
role="option"
|
|
aria-selected={selected}
|
|
onClick={onClick}
|
|
className={`flex w-full items-center gap-3 px-4 py-2.5 text-left transition-colors hover:bg-dark-700/50 focus-visible:bg-dark-700/50 focus-visible:outline-none ${
|
|
selected ? 'bg-dark-700/30' : ''
|
|
}`}
|
|
>
|
|
<div
|
|
className={`flex h-7 w-7 shrink-0 items-center justify-center rounded-full text-xs font-medium ${AVATAR_COLORS[type]}`}
|
|
>
|
|
{selected ? <CheckIcon /> : AVATAR_LETTERS[type]}
|
|
</div>
|
|
<div className="min-w-0 flex-1">
|
|
<p className="truncate text-sm font-medium text-dark-100">{title}</p>
|
|
<p className="truncate text-xs text-dark-500">{subtitle}</p>
|
|
</div>
|
|
{badge}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export function ScopeSelector({ value, onAdd, onRemove, onClear, className }: ScopeSelectorProps) {
|
|
const { t } = useTranslation();
|
|
const [activeTab, setActiveTab] = useState<ScopeType>('campaign');
|
|
const [searchInput, setSearchInput] = useState('');
|
|
const [debouncedUserQuery, setDebouncedUserQuery] = useState('');
|
|
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
|
|
const containerRef = useRef<HTMLDivElement>(null);
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
|
|
const isMaxReached = value.length >= MAX_SCOPE_ITEMS;
|
|
|
|
const { data: scopeOptions, isLoading: isScopeLoading } = useQuery({
|
|
queryKey: ['referral-network', 'scope-options'],
|
|
queryFn: referralNetworkApi.getScopeOptions,
|
|
staleTime: 120_000,
|
|
});
|
|
|
|
// Debounce user search
|
|
useEffect(() => {
|
|
if (activeTab !== 'user') return;
|
|
const timer = setTimeout(() => {
|
|
setDebouncedUserQuery(searchInput.trim());
|
|
}, 300);
|
|
return () => clearTimeout(timer);
|
|
}, [searchInput, activeTab]);
|
|
|
|
const { data: userSearchResults, isFetching: isUserSearching } = useQuery({
|
|
queryKey: ['referral-network-search', debouncedUserQuery],
|
|
queryFn: () => referralNetworkApi.search(debouncedUserQuery),
|
|
enabled: activeTab === 'user' && debouncedUserQuery.length >= 2,
|
|
staleTime: 30_000,
|
|
});
|
|
|
|
// Focus input when dropdown opens
|
|
useEffect(() => {
|
|
if (isDropdownOpen) {
|
|
inputRef.current?.focus();
|
|
}
|
|
}, [isDropdownOpen]);
|
|
|
|
// Close dropdown on outside click or Escape key (only when open)
|
|
useEffect(() => {
|
|
if (!isDropdownOpen) return;
|
|
function handleClickOutside(e: MouseEvent) {
|
|
if (containerRef.current && !containerRef.current.contains(e.target as Node)) {
|
|
setIsDropdownOpen(false);
|
|
}
|
|
}
|
|
function handleEscape(e: KeyboardEvent) {
|
|
if (e.key === 'Escape') {
|
|
setIsDropdownOpen(false);
|
|
}
|
|
}
|
|
document.addEventListener('mousedown', handleClickOutside);
|
|
document.addEventListener('keydown', handleEscape);
|
|
return () => {
|
|
document.removeEventListener('mousedown', handleClickOutside);
|
|
document.removeEventListener('keydown', handleEscape);
|
|
};
|
|
}, [isDropdownOpen]);
|
|
|
|
const selectedSet = useMemo(() => new Set(value.map((s) => `${s.type}:${s.id}`)), [value]);
|
|
|
|
const isSelected = useCallback(
|
|
(type: ScopeType, id: number): boolean => selectedSet.has(`${type}:${id}`),
|
|
[selectedSet],
|
|
);
|
|
|
|
// Filter campaigns/partners by local search input
|
|
const filteredCampaigns = useMemo(() => {
|
|
if (!scopeOptions) return [];
|
|
const q = searchInput.toLowerCase().trim();
|
|
if (!q) return scopeOptions.campaigns;
|
|
return scopeOptions.campaigns.filter(
|
|
(c) => c.name.toLowerCase().includes(q) || c.start_parameter.toLowerCase().includes(q),
|
|
);
|
|
}, [scopeOptions, searchInput]);
|
|
|
|
const filteredPartners = useMemo(() => {
|
|
if (!scopeOptions) return [];
|
|
const q = searchInput.toLowerCase().trim();
|
|
if (!q) return scopeOptions.partners;
|
|
return scopeOptions.partners.filter(
|
|
(p) =>
|
|
p.display_name.toLowerCase().includes(q) ||
|
|
(p.username && p.username.toLowerCase().includes(q)),
|
|
);
|
|
}, [scopeOptions, searchInput]);
|
|
|
|
function handleTabChange(tab: ScopeType) {
|
|
setActiveTab(tab);
|
|
setSearchInput('');
|
|
setDebouncedUserQuery('');
|
|
setIsDropdownOpen(true);
|
|
inputRef.current?.focus();
|
|
}
|
|
|
|
function handleToggle(type: ScopeType, id: number, label: string) {
|
|
if (isSelected(type, id)) {
|
|
onRemove(type, id);
|
|
} else {
|
|
if (isMaxReached) return;
|
|
onAdd({ type, id, label });
|
|
if (type === 'user') {
|
|
setSearchInput('');
|
|
setDebouncedUserQuery('');
|
|
}
|
|
}
|
|
}
|
|
|
|
const tabLabels = useMemo<Record<ScopeType, string>>(
|
|
() => ({
|
|
campaign: t('admin.referralNetwork.scope.campaign'),
|
|
partner: t('admin.referralNetwork.scope.partner'),
|
|
user: t('admin.referralNetwork.scope.user'),
|
|
}),
|
|
[t],
|
|
);
|
|
|
|
const placeholders = useMemo<Record<ScopeType, string>>(
|
|
() => ({
|
|
campaign: t('admin.referralNetwork.scope.selectCampaign'),
|
|
partner: t('admin.referralNetwork.scope.selectPartner'),
|
|
user: t('admin.referralNetwork.scope.selectUser'),
|
|
}),
|
|
[t],
|
|
);
|
|
|
|
const isLoading = activeTab === 'user' ? isUserSearching : isScopeLoading;
|
|
|
|
return (
|
|
<div ref={containerRef} className={`relative ${className ?? ''}`}>
|
|
{/* Chips row + add trigger */}
|
|
<div className="flex items-center gap-1.5">
|
|
{/* Selected chips */}
|
|
{value.length > 0 && (
|
|
<div className="flex min-w-0 flex-1 flex-wrap items-center gap-1">
|
|
{value.map((item) => (
|
|
<span
|
|
key={`${item.type}:${item.id}`}
|
|
className={`inline-flex shrink-0 items-center gap-1 rounded-md px-2 py-0.5 text-xs font-medium ${CHIP_COLORS[item.type]}`}
|
|
>
|
|
<span className="max-w-[120px] truncate">{item.label}</span>
|
|
<button
|
|
onClick={() => onRemove(item.type, item.id)}
|
|
aria-label={t('admin.referralNetwork.scope.removeItem', { label: item.label })}
|
|
className="ml-0.5 rounded-sm p-0.5 transition-colors hover:bg-white/10"
|
|
>
|
|
<CloseIcon />
|
|
</button>
|
|
</span>
|
|
))}
|
|
{/* Clear all (only when 2+ items) */}
|
|
{value.length > 1 && (
|
|
<button
|
|
onClick={onClear}
|
|
aria-label={t('admin.referralNetwork.scope.clearAll')}
|
|
className="shrink-0 rounded-md p-1 text-dark-500 transition-colors hover:bg-dark-800 hover:text-dark-300"
|
|
>
|
|
<CloseIcon className="h-3.5 w-3.5" />
|
|
</button>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Add button */}
|
|
<button
|
|
onClick={() => setIsDropdownOpen((prev) => !prev)}
|
|
aria-label={t('admin.referralNetwork.scope.addScope')}
|
|
aria-expanded={isDropdownOpen}
|
|
aria-haspopup="listbox"
|
|
className={`shrink-0 rounded-lg border border-dark-700/50 bg-dark-800 p-1.5 transition-colors hover:border-accent-500/50 hover:text-accent-400 ${
|
|
isMaxReached ? 'cursor-not-allowed text-dark-600 opacity-50' : 'text-dark-400'
|
|
}`}
|
|
disabled={isMaxReached && !isDropdownOpen}
|
|
>
|
|
<svg
|
|
className="h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M12 4.5v15m7.5-7.5h-15" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
|
|
{/* Dropdown */}
|
|
{isDropdownOpen && (
|
|
<div
|
|
className="absolute left-0 right-0 top-full z-50 mt-1 rounded-xl border border-dark-700/50 bg-dark-800 shadow-xl backdrop-blur-md"
|
|
role="dialog"
|
|
aria-label={t('admin.referralNetwork.scope.addScope')}
|
|
>
|
|
{/* Max reached banner */}
|
|
{isMaxReached && (
|
|
<div className="border-b border-dark-700/50 px-3 py-1.5 text-center text-xs text-warning-400">
|
|
{t('admin.referralNetwork.scope.maxReached', { max: MAX_SCOPE_ITEMS })}
|
|
</div>
|
|
)}
|
|
|
|
{/* Tab bar + search input */}
|
|
<div className="flex items-center gap-2 border-b border-dark-700/50 px-3 py-2">
|
|
<div
|
|
className="flex shrink-0 rounded-lg border border-dark-700/50 bg-dark-900 p-0.5"
|
|
role="tablist"
|
|
>
|
|
{SCOPE_TABS.map((tab) => (
|
|
<button
|
|
key={tab}
|
|
role="tab"
|
|
aria-selected={activeTab === tab}
|
|
onClick={() => handleTabChange(tab)}
|
|
className={`rounded-md px-2.5 py-1 text-xs font-medium transition-colors ${
|
|
activeTab === tab
|
|
? 'bg-accent-500/20 text-accent-400'
|
|
: 'text-dark-400 hover:text-dark-200'
|
|
}`}
|
|
>
|
|
{tabLabels[tab]}
|
|
</button>
|
|
))}
|
|
</div>
|
|
|
|
<div className="relative min-w-0 flex-1">
|
|
<svg
|
|
className="absolute left-2.5 top-1/2 h-3.5 w-3.5 -translate-y-1/2 text-dark-500"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth={1.5}
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z"
|
|
/>
|
|
</svg>
|
|
<input
|
|
ref={inputRef}
|
|
type="text"
|
|
value={searchInput}
|
|
maxLength={200}
|
|
onChange={(e) => setSearchInput(e.target.value)}
|
|
placeholder={placeholders[activeTab]}
|
|
className="w-full rounded-lg border border-dark-700/50 bg-dark-900/50 py-1.5 pl-8 pr-8 text-sm text-dark-100 placeholder-dark-500 outline-none transition-colors focus:border-accent-500/50 focus:ring-1 focus:ring-accent-500/30"
|
|
/>
|
|
{isLoading && (
|
|
<div className="absolute right-2.5 top-1/2 -translate-y-1/2">
|
|
<Spinner size="h-3.5 w-3.5" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* List */}
|
|
<div className="max-h-64 overflow-y-auto" role="listbox" aria-multiselectable="true">
|
|
{activeTab === 'campaign' && renderCampaignList()}
|
|
{activeTab === 'partner' && renderPartnerList()}
|
|
{activeTab === 'user' && renderUserList()}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
|
|
function renderCampaignList() {
|
|
if (isScopeLoading) {
|
|
return (
|
|
<div className="flex items-center justify-center px-4 py-6">
|
|
<Spinner />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (filteredCampaigns.length === 0) {
|
|
return <EmptyMessage text={t('admin.referralNetwork.scope.noResults')} />;
|
|
}
|
|
|
|
return filteredCampaigns.map((campaign) => (
|
|
<ScopeListItem
|
|
key={campaign.id}
|
|
type="campaign"
|
|
selected={isSelected('campaign', campaign.id)}
|
|
onClick={() => handleToggle('campaign', campaign.id, campaign.name)}
|
|
title={campaign.name}
|
|
subtitle={`${campaign.start_parameter} / ${campaign.direct_users} ${t('admin.referralNetwork.scope.users')}`}
|
|
badge={
|
|
<span
|
|
className={`shrink-0 rounded px-1.5 py-0.5 text-[10px] font-medium ${
|
|
campaign.is_active
|
|
? 'bg-success-500/20 text-success-400'
|
|
: 'bg-dark-700/50 text-dark-400'
|
|
}`}
|
|
>
|
|
{campaign.is_active
|
|
? t('admin.referralNetwork.scope.active')
|
|
: t('admin.referralNetwork.scope.inactive')}
|
|
</span>
|
|
}
|
|
/>
|
|
));
|
|
}
|
|
|
|
function renderPartnerList() {
|
|
if (isScopeLoading) {
|
|
return (
|
|
<div className="flex items-center justify-center px-4 py-6">
|
|
<Spinner />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (filteredPartners.length === 0) {
|
|
return <EmptyMessage text={t('admin.referralNetwork.scope.noResults')} />;
|
|
}
|
|
|
|
return filteredPartners.map((partner) => (
|
|
<ScopeListItem
|
|
key={partner.id}
|
|
type="partner"
|
|
selected={isSelected('partner', partner.id)}
|
|
onClick={() => handleToggle('partner', partner.id, partner.display_name)}
|
|
title={partner.display_name}
|
|
subtitle={`${partner.username ? `@${partner.username} / ` : ''}${partner.campaign_count} ${t('admin.referralNetwork.scope.campaigns')}`}
|
|
/>
|
|
));
|
|
}
|
|
|
|
function renderUserList() {
|
|
if (debouncedUserQuery.length < 2) {
|
|
return <EmptyMessage text={t('admin.referralNetwork.scope.selectUser')} />;
|
|
}
|
|
|
|
if (isUserSearching) {
|
|
return (
|
|
<div className="flex items-center justify-center px-4 py-6">
|
|
<Spinner />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const users = userSearchResults?.users ?? [];
|
|
|
|
if (users.length === 0) {
|
|
return <EmptyMessage text={t('admin.referralNetwork.scope.noResults')} />;
|
|
}
|
|
|
|
return users.map((user) => (
|
|
<ScopeListItem
|
|
key={user.id}
|
|
type="user"
|
|
selected={isSelected('user', user.id)}
|
|
onClick={() => handleToggle('user', user.id, user.display_name)}
|
|
title={user.display_name}
|
|
subtitle={`${user.username ? `@${user.username}` : ''}${user.tg_id ? ` #${user.tg_id}` : ''}`}
|
|
badge={
|
|
user.is_partner ? (
|
|
<span className="shrink-0 rounded bg-warning-500/20 px-1.5 py-0.5 text-[10px] font-medium text-warning-400">
|
|
{t('admin.referralNetwork.user.partner')}
|
|
</span>
|
|
) : undefined
|
|
}
|
|
/>
|
|
));
|
|
}
|
|
}
|