feat: 智能体数据同步到backend + 初始化时从backend加载完整数据
This commit is contained in:
109
www/app.js
109
www/app.js
@@ -294,14 +294,47 @@ let thinkingBtn = null;
|
||||
let searchBtn = null;
|
||||
|
||||
// 初始化
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
document.addEventListener('DOMContentLoaded', async () => {
|
||||
// 初始化 appContainer
|
||||
appContainer = document.getElementById('app');
|
||||
|
||||
// 从本地存储加载对话列表
|
||||
const saved = localStorage.getItem('conversations');
|
||||
if (saved) {
|
||||
conversations = JSON.parse(saved);
|
||||
// 加载用户登录状态(优先检查)
|
||||
const savedUser = localStorage.getItem('currentUser');
|
||||
if (savedUser) {
|
||||
currentUser = JSON.parse(savedUser);
|
||||
}
|
||||
|
||||
// 如果用户已登录且有ID,从 backend 加载对话数据
|
||||
if (currentUser && currentUser.id) {
|
||||
try {
|
||||
const res = await fetch(`/api/user/${currentUser.id}/conversations`);
|
||||
const data = await res.json();
|
||||
if (Array.isArray(data) && data.length > 0) {
|
||||
// 使用 backend 数据替换本地数据
|
||||
conversations = data;
|
||||
// 更新本地存储(离线可用)
|
||||
localStorage.setItem('conversations', JSON.stringify(conversations));
|
||||
} else {
|
||||
// backend 无数据,使用本地数据
|
||||
const saved = localStorage.getItem('conversations');
|
||||
if (saved) {
|
||||
conversations = JSON.parse(saved);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
// backend 加载失败,使用本地数据
|
||||
console.error('加载 backend 对话失败:', e);
|
||||
const saved = localStorage.getItem('conversations');
|
||||
if (saved) {
|
||||
conversations = JSON.parse(saved);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// 未登录用户,从本地存储加载对话列表
|
||||
const saved = localStorage.getItem('conversations');
|
||||
if (saved) {
|
||||
conversations = JSON.parse(saved);
|
||||
}
|
||||
}
|
||||
|
||||
// 兼容旧数据格式(chat_history)
|
||||
@@ -323,7 +356,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
}
|
||||
}
|
||||
|
||||
// 加载用户智能体数据
|
||||
// 加载用户智能体数据(我的智能体)
|
||||
const savedMyAgents = localStorage.getItem('myAgents');
|
||||
if (savedMyAgents) {
|
||||
myAgents = JSON.parse(savedMyAgents);
|
||||
@@ -341,10 +374,26 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
pinnedAgents = JSON.parse(savedPinnedAgents);
|
||||
}
|
||||
|
||||
// 加载用户登录状态
|
||||
const savedUser = localStorage.getItem('currentUser');
|
||||
if (savedUser) {
|
||||
currentUser = JSON.parse(savedUser);
|
||||
// 如果用户已登录且有ID,从 backend 加载智能体配置
|
||||
if (currentUser && currentUser.id) {
|
||||
try {
|
||||
const res = await fetch(`/api/user/${currentUser.id}/agents`);
|
||||
const data = await res.json();
|
||||
if (data.myAgents) {
|
||||
myAgents = data.myAgents;
|
||||
localStorage.setItem('myAgents', JSON.stringify(myAgents));
|
||||
}
|
||||
if (data.favoriteAgents) {
|
||||
favoriteAgents = data.favoriteAgents;
|
||||
localStorage.setItem('favoriteAgents', JSON.stringify(favoriteAgents));
|
||||
}
|
||||
if (data.pinnedAgents) {
|
||||
pinnedAgents = data.pinnedAgents;
|
||||
localStorage.setItem('pinnedAgents', JSON.stringify(pinnedAgents));
|
||||
}
|
||||
} catch (e) {
|
||||
console.error('加载智能体配置失败:', e);
|
||||
}
|
||||
}
|
||||
|
||||
// 加载每日使用统计
|
||||
@@ -1001,10 +1050,12 @@ function toggleAgentPin(agentId) {
|
||||
|
||||
const category = agent.category;
|
||||
|
||||
let is_pinned;
|
||||
if (pinnedAgents[category]?.includes(agentId)) {
|
||||
// 取消置顶
|
||||
pinnedAgents[category] = pinnedAgents[category].filter(id => id !== agentId);
|
||||
agent.is_pinned = false;
|
||||
is_pinned = 0;
|
||||
showToast('已取消置顶');
|
||||
} else {
|
||||
// 置顶
|
||||
@@ -1013,11 +1064,21 @@ function toggleAgentPin(agentId) {
|
||||
}
|
||||
pinnedAgents[category].push(agentId);
|
||||
agent.is_pinned = true;
|
||||
is_pinned = 1;
|
||||
showToast('已置顶');
|
||||
}
|
||||
|
||||
savePinnedAgents();
|
||||
saveMyAgents(); // 更新显示
|
||||
|
||||
// 同步到 backend
|
||||
if (currentUser && currentUser.id) {
|
||||
fetch(`/api/user/${currentUser.id}/agents/${agentId}/pin`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ is_pinned, category })
|
||||
}).catch(e => console.error('同步置顶失败:', e));
|
||||
}
|
||||
}
|
||||
|
||||
// 收藏/取消收藏智能体
|
||||
@@ -1025,20 +1086,32 @@ function toggleAgentFavorite(agentId) {
|
||||
const agent = agents.find(a => a.id === agentId);
|
||||
if (!agent) return;
|
||||
|
||||
let is_favorite;
|
||||
if (favoriteAgents.includes(agentId)) {
|
||||
// 取消收藏
|
||||
favoriteAgents = favoriteAgents.filter(id => id !== agentId);
|
||||
agent.is_favorite = false;
|
||||
is_favorite = 0;
|
||||
showToast('已取消收藏');
|
||||
} else {
|
||||
// 收藏
|
||||
favoriteAgents.push(agentId);
|
||||
agent.is_favorite = true;
|
||||
is_favorite = 1;
|
||||
showToast('已收藏');
|
||||
}
|
||||
|
||||
saveFavoriteAgents();
|
||||
saveMyAgents(); // 更新显示
|
||||
|
||||
// 同步到 backend
|
||||
if (currentUser && currentUser.id) {
|
||||
fetch(`/api/user/${currentUser.id}/agents/${agentId}/favorite`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ is_favorite, category: agent.category })
|
||||
}).catch(e => console.error('同步收藏失败:', e));
|
||||
}
|
||||
}
|
||||
|
||||
// 从用户智能体列表移除
|
||||
@@ -1067,6 +1140,13 @@ function removeAgentFromMyAgents(agentId) {
|
||||
savePinnedAgents();
|
||||
saveFavoriteAgents();
|
||||
showToast('已移除');
|
||||
|
||||
// 同步到 backend
|
||||
if (currentUser && currentUser.id) {
|
||||
fetch(`/api/user/${currentUser.id}/agents/${agentId}`, {
|
||||
method: 'DELETE'
|
||||
}).catch(e => console.error('同步移除失败:', e));
|
||||
}
|
||||
}
|
||||
|
||||
// ==================== 智能体发现页面 ====================
|
||||
@@ -1303,6 +1383,15 @@ function addAgentToMyAgents(agentId) {
|
||||
|
||||
saveMyAgents();
|
||||
showToast(`已添加 ${agent.name}`);
|
||||
|
||||
// 同步到 backend
|
||||
if (currentUser && currentUser.id) {
|
||||
fetch(`/api/user/${currentUser.id}/agents/${agentId}`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ category: agent.category })
|
||||
}).catch(e => console.error('同步添加智能体失败:', e));
|
||||
}
|
||||
}
|
||||
|
||||
// 从发现页面收藏智能体
|
||||
|
||||
Reference in New Issue
Block a user