godcrm/panels/ContactsPanel.tsx
GOD CRM Release f89e074dd1
Some checks failed
CI / Lint / Typecheck / Test / Build (push) Has been cancelled
CI / PostgreSQL Integration Tests (push) Has been cancelled
GOD CRM — public scrubbed snapshot
Governed substrate for autonomous agents: scoped identity (passports),
audited actions, MCP workspace. Infra IPs and secrets redacted for public release.
2026-08-10 04:01:45 +03:00

216 lines
7.9 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* ContactsPanel — extracted from AIChatPanel.renderContactsPanel()
* Displays a list of contacts with search, favorites, and type filtering.
*/
import React from 'react';
import { X, Search, Star, Loader2 } from 'lucide-react';
import { cn } from '@/shared/utils/cn';
import { AccordionContactItem } from '../components/AccordionContactItem';
type PanelTab = 'none' | 'contacts' | 'ai-agents' | 'tasks' | 'settings' | 'inbox';
interface ContactUser {
id: number;
name: string;
email?: string | null;
avatar_url?: string | null;
managed_by_agent_table_id?: number | null;
}
interface ChatParticipant {
id: number;
name: string;
type: 'user' | 'agent';
email?: string;
avatar?: string;
}
interface ChatPartner {
type: string;
id: number;
name: string;
avatarUrl?: string;
email?: string;
icon?: string | null;
participants?: Array<{ id: number; name: string; type: 'user' | 'agent' }>;
}
export interface ContactsPanelProps {
showFavorites: boolean;
setShowFavorites: React.Dispatch<React.SetStateAction<boolean>>;
userTypeFilter: 'all' | 'humans' | 'agents';
setUserTypeFilter: (value: 'all' | 'humans' | 'agents') => void;
showAllContacts: boolean;
setShowAllContacts: React.Dispatch<React.SetStateAction<boolean>>;
setActivePanel: (panel: PanelTab) => void;
contactsSearch: string;
setContactsSearch: (value: string) => void;
isLoadingUsers: boolean;
filteredUsers: ContactUser[];
chatParticipants: ChatParticipant[];
chatPartner: ChatPartner | null;
favorites: number[];
handleUserSelect: (user: ContactUser) => void;
selectConversation: (id: number) => void;
toggleFavorite: (userId: number) => void;
handleAddToGroup: (user: ContactUser) => void;
forceNewChatRef: React.MutableRefObject<boolean>;
createNewConversation: () => void;
setUserConversationId: (id: number | null) => void;
setChatPartner: (partner: ChatPartner | null) => void;
setChatParticipants: (participants: ChatParticipant[]) => void;
}
export function ContactsPanel({
showFavorites,
setShowFavorites,
userTypeFilter,
setUserTypeFilter,
showAllContacts,
setShowAllContacts,
setActivePanel,
contactsSearch,
setContactsSearch,
isLoadingUsers,
filteredUsers,
chatParticipants,
chatPartner,
favorites,
handleUserSelect,
selectConversation,
toggleFavorite,
handleAddToGroup,
forceNewChatRef,
createNewConversation,
setUserConversationId,
setChatPartner,
setChatParticipants,
}: ContactsPanelProps) {
return (
<div className="flex flex-col h-full">
{/* Header with close button */}
<div className="p-2 border-b border-[var(--border-secondary)] flex items-center justify-between">
<div className="flex items-center gap-2">
{/* Favorites toggle */}
<button
onClick={() => setShowFavorites(prev => !prev)}
className={cn(
"p-1.5 rounded-lg transition-colors",
showFavorites
? "bg-yellow-500/20 text-yellow-400"
: "text-[var(--text-tertiary)] hover:bg-[var(--bg-tertiary)] hover:text-[var(--text-primary)]"
)}
title="Избранные"
>
<Star className={cn("w-4 h-4", showFavorites && "fill-current")} />
</button>
{/* Type filter */}
<select
value={userTypeFilter}
onChange={(e) => setUserTypeFilter(e.target.value as 'all' | 'humans' | 'agents')}
className="px-2 py-1.5 text-xs rounded-lg bg-[var(--bg-tertiary)] text-[var(--text-primary)] border-none focus:outline-none focus:ring-2 focus:ring-[var(--color-primary-500)]/30"
>
<option value="all">Все</option>
<option value="humans">Люди</option>
<option value="agents">AI</option>
</select>
{/* Show all users toggle */}
<button
onClick={() => setShowAllContacts(prev => !prev)}
className={cn(
"px-2 py-1.5 text-xs rounded-lg transition-colors whitespace-nowrap",
showAllContacts
? "bg-[var(--color-primary-500)]/20 text-[var(--color-primary-500)]"
: "bg-[var(--bg-tertiary)] text-[var(--text-tertiary)] hover:text-[var(--text-primary)]"
)}
title={showAllContacts ? "Показать только участников спейса" : "Показать всех пользователей"}
>
{showAllContacts ? "Все" : "Спейс"}
</button>
</div>
{/* Close panel - fixed right */}
<button
onClick={() => setActivePanel('none')}
className="p-1.5 rounded-lg text-[var(--text-tertiary)] hover:bg-[var(--bg-tertiary)] hover:text-[var(--text-primary)] transition-colors"
title="Закрыть"
>
<X className="w-4 h-4" />
</button>
</div>
{/* Search - shown in wide mode sidebar */}
<div className="px-2 py-1.5 border-b border-[var(--border-secondary)]">
<div className="relative">
<Search className="absolute left-2.5 top-1/2 -translate-y-1/2 w-4 h-4 text-[var(--text-tertiary)]" />
<input
type="text"
value={contactsSearch}
onChange={(e) => setContactsSearch(e.target.value)}
placeholder="Поиск контактов..."
className="w-full pl-8 pr-3 py-1.5 text-sm rounded-lg bg-[var(--bg-tertiary)] text-[var(--text-primary)] placeholder:text-[var(--text-tertiary)] border-none focus:outline-none focus:ring-2 focus:ring-[var(--color-primary-500)]/30"
/>
</div>
</div>
{/* Content */}
<div className="flex-1 overflow-y-auto">
{isLoadingUsers ? (
<div className="flex items-center justify-center py-8">
<Loader2 className="w-5 h-5 animate-spin text-[var(--text-tertiary)]" />
</div>
) : filteredUsers.length === 0 ? (
<div className="py-8 text-center text-sm text-[var(--text-tertiary)]">
{contactsSearch ? 'Не найдено' : 'Нет контактов'}
</div>
) : (
filteredUsers.map(user => {
const isInChat = chatParticipants.some(p => p.id === user.id);
const isCurrent = chatPartner?.type === 'user' && chatPartner.id === user.id;
const isFavorite = favorites.includes(user.id);
return (
<AccordionContactItem
key={user.id}
user={user}
isCurrentPartner={isCurrent}
isInGroup={isInChat}
isFavorite={isFavorite}
onSelect={handleUserSelect}
onSelectChat={(chatId) => {
selectConversation(chatId);
setActivePanel('none');
}}
onToggleFavorite={toggleFavorite}
onAddToGroup={handleAddToGroup}
onCreateNewChat={(targetUser) => {
// Force creation of a new conversation (skip "find existing" logic)
forceNewChatRef.current = true;
createNewConversation();
setUserConversationId(null);
setChatPartner({
type: 'user',
id: targetUser.id,
name: targetUser.name,
avatarUrl: targetUser.avatar_url ?? undefined,
email: targetUser.email ?? undefined
});
setChatParticipants([{
type: targetUser.managed_by_agent_table_id ? 'agent' : 'user',
id: targetUser.id,
name: targetUser.name,
email: targetUser.email ?? undefined,
avatar: targetUser.avatar_url ?? undefined
}]);
setActivePanel('none');
}}
/>
);
})
)}
</div>
</div>
);
}