feat(FN-3082): restructure dependency graph plugin with modular architectur
Implements a modular dependency graph feature for the Fusion dashboard plugin, replacing the monolithic `DependencyGraphView` component with a factored architecture: graph types and filtering (Step 1), a data hook (Step 2), auto-layout engine (Step 3), SVG edge rendering (Step 4), an interaction hoo Fusion-Task-Id: FN-3082
This commit is contained in:
@@ -13,7 +13,7 @@ const plugin = definePlugin({
|
||||
{
|
||||
viewId: "graph",
|
||||
label: "Graph",
|
||||
componentPath: "./src/DependencyGraphView.tsx",
|
||||
componentPath: "./src/DependencyGraph.tsx",
|
||||
icon: "Network",
|
||||
placement: "more",
|
||||
order: 40,
|
||||
@@ -22,4 +22,4 @@ const plugin = definePlugin({
|
||||
});
|
||||
|
||||
export default plugin;
|
||||
export { DependencyGraphView } from "./DependencyGraphView";
|
||||
export { DependencyGraph } from "./DependencyGraph";
|
||||
|
||||
Reference in New Issue
Block a user