All files / src/components/Settings IMChannels.tsx

0% Statements 0/323
0% Branches 0/1
0% Functions 0/1
0% Lines 0/323

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
/**
 * IMChannels - IM Channel Management UI
 *
 * Displays and manages IM channel configurations.
 * Supports viewing, configuring, and adding new channels.
 */
import { useState, useEffect } from 'react';
import { Radio, RefreshCw, MessageCircle, Settings2, Plus, X, Check, AlertCircle, ExternalLink } from 'lucide-react';
import { useConnectionStore } from '../../store/connectionStore';
import { useConfigStore, type ChannelInfo } from '../../store/configStore';
import { useAgentStore } from '../../store/agentStore';
 
const CHANNEL_ICONS: Record<string, string> = {
  feishu: '飞',
  qqbot: 'QQ',
  wechat: '微',
  discord: 'D',
  slack: 'S',
  telegram: 'T',
};
 
const CHANNEL_CONFIG_FIELDS: Record<string, { key: string; label: string; type: string; placeholder: string; required: boolean }[]> = {
  feishu: [
    { key: 'appId', label: 'App ID', type: 'text', placeholder: 'cli_xxx', required: true },
    { key: 'appSecret', label: 'App Secret', type: 'password', placeholder: '••••••••', required: true },
  ],
  discord: [
    { key: 'botToken', label: 'Bot Token', type: 'password', placeholder: 'OTk2NzY4...', required: true },
    { key: 'guildId', label: 'Guild ID (可选)', type: 'text', placeholder: '123456789', required: false },
  ],
  slack: [
    { key: 'botToken', label: 'Bot Token', type: 'password', placeholder: 'xoxb-...', required: true },
    { key: 'appToken', label: 'App Token', type: 'password', placeholder: 'xapp-...', required: false },
  ],
  telegram: [
    { key: 'botToken', label: 'Bot Token', type: 'password', placeholder: '123456:ABC...', required: true },
  ],
  qqbot: [
    { key: 'appId', label: 'App ID', type: 'text', placeholder: '1234567890', required: true },
    { key: 'token', label: 'Token', type: 'password', placeholder: '••••••••', required: true },
  ],
  wechat: [
    { key: 'corpId', label: 'Corp ID', type: 'text', placeholder: 'wwxxx', required: true },
    { key: 'agentId', label: 'Agent ID', type: 'text', placeholder: '1000001', required: true },
    { key: 'secret', label: 'Secret', type: 'password', placeholder: '••••••••', required: true },
  ],
};
 
const KNOWN_CHANNELS = [
  { type: 'feishu', label: '飞书 (Feishu/Lark)', description: '企业即时通讯平台' },
  { type: 'discord', label: 'Discord', description: '游戏社区和语音聊天' },
  { type: 'slack', label: 'Slack', description: '团队协作平台' },
  { type: 'telegram', label: 'Telegram', description: '加密即时通讯' },
  { type: 'qqbot', label: 'QQ 机器人', description: '腾讯QQ官方机器人' },
  { type: 'wechat', label: '企业微信', description: '企业微信机器人' },
];
 
interface ChannelConfigModalProps {
  channel: ChannelInfo | null;
  channelType: string | null;
  isOpen: boolean;
  onClose: () => void;
  onSave: (config: Record<string, string>) => Promise<void>;
  isSaving: boolean;
}
 
function ChannelConfigModal({ channel, channelType, isOpen, onClose, onSave, isSaving }: ChannelConfigModalProps) {
  const [config, setConfig] = useState<Record<string, string>>({});
  const [error, setError] = useState<string | null>(null);
 
  const fields = channelType ? CHANNEL_CONFIG_FIELDS[channelType] || [] : [];
 
  useEffect(() => {
    if (channel?.config) {
      setConfig(channel.config as Record<string, string>);
    } else {
      setConfig({});
    }
    setError(null);
  }, [channel, channelType]);
 
  if (!isOpen || !channelType) return null;
 
  const handleSubmit = async (e: React.FormEvent) => {
    e.preventDefault();
    setError(null);
 
    // Validate required fields
    for (const field of fields) {
      if (field.required && !config[field.key]?.trim()) {
        setError(`请填写 ${field.label}`);
        return;
      }
    }
 
    try {
      await onSave(config);
      onClose();
    } catch (err) {
      setError(err instanceof Error ? err.message : '保存失败');
    }
  };
 
  const channelInfo = KNOWN_CHANNELS.find(c => c.type === channelType);
 
  return (
    <div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50">
      <div className="bg-white dark:bg-gray-800 rounded-xl shadow-xl w-full max-w-md mx-4">
        <div className="flex items-center justify-between p-4 border-b border-gray-200 dark:border-gray-700">
          <h3 className="text-lg font-semibold text-gray-900 dark:text-white">
            {channel ? `配置 ${channel.label}` : `添加 ${channelInfo?.label || channelType}`}
          </h3>
          <button
            onClick={onClose}
            className="p-1 hover:bg-gray-100 dark:hover:bg-gray-700 rounded"
          >
            <X className="w-5 h-5 text-gray-500" />
          </button>
        </div>
 
        <form onSubmit={handleSubmit} className="p-4 space-y-4">
          {channelInfo && (
            <p className="text-sm text-gray-500 dark:text-gray-400">
              {channelInfo.description}
            </p>
          )}
 
          {fields.length === 0 ? (
            <div className="text-center py-8 text-gray-500 dark:text-gray-400">
              <AlertCircle className="w-8 h-8 mx-auto mb-2 opacity-50" />
              <p>该通道类型暂不支持通过 UI 配置</p>
              <p className="text-xs mt-1">请通过配置文件或 CLI 进行配置</p>
            </div>
          ) : (
            fields.map((field) => (
              <div key={field.key}>
                <label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">
                  {field.label}
                  {field.required && <span className="text-red-500 ml-1">*</span>}
                </label>
                <input
                  type={field.type}
                  value={config[field.key] || ''}
                  onChange={(e) => setConfig({ ...config, [field.key]: e.target.value })}
                  placeholder={field.placeholder}
                  className="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-900 text-gray-900 dark:text-white focus:ring-2 focus:ring-blue-500 focus:border-transparent"
                />
              </div>
            ))
          )}
 
          {error && (
            <div className="p-3 bg-red-50 dark:bg-red-900/20 border border-red-200 dark:border-red-800 rounded-lg text-sm text-red-600 dark:text-red-400">
              {error}
            </div>
          )}
 
          {fields.length > 0 && (
            <div className="flex gap-3 pt-2">
              <button
                type="button"
                onClick={onClose}
                className="flex-1 px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-lg text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700"
              >
                取消
              </button>
              <button
                type="submit"
                disabled={isSaving}
                className="flex-1 px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 disabled:opacity-50 flex items-center justify-center gap-2"
              >
                {isSaving ? (
                  <>
                    <RefreshCw className="w-4 h-4 animate-spin" />
                    保存中...
                  </>
                ) : (
                  <>
                    <Check className="w-4 h-4" />
                    保存
                  </>
                )}
              </button>
            </div>
          )}
        </form>
      </div>
    </div>
  );
}
 
export function IMChannels() {
  const channels = useConfigStore((s) => s.channels);
  const loadChannels = useConfigStore((s) => s.loadChannels);
  const createChannel = useConfigStore((s) => s.createChannel);
  const updateChannel = useConfigStore((s) => s.updateChannel);
  const connectionState = useConnectionStore((s) => s.connectionState);
  const loadPluginStatus = useAgentStore((s) => s.loadPluginStatus);
 
  const [isModalOpen, setIsModalOpen] = useState(false);
  const [selectedChannel, setSelectedChannel] = useState<ChannelInfo | null>(null);
  const [newChannelType, setNewChannelType] = useState<string | null>(null);
  const [isSaving, setIsSaving] = useState(false);
  const [showAddMenu, setShowAddMenu] = useState(false);
 
  const connected = connectionState === 'connected';
  const loading = connectionState === 'connecting' || connectionState === 'reconnecting' || connectionState === 'handshaking';
 
  useEffect(() => {
    if (connected) {
      loadPluginStatus().then(() => loadChannels());
    }
  }, [connected]);
 
  const handleRefresh = () => {
    loadPluginStatus().then(() => loadChannels());
  };
 
  const handleConfigure = (channel: ChannelInfo) => {
    setSelectedChannel(channel);
    setNewChannelType(channel.type);
    setIsModalOpen(true);
  };
 
  const handleAddChannel = (type: string) => {
    setSelectedChannel(null);
    setNewChannelType(type);
    setIsModalOpen(true);
    setShowAddMenu(false);
  };
 
  const handleSaveConfig = async (config: Record<string, string>) => {
    setIsSaving(true);
    try {
      if (selectedChannel) {
        await updateChannel(selectedChannel.id, { config });
      } else if (newChannelType) {
        const channelInfo = KNOWN_CHANNELS.find(c => c.type === newChannelType);
        await createChannel({
          type: newChannelType,
          name: channelInfo?.label || newChannelType,
          config,
          enabled: true,
        });
      }
      await loadChannels();
    } finally {
      setIsSaving(false);
    }
  };
 
  const availableChannels = KNOWN_CHANNELS.filter(
    (channel) => !channels.some((item) => item.type === channel.type)
  );
 
  return (
    <div className="max-w-3xl">
      <div className="flex justify-between items-center mb-6">
        <h1 className="text-xl font-bold text-gray-900 dark:text-white">IM 频道</h1>
        <div className="flex gap-2">
          <span className="text-xs text-gray-400 flex items-center">
            {connected ? `${channels.length} 个已识别频道` : loading ? '连接中...' : '未连接 Gateway'}
          </span>
          <button
            onClick={handleRefresh}
            disabled={!connected}
            className="text-xs text-white bg-orange-500 hover:bg-orange-600 px-3 py-1.5 rounded-lg flex items-center gap-1 transition-colors disabled:opacity-50"
          >
            <RefreshCw className="w-3 h-3" /> 刷新
          </button>
        </div>
      </div>
 
      {!connected ? (
        <div className="bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 h-64 flex flex-col items-center justify-center mb-6 shadow-sm text-gray-400">
          <Radio className="w-8 h-8 mb-3 opacity-40" />
          <span className="text-sm">连接 Gateway 后查看真实 IM 频道状态</span>
        </div>
      ) : (
        <div className="bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 mb-6 shadow-sm divide-y divide-gray-100 dark:divide-gray-700">
          {channels.length > 0 ? channels.map((channel) => (
            <div key={channel.id} className="p-4 flex items-center gap-4">
              <div className={`w-10 h-10 rounded-xl flex items-center justify-center text-white text-sm font-semibold ${
                channel.status === 'active'
                  ? 'bg-gradient-to-br from-blue-500 to-indigo-500'
                  : channel.status === 'error'
                    ? 'bg-gradient-to-br from-red-500 to-rose-500'
                    : 'bg-gray-300 dark:bg-gray-600'
              }`}>
                {CHANNEL_ICONS[channel.type] || <MessageCircle className="w-4 h-4" />}
              </div>
              <div className="flex-1 min-w-0">
                <div className="text-sm font-medium text-gray-900 dark:text-white">{channel.label}</div>
                <div className={`text-xs mt-1 ${
                  channel.status === 'active'
                    ? 'text-green-600 dark:text-green-400'
                    : channel.status === 'error'
                      ? 'text-red-500 dark:text-red-400'
                      : 'text-gray-400'
                }`}>
                  {channel.status === 'active' ? '已连接' : channel.status === 'error' ? channel.error || '错误' : '未配置'}
                  {channel.accounts !== undefined && channel.accounts > 0 ? ` · ${channel.accounts} 个账号` : ''}
                </div>
              </div>
              <button
                onClick={() => handleConfigure(channel)}
                className="p-2 text-gray-400 hover:text-blue-600 dark:hover:text-blue-400 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors"
                title="配置"
              >
                <Settings2 className="w-4 h-4" />
              </button>
            </div>
          )) : (
            <div className="h-40 flex items-center justify-center text-sm text-gray-400">
              尚未识别到可用频道
            </div>
          )}
        </div>
      )}
 
      {/* Add Channel Section */}
      {connected && availableChannels.length > 0 && (
        <div className="mb-6">
          <div className="flex items-center justify-between mb-3">
            <div className="text-xs text-gray-500 dark:text-gray-400">添加新频道</div>
            <div className="relative">
              <button
                onClick={() => setShowAddMenu(!showAddMenu)}
                className="text-xs text-white bg-blue-500 hover:bg-blue-600 px-3 py-1.5 rounded-lg flex items-center gap-1 transition-colors"
              >
                <Plus className="w-3 h-3" /> 添加频道
              </button>
              {showAddMenu && (
                <div className="absolute right-0 mt-1 w-48 bg-white dark:bg-gray-800 rounded-lg shadow-lg border border-gray-200 dark:border-gray-700 z-10">
                  {availableChannels.map((channel) => (
                    <button
                      key={channel.type}
                      onClick={() => handleAddChannel(channel.type)}
                      className="w-full px-4 py-2 text-left text-sm hover:bg-gray-100 dark:hover:bg-gray-700 first:rounded-t-lg last:rounded-b-lg flex items-center gap-2"
                    >
                      <span className="w-6 h-6 rounded bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-xs">
                        {CHANNEL_ICONS[channel.type] || '?'}
                      </span>
                      <div>
                        <div className="font-medium text-gray-900 dark:text-white">{channel.label}</div>
                        <div className="text-xs text-gray-500">{channel.description}</div>
                      </div>
                    </button>
                  ))}
                </div>
              )}
            </div>
          </div>
        </div>
      )}
 
      {/* Planned Channels */}
      <div>
        <div className="text-xs text-gray-500 dark:text-gray-400 mb-3">规划中的接入渠道</div>
        <div className="flex flex-wrap gap-3">
          {availableChannels.map((channel) => (
            <span
              key={channel.type}
              className="text-xs text-gray-500 dark:text-gray-400 bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-lg"
            >
              {channel.label}
            </span>
          ))}
          {availableChannels.length === 0 && (
            <div className="text-xs text-green-600 dark:text-green-400 flex items-center gap-1">
              <Check className="w-3 h-3" />
              所有支持的渠道已配置
            </div>
          )}
        </div>
      </div>
 
      {/* External Link Notice */}
      <div className="mt-6 p-4 bg-blue-50 dark:bg-blue-900/20 rounded-lg border border-blue-200 dark:border-blue-800">
        <div className="flex items-start gap-2">
          <ExternalLink className="w-4 h-4 text-blue-500 mt-0.5" />
          <div className="text-xs text-blue-700 dark:text-blue-300">
            <p className="font-medium mb-1">高级配置</p>
            <p>账号绑定、消息路由等高级功能需要在 Gateway 配置文件中完成。</p>
            <p className="mt-1">配置文件路径: <code className="bg-blue-100 dark:bg-blue-800 px-1 rounded">~/.openfang/openfang.toml</code></p>
          </div>
        </div>
      </div>
 
      {/* Config Modal */}
      <ChannelConfigModal
        channel={selectedChannel}
        channelType={newChannelType}
        isOpen={isModalOpen}
        onClose={() => {
          setIsModalOpen(false);
          setSelectedChannel(null);
          setNewChannelType(null);
        }}
        onSave={handleSaveConfig}
        isSaving={isSaving}
      />
    </div>
  );
}