| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222 |
- "use client";
- import { useState, useEffect } from "react";
- import { useRouter } from "next/navigation";
- import { ResponsiveLayout } from "@/components/layout";
- import { Button } from "@/components/ui/button";
- import { Input } from "@/components/ui/input";
- import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
- import {
- fetchAIConfigs,
- createAIConfig,
- updateAIConfig,
- deleteAIConfig,
- type AIConfig,
- type CreateAIConfigRequest,
- type UpdateAIConfigRequest,
- } from "@/features/agent/services/aiConfigApi";
- import {
- fetchEmbeddingConfig,
- updateEmbeddingConfig,
- type EmbeddingConfig,
- type UpdateEmbeddingConfigRequest,
- } from "@/features/agent/services/embeddingConfigApi";
- import {
- deleteAutoCloseConversationDaysPolicy,
- fetchAutoCloseConversationDaysPolicy,
- putAutoCloseConversationDaysPolicy,
- type AutoCloseConversationDaysPolicy,
- } from "@/features/agent/services/conversationApi";
- import {
- fetchEmailNotificationConfig,
- resetEmailNotificationConfig,
- sendEmailNotificationTest,
- updateEmailNotificationConfig,
- type EmailNotificationConfig,
- } from "@/features/agent/services/emailNotificationApi";
- import { useProfile } from "@/features/agent/hooks/useProfile";
- import { apiUrl } from "@/lib/config";
- import { Checkbox } from "@/components/ui/checkbox";
- import { Label } from "@/components/ui/label";
- import { toast } from "@/hooks/useToast";
- import type { I18nKey } from "@/lib/i18n/dict";
- import { useI18n } from "@/lib/i18n/provider";
- export default function SettingsPage(props: any = {}) {
- const { embedded = false } = props;
- const router = useRouter();
- const { t } = useI18n();
- const modelTypeLabel = (mt: string) => {
- const map: Record<string, I18nKey> = {
- text: "agent.settings.modelType.text",
- image: "agent.settings.modelType.image",
- audio: "agent.settings.modelType.audio",
- video: "agent.settings.modelType.video",
- };
- const k = map[mt];
- return k ? t(k) : mt;
- };
- const [userId, setUserId] = useState<number | null>(null);
- const [configs, setConfigs] = useState<AIConfig[]>([]);
- const [loading, setLoading] = useState(true);
- const [editingId, setEditingId] = useState<number | null>(null);
- const [formData, setFormData] = useState<CreateAIConfigRequest>({
- provider: "",
- api_url: "",
- api_key: "",
- model: "",
- model_type: "text",
- is_active: true,
- is_public: false,
- description: "",
- });
- const [submitting, setSubmitting] = useState(false);
- const [error, setError] = useState("");
- // 知识库向量配置(平台级,仅管理员可修改)
- const [embeddingConfig, setEmbeddingConfig] = useState<EmbeddingConfig | null>(null);
- const [embeddingForm, setEmbeddingForm] = useState({
- embedding_type: "openai",
- api_url: "",
- api_key: "",
- model: "text-embedding-3-small",
- customer_can_use_kb: true,
- visitor_web_search_enabled: false,
- web_search_source: "custom" as "vendor" | "custom",
- });
- const [embeddingLoading, setEmbeddingLoading] = useState(false);
- const [embeddingSubmitting, setEmbeddingSubmitting] = useState(false);
- const [embeddingError, setEmbeddingError] = useState("");
- // 会话维护:自动关闭长期未活跃 open 访客会话(平台级)
- const [autoClosePolicy, setAutoClosePolicy] = useState<AutoCloseConversationDaysPolicy | null>(null);
- const [autoCloseDaysDraft, setAutoCloseDaysDraft] = useState("7");
- const [autoCloseLoading, setAutoCloseLoading] = useState(false);
- const [autoCloseSubmitting, setAutoCloseSubmitting] = useState(false);
- const [autoCloseError, setAutoCloseError] = useState("");
- // 离线邮件通知(平台级,仅管理员可修改)
- const [isAdmin, setIsAdmin] = useState(false);
- const [emailConfig, setEmailConfig] = useState<EmailNotificationConfig | null>(null);
- const [emailForm, setEmailForm] = useState({
- enabled: false,
- smtp_host: "",
- smtp_port: "465",
- smtp_user: "",
- smtp_password: "",
- from_email: "",
- from_name: "",
- offline_delay_seconds: "60",
- });
- const [emailTestTo, setEmailTestTo] = useState("");
- const [emailLoading, setEmailLoading] = useState(false);
- const [emailSubmitting, setEmailSubmitting] = useState(false);
- const [emailTesting, setEmailTesting] = useState(false);
- const [emailError, setEmailError] = useState("");
- // 检查登录状态
- useEffect(() => {
- const storedUserId = localStorage.getItem("agent_user_id");
- if (!storedUserId) {
- router.push("/");
- return;
- }
- setUserId(Number.parseInt(storedUserId, 10));
- setIsAdmin(localStorage.getItem("agent_role") === "admin");
- }, [router]);
- // 加载个人资料(用于获取和更新 AI 对话接收设置)
- const {
- profile,
- loading: profileLoading,
- update: updateProfile,
- } = useProfile({
- userId: userId ?? null,
- enabled: Boolean(userId),
- });
- // 加载配置列表
- const loadConfigs = async () => {
- if (!userId) return;
- try {
- setLoading(true);
- const data = await fetchAIConfigs(userId);
- setConfigs(data);
- } catch (error) {
- console.error("加载配置失败:", error);
- setError(t("agent.settings.error.loadConfigs"));
- } finally {
- setLoading(false);
- }
- };
- useEffect(() => {
- if (userId) {
- loadConfigs();
- }
- }, [userId]);
- // 加载知识库向量配置
- const loadEmbeddingConfig = async () => {
- if (!userId) return;
- try {
- setEmbeddingLoading(true);
- const data = await fetchEmbeddingConfig(userId);
- setEmbeddingConfig(data);
- setEmbeddingForm({
- embedding_type: data.embedding_type || "openai",
- api_url: data.api_url || "",
- api_key: "",
- model: data.model || "text-embedding-3-small",
- customer_can_use_kb: data.customer_can_use_kb ?? true,
- visitor_web_search_enabled: data.visitor_web_search_enabled ?? false,
- web_search_source: data.web_search_source === "vendor" ? "vendor" : "custom",
- });
- } catch (e) {
- console.error("加载知识库向量配置失败:", e);
- setEmbeddingError(t("agent.settings.error.loadEmbedding"));
- } finally {
- setEmbeddingLoading(false);
- }
- };
- useEffect(() => {
- if (userId) {
- loadEmbeddingConfig();
- }
- }, [userId]);
- const loadAutoClosePolicy = async () => {
- if (!userId) return;
- try {
- setAutoCloseLoading(true);
- setAutoCloseError("");
- const policy = await fetchAutoCloseConversationDaysPolicy();
- setAutoClosePolicy(policy);
- setAutoCloseDaysDraft(String(policy.effective_days));
- } catch (e) {
- console.error("加载会话维护配置失败:", e);
- setAutoCloseError(t("agent.settings.autoClose.errorLoad"));
- } finally {
- setAutoCloseLoading(false);
- }
- };
- useEffect(() => {
- if (userId) {
- void loadAutoClosePolicy();
- }
- }, [userId]);
- const loadEmailConfig = async () => {
- if (!userId) return;
- try {
- setEmailLoading(true);
- setEmailError("");
- const data = await fetchEmailNotificationConfig(userId);
- setEmailConfig(data);
- setEmailForm({
- enabled: data.enabled,
- smtp_host: data.smtp_host || "",
- smtp_port: String(data.smtp_port || 465),
- smtp_user: data.smtp_user || "",
- smtp_password: "",
- from_email: data.from_email || "",
- from_name: data.from_name || "",
- offline_delay_seconds: String(data.offline_delay_seconds ?? 60),
- });
- } catch (e) {
- console.error("加载离线邮件配置失败:", e);
- setEmailError(t("agent.settings.offlineEmail.errorLoad"));
- } finally {
- setEmailLoading(false);
- }
- };
- useEffect(() => {
- if (userId) {
- void loadEmailConfig();
- }
- }, [userId]);
- const handleSaveEmailConfig = async (e: React.FormEvent) => {
- e.preventDefault();
- if (!userId || !isAdmin) return;
- const delay = Number.parseInt(emailForm.offline_delay_seconds, 10);
- const port = Number.parseInt(emailForm.smtp_port, 10);
- if (Number.isNaN(delay) || delay < 0) {
- setEmailError(t("agent.settings.offlineEmail.errorInvalidDelay"));
- return;
- }
- setEmailSubmitting(true);
- setEmailError("");
- try {
- await updateEmailNotificationConfig(userId, {
- enabled: emailForm.enabled,
- smtp_host: emailForm.smtp_host || undefined,
- smtp_port: Number.isNaN(port) ? undefined : port,
- smtp_user: emailForm.smtp_user || undefined,
- from_email: emailForm.from_email || undefined,
- from_name: emailForm.from_name || undefined,
- offline_delay_seconds: delay,
- ...(emailForm.smtp_password ? { smtp_password: emailForm.smtp_password } : {}),
- });
- await loadEmailConfig();
- toast.success(t("agent.settings.offlineEmail.toastSaved"));
- } catch (err) {
- setEmailError((err as Error).message);
- } finally {
- setEmailSubmitting(false);
- }
- };
- const handleResetEmailConfig = async () => {
- if (!userId || !isAdmin) return;
- setEmailSubmitting(true);
- setEmailError("");
- try {
- await resetEmailNotificationConfig(userId);
- await loadEmailConfig();
- toast.success(t("agent.settings.offlineEmail.toastReset"));
- } catch (err) {
- setEmailError((err as Error).message);
- } finally {
- setEmailSubmitting(false);
- }
- };
- const handleSendEmailTest = async () => {
- if (!userId || !isAdmin) return;
- const to = emailTestTo.trim();
- if (!to) return;
- setEmailTesting(true);
- setEmailError("");
- try {
- await sendEmailNotificationTest(userId, to);
- toast.success(t("agent.settings.offlineEmail.toastTestSent"));
- } catch (err) {
- setEmailError((err as Error).message);
- } finally {
- setEmailTesting(false);
- }
- };
- const handleSaveAutoClosePolicy = async (e: React.FormEvent) => {
- e.preventDefault();
- if (!userId) return;
- const parsed = Number.parseInt(autoCloseDaysDraft, 10);
- if (Number.isNaN(parsed) || parsed < 0) {
- setAutoCloseError(t("agent.settings.autoClose.errorInvalid"));
- return;
- }
- setAutoCloseSubmitting(true);
- setAutoCloseError("");
- try {
- await putAutoCloseConversationDaysPolicy(parsed);
- await loadAutoClosePolicy();
- toast.success(t("agent.settings.autoClose.toastSaved"));
- } catch (err) {
- setAutoCloseError((err as Error).message);
- } finally {
- setAutoCloseSubmitting(false);
- }
- };
- const handleResetAutoClosePolicy = async () => {
- if (!userId) return;
- setAutoCloseSubmitting(true);
- setAutoCloseError("");
- try {
- await deleteAutoCloseConversationDaysPolicy();
- await loadAutoClosePolicy();
- toast.success(t("agent.settings.autoClose.toastReset"));
- } catch (err) {
- setAutoCloseError((err as Error).message);
- } finally {
- setAutoCloseSubmitting(false);
- }
- };
- // 保存知识库向量配置(仅管理员;保存后立即生效,无需重启)
- const handleSaveEmbeddingConfig = async (e: React.FormEvent) => {
- e.preventDefault();
- if (!userId) return;
- setEmbeddingSubmitting(true);
- setEmbeddingError("");
- try {
- const data: UpdateEmbeddingConfigRequest = {
- embedding_type: embeddingForm.embedding_type,
- api_url: embeddingForm.api_url || undefined,
- model: embeddingForm.model || undefined,
- customer_can_use_kb: embeddingForm.customer_can_use_kb,
- visitor_web_search_enabled: embeddingForm.visitor_web_search_enabled,
- web_search_source: embeddingForm.web_search_source,
- };
- if (embeddingForm.api_key) {
- data.api_key = embeddingForm.api_key;
- }
- await updateEmbeddingConfig(userId, data);
- await loadEmbeddingConfig();
- toast.success(t("agent.settings.toast.embeddingSaved"));
- } catch (err) {
- setEmbeddingError((err as Error).message);
- } finally {
- setEmbeddingSubmitting(false);
- }
- };
- // 重置表单
- const resetForm = () => {
- setFormData({
- provider: "",
- api_url: "",
- api_key: "",
- model: "",
- model_type: "text",
- is_active: true,
- is_public: false,
- description: "",
- });
- setEditingId(null);
- setError("");
- };
- // 开始编辑
- const handleEdit = (config: AIConfig) => {
- setFormData({
- provider: config.provider,
- api_url: config.api_url,
- api_key: "", // 不显示 API Key(已加密)
- model: config.model,
- model_type: config.model_type,
- is_active: config.is_active,
- is_public: config.is_public,
- description: config.description,
- });
- setEditingId(config.id);
- };
- // 提交表单
- const handleSubmit = async (e: React.FormEvent) => {
- e.preventDefault();
- if (!userId) return;
- setSubmitting(true);
- setError("");
- try {
- if (editingId) {
- // 更新配置
- const updateData: UpdateAIConfigRequest = {
- provider: formData.provider,
- api_url: formData.api_url,
- model: formData.model,
- model_type: formData.model_type,
- is_active: formData.is_active,
- is_public: formData.is_public,
- description: formData.description,
- };
- // 如果提供了新的 API Key,才更新
- if (formData.api_key) {
- updateData.api_key = formData.api_key;
- }
- await updateAIConfig(userId, editingId, updateData);
- } else {
- // 创建配置
- await createAIConfig(userId, formData);
- }
- resetForm();
- await loadConfigs();
- } catch (error) {
- setError((error as Error).message || t("agent.settings.error.operation"));
- } finally {
- setSubmitting(false);
- }
- };
- // 删除配置
- const handleDelete = async (id: number) => {
- if (!userId) return;
- if (!confirm(t("agent.settings.confirmDeleteConfig"))) return;
- try {
- await deleteAIConfig(userId, id);
- await loadConfigs();
- } catch (error) {
- setError((error as Error).message || t("agent.settings.error.delete"));
- }
- };
- // 退出登录
- const handleLogout = async () => {
- try {
- await fetch(apiUrl("/logout"), { method: "POST" });
- } catch (error) {
- console.error("退出登录失败:", error);
- } finally {
- localStorage.removeItem("agent_user_id");
- localStorage.removeItem("agent_username");
- localStorage.removeItem("agent_role");
- router.push("/");
- }
- };
- if (!userId) {
- return null;
- }
- // 构建头部内容
- const headerContent = (
- <div className="border-b bg-card p-3 shadow-sm sm:p-4">
- <div className="flex flex-col sm:flex-row justify-between items-start sm:items-center gap-4">
- <div>
- <h1 className="text-xl font-bold text-foreground">{t("agent.settings.title")}</h1>
- <div className="text-sm text-muted-foreground mt-1">{t("agent.settings.subtitle")}</div>
- </div>
- {!embedded && (
- <div className="flex flex-col sm:flex-row gap-2 w-full sm:w-auto">
- <Button
- onClick={() => router.push("/agent/dashboard")}
- variant="outline"
- size="sm"
- className="w-full sm:w-auto"
- >
- {t("agent.settings.backDashboard")}
- </Button>
- <Button
- onClick={handleLogout}
- variant="outline"
- size="sm"
- className="w-full sm:w-auto"
- >
- {t("agent.logout")}
- </Button>
- </div>
- )}
- </div>
- </div>
- );
- // 构建主内容区
- const mainContent = (
- <div className="flex-1 overflow-auto p-3 sm:p-4 md:p-6">
- <div className="max-w-6xl mx-auto space-y-6">
- {/* 全局设置 */}
- <Card>
- <CardHeader>
- <CardTitle>{t("agent.settings.section.global")}</CardTitle>
- </CardHeader>
- <CardContent>
- <div className="flex items-center space-x-2">
- <Checkbox
- id="receive_ai_conversations"
- checked={!(profile?.receive_ai_conversations ?? false)}
- onCheckedChange={async (checked) => {
- if (userId) {
- try {
- await updateProfile({
- receive_ai_conversations: !checked,
- });
- } catch (error) {
- console.error("更新设置失败:", error);
- toast.error(t("agent.settings.toast.profileUpdateFailed"));
- }
- }
- }}
- disabled={profileLoading}
- />
- <Label
- htmlFor="receive_ai_conversations"
- className="text-sm font-medium cursor-pointer"
- >
- {t("agent.settings.global.noReceiveAi")}
- </Label>
- </div>
- <p className="text-xs text-muted-foreground mt-2">
- {t("agent.settings.global.noReceiveAiHint")}
- </p>
- </CardContent>
- </Card>
- {/* 会话维护:自动关闭长期未活跃 open 访客会话 */}
- <Card>
- <CardHeader>
- <CardTitle>{t("agent.settings.autoClose.title")}</CardTitle>
- <p className="text-sm text-muted-foreground mt-1">
- {t("agent.settings.autoClose.lead")}
- </p>
- </CardHeader>
- <CardContent>
- {autoCloseLoading ? (
- <div className="text-center py-6 text-muted-foreground">{t("common.loading")}</div>
- ) : (
- <form onSubmit={handleSaveAutoClosePolicy} className="space-y-4">
- {autoCloseError && (
- <div className="p-3 bg-red-50 border border-red-200 rounded-md text-red-600 text-sm">
- {autoCloseError}
- </div>
- )}
- <div>
- <Label className="block text-sm font-medium mb-1">
- {t("agent.settings.autoClose.daysLabel")}
- </Label>
- <Input
- type="number"
- min={0}
- value={autoCloseDaysDraft}
- onChange={(e) => setAutoCloseDaysDraft(e.target.value)}
- className="max-w-xs"
- />
- <p className="text-xs text-muted-foreground mt-2">
- {t("agent.settings.autoClose.daysHint")}
- </p>
- </div>
- {autoClosePolicy ? (
- <p className="text-xs text-muted-foreground">
- {t("agent.settings.autoClose.statusEffective")}: {autoClosePolicy.effective_days}
- {" · "}
- {t("agent.settings.autoClose.statusEnv")}: {autoClosePolicy.env_days}
- {" · "}
- {autoClosePolicy.persisted_in_database
- ? t("agent.settings.autoClose.statusDb")
- : t("agent.settings.autoClose.statusEnvOnly")}
- </p>
- ) : null}
- <div className="flex flex-wrap gap-2">
- <Button type="submit" disabled={autoCloseSubmitting}>
- {autoCloseSubmitting ? t("common.saving") : t("agent.settings.autoClose.save")}
- </Button>
- {autoClosePolicy?.persisted_in_database ? (
- <Button
- type="button"
- variant="outline"
- disabled={autoCloseSubmitting}
- onClick={() => void handleResetAutoClosePolicy()}
- >
- {t("agent.settings.autoClose.resetEnv")}
- </Button>
- ) : null}
- </div>
- </form>
- )}
- </CardContent>
- </Card>
- {/* 离线邮件通知 */}
- <Card>
- <CardHeader>
- <CardTitle>{t("agent.settings.offlineEmail.title")}</CardTitle>
- <p className="text-sm text-muted-foreground mt-1">
- {t("agent.settings.offlineEmail.lead")}
- </p>
- {!isAdmin ? (
- <p className="text-xs text-amber-600 mt-2">
- {t("agent.settings.offlineEmail.adminOnly")}
- </p>
- ) : null}
- </CardHeader>
- <CardContent>
- {emailLoading ? (
- <div className="text-center py-6 text-muted-foreground">{t("common.loading")}</div>
- ) : (
- <form onSubmit={handleSaveEmailConfig} className="space-y-4">
- {emailError && (
- <div className="p-3 bg-red-50 border border-red-200 rounded-md text-red-600 text-sm">
- {emailError}
- </div>
- )}
- <div className="flex items-center gap-2">
- <Checkbox
- id="offline_email_enabled"
- checked={emailForm.enabled}
- disabled={!isAdmin}
- onCheckedChange={(checked) =>
- setEmailForm({ ...emailForm, enabled: checked === true })
- }
- />
- <Label htmlFor="offline_email_enabled" className="text-sm cursor-pointer">
- {t("agent.settings.offlineEmail.enabled")}
- </Label>
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">
- {t("agent.settings.offlineEmail.delayLabel")}
- </Label>
- <Input
- type="number"
- min={0}
- value={emailForm.offline_delay_seconds}
- disabled={!isAdmin}
- onChange={(e) =>
- setEmailForm({ ...emailForm, offline_delay_seconds: e.target.value })
- }
- className="max-w-xs"
- />
- <p className="text-xs text-muted-foreground mt-2">
- {t("agent.settings.offlineEmail.delayHint")}
- </p>
- </div>
- <div className="grid grid-cols-1 md:grid-cols-2 gap-4">
- <div>
- <Label className="block text-sm font-medium mb-1">
- {t("agent.settings.offlineEmail.smtpHost")}
- </Label>
- <Input
- value={emailForm.smtp_host}
- disabled={!isAdmin}
- onChange={(e) =>
- setEmailForm({ ...emailForm, smtp_host: e.target.value })
- }
- placeholder="smtp.example.com"
- />
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">
- {t("agent.settings.offlineEmail.smtpPort")}
- </Label>
- <Input
- type="number"
- min={1}
- value={emailForm.smtp_port}
- disabled={!isAdmin}
- onChange={(e) =>
- setEmailForm({ ...emailForm, smtp_port: e.target.value })
- }
- placeholder="465"
- />
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">
- {t("agent.settings.offlineEmail.smtpUser")}
- </Label>
- <Input
- value={emailForm.smtp_user}
- disabled={!isAdmin}
- onChange={(e) =>
- setEmailForm({ ...emailForm, smtp_user: e.target.value })
- }
- />
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">
- {t("agent.settings.offlineEmail.smtpPassword")}
- </Label>
- <Input
- type="password"
- value={emailForm.smtp_password}
- disabled={!isAdmin}
- onChange={(e) =>
- setEmailForm({ ...emailForm, smtp_password: e.target.value })
- }
- placeholder={
- emailConfig?.smtp_password_masked
- ? t("agent.settings.offlineEmail.smtpPasswordKeepEmpty")
- : undefined
- }
- />
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">
- {t("agent.settings.offlineEmail.fromEmail")}
- </Label>
- <Input
- type="email"
- value={emailForm.from_email}
- disabled={!isAdmin}
- onChange={(e) =>
- setEmailForm({ ...emailForm, from_email: e.target.value })
- }
- />
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">
- {t("agent.settings.offlineEmail.fromName")}
- </Label>
- <Input
- value={emailForm.from_name}
- disabled={!isAdmin}
- onChange={(e) =>
- setEmailForm({ ...emailForm, from_name: e.target.value })
- }
- />
- </div>
- </div>
- {emailConfig ? (
- <p className="text-xs text-muted-foreground">
- {t("agent.settings.offlineEmail.statusEffective")}:{" "}
- {emailConfig.effective_enabled
- ? t("agent.settings.offlineEmail.statusOn")
- : t("agent.settings.offlineEmail.statusOff")}
- {" · "}
- {t("agent.settings.offlineEmail.delayLabel")}:{" "}
- {emailConfig.effective_delay_seconds}s
- {" · "}
- {t("agent.settings.offlineEmail.statusEnv")}:{" "}
- {emailConfig.env_enabled ? "on" : "off"},{" "}
- {emailConfig.env_delay_seconds}s
- {" · "}
- {emailConfig.persisted_in_database
- ? t("agent.settings.offlineEmail.statusDb")
- : t("agent.settings.offlineEmail.statusEnvOnly")}
- </p>
- ) : null}
- <div className="flex flex-wrap gap-2">
- <Button type="submit" disabled={!isAdmin || emailSubmitting}>
- {emailSubmitting
- ? t("common.saving")
- : t("agent.settings.offlineEmail.save")}
- </Button>
- {isAdmin && emailConfig?.persisted_in_database ? (
- <Button
- type="button"
- variant="outline"
- disabled={emailSubmitting}
- onClick={() => void handleResetEmailConfig()}
- >
- {t("agent.settings.offlineEmail.resetEnv")}
- </Button>
- ) : null}
- </div>
- {isAdmin ? (
- <div className="flex flex-col sm:flex-row gap-2 pt-2 border-t">
- <Input
- type="email"
- value={emailTestTo}
- onChange={(e) => setEmailTestTo(e.target.value)}
- placeholder={t("agent.settings.offlineEmail.testTo")}
- className="sm:max-w-xs"
- />
- <Button
- type="button"
- variant="outline"
- disabled={emailTesting || !emailTestTo.trim()}
- onClick={() => void handleSendEmailTest()}
- >
- {emailTesting
- ? t("common.saving")
- : t("agent.settings.offlineEmail.testSend")}
- </Button>
- </div>
- ) : null}
- </form>
- )}
- </CardContent>
- </Card>
- {/* 知识库向量模型(平台级,仅管理员可修改;保存后立即生效) */}
- <Card>
- <CardHeader>
- <CardTitle>{t("agent.settings.embedding.title")}</CardTitle>
- <p className="text-sm text-muted-foreground mt-1">
- {t("agent.settings.embedding.lead")}
- </p>
- </CardHeader>
- <CardContent>
- {embeddingLoading ? (
- <div className="text-center py-6 text-muted-foreground">{t("common.loading")}</div>
- ) : (
- <form onSubmit={handleSaveEmbeddingConfig} className="space-y-4">
- {embeddingError && (
- <div className="p-3 bg-red-50 border border-red-200 rounded-md text-red-600 text-sm">
- {embeddingError}
- </div>
- )}
- <div className="grid grid-cols-1 md:grid-cols-2 gap-4">
- <div>
- <Label className="block text-sm font-medium mb-1">{t("agent.settings.embedding.type")}</Label>
- <select
- value={embeddingForm.embedding_type}
- onChange={(e) =>
- setEmbeddingForm({ ...embeddingForm, embedding_type: e.target.value })
- }
- className="w-full px-3 py-2 border border-input rounded-md text-sm bg-background"
- >
- <option value="openai">{t("agent.settings.embedding.openaiCompatible")}</option>
- <option value="bge">{t("agent.settings.embedding.bgeLocal")}</option>
- </select>
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">{t("agent.settings.embedding.apiUrl")}</Label>
- <Input
- value={embeddingForm.api_url}
- onChange={(e) =>
- setEmbeddingForm({ ...embeddingForm, api_url: e.target.value })
- }
- placeholder={t("agent.settings.embedding.apiUrlPh")}
- />
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">{t("agent.settings.embedding.apiKey")}</Label>
- <Input
- type="password"
- value={embeddingForm.api_key}
- onChange={(e) =>
- setEmbeddingForm({ ...embeddingForm, api_key: e.target.value })
- }
- placeholder={
- embeddingConfig?.api_key_masked
- ? t("agent.settings.embedding.apiKeyKeepEmpty")
- : t("agent.settings.embedding.apiKeyInput")
- }
- />
- </div>
- <div>
- <Label className="block text-sm font-medium mb-1">{t("agent.settings.embedding.model")}</Label>
- <Input
- value={embeddingForm.model}
- onChange={(e) =>
- setEmbeddingForm({ ...embeddingForm, model: e.target.value })
- }
- placeholder={t("agent.settings.embedding.modelPh")}
- />
- </div>
- </div>
- <div className="flex items-center gap-2">
- <Checkbox
- id="customer_can_use_kb"
- checked={embeddingForm.customer_can_use_kb}
- onCheckedChange={(checked) =>
- setEmbeddingForm({
- ...embeddingForm,
- customer_can_use_kb: checked === true,
- })
- }
- />
- <Label htmlFor="customer_can_use_kb" className="text-sm cursor-pointer">
- {t("agent.settings.embedding.customerKb")}
- </Label>
- </div>
- <Button type="submit" disabled={embeddingSubmitting}>
- {embeddingSubmitting
- ? t("common.saving")
- : t("agent.settings.embedding.save")}
- </Button>
- </form>
- )}
- </CardContent>
- </Card>
- {/* 联网搜索设置(与知识库向量模型独立;实际仍写入同一配置,仅 UI 分离) */}
- <Card>
- <CardHeader>
- <CardTitle>{t("agent.settings.webSearch.title")}</CardTitle>
- <p className="text-sm text-muted-foreground mt-1">
- {t("agent.settings.webSearch.lead")}
- </p>
- </CardHeader>
- <CardContent>
- {embeddingLoading ? (
- <div className="text-center py-6 text-muted-foreground">{t("common.loading")}</div>
- ) : (
- <form onSubmit={handleSaveEmbeddingConfig} className="space-y-4">
- {embeddingError && (
- <div className="p-3 bg-red-50 border border-red-200 rounded-md text-red-600 text-sm">
- {embeddingError}
- </div>
- )}
- <div>
- <Label className="block text-sm font-medium mb-1">{t("agent.settings.webSearch.mode")}</Label>
- <select
- value={embeddingForm.web_search_source}
- onChange={(e) =>
- setEmbeddingForm({
- ...embeddingForm,
- web_search_source: e.target.value as "vendor" | "custom",
- })
- }
- className="w-full max-w-xs px-3 py-2 border border-input rounded-md text-sm bg-background"
- >
- <option value="custom">{t("agent.settings.webSearch.modeCustom")}</option>
- <option value="vendor">{t("agent.settings.webSearch.modeVendor")}</option>
- </select>
- <p className="text-xs text-muted-foreground mt-1">
- {t("agent.settings.webSearch.modeHint")}
- </p>
- </div>
- <div className="flex items-center gap-2">
- <Checkbox
- id="visitor_web_search_enabled_standalone"
- checked={embeddingForm.visitor_web_search_enabled}
- onCheckedChange={(checked) =>
- setEmbeddingForm({
- ...embeddingForm,
- visitor_web_search_enabled: checked === true,
- })
- }
- />
- <Label htmlFor="visitor_web_search_enabled_standalone" className="text-sm cursor-pointer">
- {t("agent.settings.webSearch.visitorToggle")}
- </Label>
- </div>
- <Button type="submit" disabled={embeddingSubmitting}>
- {embeddingSubmitting ? t("common.saving") : t("agent.settings.webSearch.save")}
- </Button>
- </form>
- )}
- </CardContent>
- </Card>
- {/* 配置表单 */}
- <Card>
- <CardHeader>
- <CardTitle>
- {editingId
- ? t("agent.settings.aiCard.titleEdit")
- : t("agent.settings.aiCard.titleAdd")}
- </CardTitle>
- </CardHeader>
- <CardContent>
- <form onSubmit={handleSubmit} className="space-y-4">
- {error && (
- <div className="p-3 bg-red-50 border border-red-200 rounded-md text-red-600 text-sm">
- {error}
- </div>
- )}
- <div className="grid grid-cols-1 md:grid-cols-2 gap-4">
- <div>
- <label className="block text-sm font-medium mb-1">
- {t("agent.settings.aiForm.provider")}{" "}
- <span className="text-red-500">*</span>
- </label>
- <Input
- value={formData.provider}
- onChange={(e) =>
- setFormData({ ...formData, provider: e.target.value })
- }
- placeholder={t("agent.settings.aiForm.providerPh")}
- required
- />
- </div>
- <div>
- <label className="block text-sm font-medium mb-1">
- {t("agent.settings.aiForm.apiUrl")}{" "}
- <span className="text-red-500">*</span>
- </label>
- <Input
- value={formData.api_url}
- onChange={(e) =>
- setFormData({ ...formData, api_url: e.target.value })
- }
- placeholder={t("agent.settings.aiForm.apiUrlPh")}
- required
- />
- </div>
- <div>
- <label className="block text-sm font-medium mb-1">
- {t("agent.settings.aiForm.apiKey")}{" "}
- <span className="text-red-500">*</span>
- </label>
- <Input
- type="password"
- value={formData.api_key}
- onChange={(e) =>
- setFormData({ ...formData, api_key: e.target.value })
- }
- placeholder={
- editingId
- ? t("agent.settings.embedding.apiKeyKeepEmpty")
- : t("agent.settings.embedding.apiKeyInput")
- }
- required={!editingId}
- />
- </div>
- <div>
- <label className="block text-sm font-medium mb-1">
- {t("agent.settings.aiForm.model")}{" "}
- <span className="text-red-500">*</span>
- </label>
- <Input
- value={formData.model}
- onChange={(e) =>
- setFormData({ ...formData, model: e.target.value })
- }
- placeholder={t("agent.settings.aiForm.modelPh")}
- required
- />
- </div>
- <div>
- <label className="block text-sm font-medium mb-1">
- {t("agent.settings.aiForm.modelType")}
- </label>
- <select
- value={formData.model_type}
- onChange={(e) =>
- setFormData({ ...formData, model_type: e.target.value })
- }
- className="w-full px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-primary"
- >
- <option value="text">{t("agent.settings.modelType.text")}</option>
- <option value="image">{t("agent.settings.modelType.image")}</option>
- <option value="audio">{t("agent.settings.modelType.audio")}</option>
- <option value="video">{t("agent.settings.modelType.video")}</option>
- </select>
- </div>
- </div>
- <div>
- <label className="block text-sm font-medium mb-1">
- {t("agent.settings.aiForm.description")}
- </label>
- <Input
- value={formData.description}
- onChange={(e) =>
- setFormData({ ...formData, description: e.target.value })
- }
- placeholder={t("agent.settings.aiForm.descPh")}
- />
- </div>
- <div className="flex items-center gap-4">
- <label className="flex items-center gap-2">
- <input
- type="checkbox"
- checked={formData.is_active}
- onChange={(e) =>
- setFormData({ ...formData, is_active: e.target.checked })
- }
- className="w-4 h-4"
- />
- <span className="text-sm">{t("agent.settings.aiForm.active")}</span>
- </label>
- <label className="flex items-center gap-2">
- <input
- type="checkbox"
- checked={formData.is_public}
- onChange={(e) =>
- setFormData({ ...formData, is_public: e.target.checked })
- }
- className="w-4 h-4"
- />
- <span className="text-sm">{t("agent.settings.aiForm.public")}</span>
- </label>
- </div>
- <div className="flex gap-2">
- <Button type="submit" disabled={submitting}>
- {submitting
- ? t("agent.settings.aiForm.submitting")
- : editingId
- ? t("agent.settings.aiForm.submitUpdate")
- : t("agent.settings.aiForm.submitCreate")}
- </Button>
- {editingId && (
- <Button
- type="button"
- variant="outline"
- onClick={resetForm}
- >
- {t("agent.common.cancel")}
- </Button>
- )}
- </div>
- </form>
- </CardContent>
- </Card>
- {/* 配置列表 */}
- <Card>
- <CardHeader>
- <CardTitle>{t("agent.settings.list.title")}</CardTitle>
- </CardHeader>
- <CardContent>
- {loading ? (
- <div className="text-center py-8 text-gray-500">
- {t("common.loading")}
- </div>
- ) : configs.length === 0 ? (
- <div className="text-center py-8 text-gray-500">
- {t("agent.settings.list.empty")}
- </div>
- ) : (
- <div className="space-y-4">
- {configs.map((config) => (
- <div
- key={config.id}
- className="p-4 border rounded-lg hover:shadow-md transition-shadow"
- >
- <div className="flex justify-between items-start">
- <div className="flex-1">
- <div className="flex items-center gap-2 mb-2">
- <h3 className="font-semibold">
- {config.provider} - {config.model}
- </h3>
- {config.is_active && (
- <span className="px-2 py-1 text-xs bg-green-100 text-green-800 rounded">
- {t("agent.settings.badge.active")}
- </span>
- )}
- {config.is_public && (
- <span className="px-2 py-1 text-xs bg-blue-100 text-blue-800 rounded">
- {t("agent.settings.badge.public")}
- </span>
- )}
- </div>
- <div className="text-sm text-gray-600 space-y-1">
- <p>
- <span className="font-medium">{t("agent.settings.list.apiUrlLabel")}</span>
- {config.api_url}
- </p>
- <p>
- <span className="font-medium">{t("agent.settings.list.modelTypeLabel")}</span>
- {modelTypeLabel(config.model_type)}
- </p>
- {config.description && (
- <p>
- <span className="font-medium">{t("agent.settings.list.descLabel")}</span>
- {config.description}
- </p>
- )}
- </div>
- </div>
- <div className="flex gap-2">
- <Button
- size="sm"
- variant="outline"
- onClick={() => handleEdit(config)}
- >
- {t("agent.common.edit")}
- </Button>
- <Button
- size="sm"
- variant="destructive"
- onClick={() => handleDelete(config.id)}
- >
- {t("agent.common.delete")}
- </Button>
- </div>
- </div>
- </div>
- ))}
- </div>
- )}
- </CardContent>
- </Card>
- </div>
- </div>
- );
- // 如果是嵌入模式,只返回内容,不包含 ResponsiveLayout
- if (embedded) {
- return (
- <div className="flex-1 flex flex-col min-h-0 overflow-hidden">
- {headerContent}
- {mainContent}
- </div>
- );
- }
- return (
- <ResponsiveLayout
- main={mainContent}
- header={headerContent}
- />
- );
- }
|