Spaces:
Sleeping
Sleeping
File size: 8,131 Bytes
0bb4dfa af5d1df 0bb4dfa 4944128 0bb4dfa af5d1df 0bb4dfa af5d1df 0bb4dfa af5d1df 0bb4dfa 958ebfa 0bb4dfa af5d1df 0bb4dfa af5d1df 0bb4dfa 958ebfa 0bb4dfa af5d1df 958ebfa af5d1df 958ebfa af5d1df 0bb4dfa af5d1df 0bb4dfa af5d1df 0bb4dfa af5d1df 0bb4dfa af5d1df 0bb4dfa af5d1df 0bb4dfa 958ebfa 0bb4dfa 958ebfa 0bb4dfa 958ebfa af5d1df 0bb4dfa af5d1df 0bb4dfa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | import React, { useState, useRef, useEffect } from 'react';
import { Users, Plus, ChevronDown, Wand2, Check } from 'lucide-react';
/**
* Header dropdown that lists every available participant the user can
* pull into the conversation. Three sections:
* - Neon (HANA personas, vanilla/RAG already filtered server-side)
* - Extra (bundled catalog personas, provider + Neon LLMs)
* - Expert (user-created, stored in localStorage)
*
* A top-of-list "Select N Automatically" toggle defers the choice to
* the orchestrator LLM: when enabled, manual checkboxes are visually
* disabled and the actual picks happen at /chat/start time via the
* /api/chat/auto-select-participants endpoint.
*
* Selecting a participant adds them to the active conversation list. The
* "Create Expert Persona..." entry opens the modal.
*/
export default function ParticipantDropdown({
catalog,
expertPersonas,
selectedIds,
maxParticipants,
onToggleParticipant,
onOpenExpertModal,
autoSelectMode,
onToggleAutoSelectMode,
}) {
const [open, setOpen] = useState(false);
const ref = useRef(null);
useEffect(() => {
function handleClickOutside(e) {
if (open && ref.current && !ref.current.contains(e.target)) {
setOpen(false);
}
}
document.addEventListener('mousedown', handleClickOutside);
return () => document.removeEventListener('mousedown', handleClickOutside);
}, [open]);
const isSelected = (id) => selectedIds.includes(id);
const atCap = selectedIds.length >= maxParticipants;
// When auto-select is on, checkboxes are deferred entirely - the
// orchestrator picks at start time, so user picks are ignored.
const checkboxDisabledForAuto = !!autoSelectMode;
const openCreateExpertModal = () => {
setOpen(false);
onOpenExpertModal(null);
};
return (
<div className="ccai-dropdown-wrap" ref={ref}>
<button
className="btn-sm btn-outline ccai-dropdown-trigger"
onClick={() => setOpen(o => !o)}
title={
autoSelectMode
? 'Auto-select mode: participants picked at chat start by the orchestrator'
: 'Add or remove participants'
}
>
<Users size={14} />
<span>
{autoSelectMode
? 'Participants Auto Selected'
: `Participants (${selectedIds.length}/${maxParticipants})`}
</span>
<ChevronDown size={12} />
</button>
{open && (
<>
<button
type="button"
className="ccai-dropdown-backdrop"
aria-label="Close participants menu"
onClick={() => setOpen(false)}
/>
<div className="ccai-dropdown-panel">
<div className="ccai-dropdown-section">
<button
type="button"
className={
'ccai-dropdown-autoselect' +
(autoSelectMode ? ' ccai-dropdown-autoselect-on' : '')
}
onClick={() => onToggleAutoSelectMode?.(!autoSelectMode)}
title={
autoSelectMode
? 'Turn off auto-select and resume manual picking'
: 'Defer participant selection until chat start; the orchestrator will pick the most relevant.'
}
>
{autoSelectMode ? <Check size={14} /> : <Wand2 size={14} />}
<span>Select {maxParticipants} Automatically</span>
</button>
<div className="ccai-dropdown-autoselect-help">
{autoSelectMode
? 'The orchestrator will pick the most relevant participants for your question when you start the chat.'
: 'Create or pick manually from the lists below.'}
</div>
<CreateExpertPersonaButton onClick={openCreateExpertModal} />
</div>
<div className="ccai-dropdown-divider" />
<div
className={
'ccai-dropdown-section' +
(checkboxDisabledForAuto ? ' ccai-dropdown-section-muted' : '')
}
>
<div className="ccai-dropdown-section-title">Neon.ai Personas</div>
{(catalog?.neon || []).length === 0 && (
<div className="ccai-dropdown-empty">
Neon personas unavailable - check HANA auth.
</div>
)}
{(catalog?.neon || []).map((p) => (
<DropdownItem
key={p.participant_id}
participant={p}
checked={isSelected(p.participant_id)}
disabledForAdd={
checkboxDisabledForAuto
|| (atCap && !isSelected(p.participant_id))
}
autoSelectActive={checkboxDisabledForAuto}
onToggle={() => onToggleParticipant(p, 'neon')}
/>
))}
</div>
<div className="ccai-dropdown-divider" />
<div
className={
'ccai-dropdown-section' +
(checkboxDisabledForAuto ? ' ccai-dropdown-section-muted' : '')
}
>
<div className="ccai-dropdown-section-title">Extra Personas</div>
{(catalog?.extra || []).map((p) => (
<DropdownItem
key={p.participant_id}
participant={p}
checked={isSelected(p.participant_id)}
disabledForAdd={
checkboxDisabledForAuto
|| (atCap && !isSelected(p.participant_id))
}
autoSelectActive={checkboxDisabledForAuto}
onToggle={() => onToggleParticipant(p, 'extra')}
/>
))}
</div>
<div className="ccai-dropdown-divider" />
<div
className={
'ccai-dropdown-section' +
(checkboxDisabledForAuto ? ' ccai-dropdown-section-muted' : '')
}
>
<div className="ccai-dropdown-section-title">Expert Personas</div>
{(expertPersonas || []).length === 0 && (
<div className="ccai-dropdown-empty">
You haven't created any expert personas yet.
</div>
)}
{(expertPersonas || []).map((p) => (
<DropdownItem
key={p.participant_id}
participant={p}
checked={isSelected(p.participant_id)}
disabledForAdd={
checkboxDisabledForAuto
|| (atCap && !isSelected(p.participant_id))
}
autoSelectActive={checkboxDisabledForAuto}
onToggle={() => onToggleParticipant(p, 'expert')}
/>
))}
<CreateExpertPersonaButton onClick={openCreateExpertModal} />
</div>
</div>
</>
)}
</div>
);
}
function CreateExpertPersonaButton({ onClick, className }) {
return (
<button
type="button"
className={
'ccai-dropdown-create-btn'
+ (className ? ` ${className}` : '')
}
onClick={onClick}
>
<Plus size={12} />
Create Expert Persona...
</button>
);
}
function DropdownItem({ participant, checked, disabledForAdd, autoSelectActive, onToggle }) {
return (
<label
className={
'ccai-dropdown-item' +
(checked ? ' ccai-dropdown-item-checked' : '') +
(disabledForAdd ? ' ccai-dropdown-item-disabled' : '')
}
title={
autoSelectActive
? 'Disabled while auto-select is on'
: (disabledForAdd ? 'Participant cap reached' : '')
}
>
<input
type="checkbox"
checked={checked}
disabled={disabledForAdd}
onChange={onToggle}
/>
<div className="ccai-dropdown-item-text">
<div className="ccai-dropdown-item-name">{participant.name}</div>
<div className="ccai-dropdown-item-sub">
{participant.model_display || participant.default_model_id || ''}
</div>
</div>
</label>
);
}
|