Improve cleanup and state reset logic in GraphViewer and NavigationService.
- Add proper Sigma instance cleanup on unmount - Ensure error handling for Sigma cleanup
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -8,7 +8,7 @@
|
||||
<link rel="icon" type="image/svg+xml" href="logo.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Lightrag</title>
|
||||
<script type="module" crossorigin src="/webui/assets/index-CSrxfS-k.js"></script>
|
||||
<script type="module" crossorigin src="/webui/assets/index-BiPN9eZH.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/webui/assets/index-mPRIIErN.css">
|
||||
</head>
|
||||
<body>
|
||||
|
@@ -151,9 +151,17 @@ const GraphViewer = () => {
|
||||
// Clean up sigma instance when component unmounts
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
// Clear the sigma instance when component unmounts
|
||||
useGraphStore.getState().setSigmaInstance(null);
|
||||
console.log('Cleared sigma instance on unmount');
|
||||
const sigma = useGraphStore.getState().sigmaInstance;
|
||||
if (sigma) {
|
||||
try {
|
||||
// 销毁sigma实例,这会自动清理WebGL上下文
|
||||
sigma.kill();
|
||||
useGraphStore.getState().setSigmaInstance(null);
|
||||
console.log('Cleared sigma instance on unmount');
|
||||
} catch (error) {
|
||||
console.error('Error cleaning up sigma instance:', error);
|
||||
}
|
||||
}
|
||||
};
|
||||
}, []);
|
||||
|
||||
|
Reference in New Issue
Block a user