0.1.14 上线前更改

This commit is contained in:
liaibo
2026-01-11 12:35:53 +08:00
parent be71849aa5
commit 725a60d3aa
44 changed files with 3427 additions and 310 deletions
@@ -1802,12 +1802,13 @@ export const MindmapSidebar = ({
activeNodes={activeNodes}
documentId={documentId}
mindmapId={mindmapId}
onClose={onClose}
/>
);
default:
return null;
}
}, [activeTab, mindmap, activeNodes, documentId, mindmapId]);
}, [activeTab, mindmap, activeNodes, documentId, mindmapId, onClose]);
const title = useMemo(() => {
if (!activeTab) return "";
@@ -1820,15 +1821,17 @@ export const MindmapSidebar = ({
activeTab ? "translate-x-0" : "translate-x-full"
}`}
>
{activeTab === "ai" ? null : (
<div className="flex items-center justify-between border-b px-4 py-3 shrink-0">
<span className="font-medium text-gray-700">{title}</span>
<button onClick={onClose} className="text-gray-400 hover:text-gray-600">
<X className="h-4 w-4" />
</button>
</div>
<div className="flex-1 overflow-y-auto px-4 py-4">
{content}
<span className="font-medium text-gray-700">{title}</span>
<button onClick={onClose} className="text-gray-400 hover:text-gray-600">
<X className="h-4 w-4" />
</button>
</div>
)}
<div className={activeTab === "ai" ? "flex-1 overflow-hidden p-0" : "flex-1 overflow-y-auto px-4 py-4"}>
{content}
</div>
</div>
);
};