Files
GenQBar/graphify-out/graph.html
T
2026-06-03 08:52:59 -07:00

307 lines
49 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>graphify - graphify-out/graph.html</title>
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
crossorigin="anonymous"></script>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
#graph { flex: 1; }
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
#search:focus { border-color: #4E79A7; }
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-item:hover { background: #2a2a4e; }
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
#info-content .field { margin-bottom: 5px; }
#info-content .field b { color: #e0e0e0; }
#info-content .empty { color: #555; font-style: italic; }
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
.neighbor-link:hover { background: #2a2a4e; }
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
.legend-item.dimmed { opacity: 0.35; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.legend-count { color: #666; font-size: 11px; }
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
#legend-controls label:hover { color: #e0e0e0; }
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
</style>
</head>
<body>
<div id="graph"></div>
<div id="sidebar">
<div id="search-wrap">
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
<div id="search-results"></div>
</div>
<div id="info-panel">
<h3>Node Info</h3>
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
</div>
<div id="legend-wrap">
<h3>Communities</h3>
<div id="legend-controls">
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
</div>
<div id="legend"></div>
</div>
<div id="stats">58 nodes &middot; 57 edges &middot; 12 communities</div>
</div>
<script>
const RAW_NODES = [{"id": "astro_config_mjs", "label": "astro.config.mjs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "astro.config.mjs", "community": 11, "community_name": "Astro Build Config", "source_file": "astro.config.mjs", "file_type": "code", "degree": 0}, {"id": "package_json", "label": "package.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "package.json", "community": 0, "community_name": "Package Manifest Fields", "source_file": "package.json", "file_type": "code", "degree": 6}, {"id": "genqbar_package_name", "label": "name", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "name", "community": 0, "community_name": "Package Manifest Fields", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "genqbar_package_type", "label": "type", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "type", "community": 0, "community_name": "Package Manifest Fields", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "genqbar_package_version", "label": "version", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "version", "community": 0, "community_name": "Package Manifest Fields", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "genqbar_package_engines", "label": "engines", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "engines", "community": 0, "community_name": "Package Manifest Fields", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "genqbar_package_engines_node", "label": "node", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "node", "community": 0, "community_name": "Package Manifest Fields", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "genqbar_package_scripts", "label": "scripts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 35.0, "font": {"size": 12, "color": "#ffffff"}, "title": "scripts", "community": 7, "community_name": "NPM Dev Scripts", "source_file": "package.json", "file_type": "code", "degree": 5}, {"id": "genqbar_package_scripts_dev", "label": "dev", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "dev", "community": 7, "community_name": "NPM Dev Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "genqbar_package_scripts_build", "label": "build", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "build", "community": 7, "community_name": "NPM Dev Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "genqbar_package_scripts_preview", "label": "preview", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "preview", "community": 7, "community_name": "NPM Dev Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "genqbar_package_scripts_astro", "label": "astro", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "astro", "community": 7, "community_name": "NPM Dev Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "genqbar_package_dependencies", "label": "dependencies", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 0, "community_name": "Package Manifest Fields", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "genqbar_package_dependencies_astro", "label": "astro", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "astro", "community": 0, "community_name": "Package Manifest Fields", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_json", "label": "tsconfig.json", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "tsconfig.json", "community": 8, "community_name": "TypeScript Config", "source_file": "tsconfig.json", "file_type": "code", "degree": 3}, {"id": "genqbar_tsconfig_extends", "label": "extends", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "extends", "community": 8, "community_name": "TypeScript Config", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "genqbar_tsconfig_include", "label": "include", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "include", "community": 8, "community_name": "TypeScript Config", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "genqbar_tsconfig_exclude", "label": "exclude", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "exclude", "community": 8, "community_name": "TypeScript Config", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "vscode_extensions_json", "label": "extensions.json", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "extensions.json", "community": 9, "community_name": "VSCode Extensions", "source_file": ".vscode/extensions.json", "file_type": "code", "degree": 2}, {"id": "vscode_extensions_recommendations", "label": "recommendations", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "recommendations", "community": 9, "community_name": "VSCode Extensions", "source_file": ".vscode/extensions.json", "file_type": "code", "degree": 1}, {"id": "vscode_extensions_unwantedrecommendations", "label": "unwantedRecommendations", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "unwantedRecommendations", "community": 9, "community_name": "VSCode Extensions", "source_file": ".vscode/extensions.json", "file_type": "code", "degree": 1}, {"id": "vscode_launch_json", "label": "launch.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "launch.json", "community": 10, "community_name": "VSCode Launch Config", "source_file": ".vscode/launch.json", "file_type": "code", "degree": 2}, {"id": "vscode_launch_version", "label": "version", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "version", "community": 10, "community_name": "VSCode Launch Config", "source_file": ".vscode/launch.json", "file_type": "code", "degree": 1}, {"id": "vscode_launch_configurations", "label": "configurations", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "configurations", "community": 10, "community_name": "VSCode Launch Config", "source_file": ".vscode/launch.json", "file_type": "code", "degree": 1}, {"id": "src_components_welcome_astro", "label": "../components/Welcome.astro", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "../components/Welcome.astro", "community": 4, "community_name": "Asset References", "source_file": "src/components/Welcome.astro", "file_type": "code", "degree": 4}, {"id": "components_welcome_screen", "label": "screen()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "screen()", "community": 4, "community_name": "Asset References", "source_file": "src/components/Welcome.astro", "file_type": "code", "degree": 1}, {"id": "c_users_aaaaa_documents_lakg_dev_genqbar_src_assets_astro_svg", "label": "../assets/astro.svg", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "../assets/astro.svg", "community": 4, "community_name": "Asset References", "source_file": "src/assets/astro.svg", "file_type": "code", "degree": 1}, {"id": "c_users_aaaaa_documents_lakg_dev_genqbar_src_assets_background_svg", "label": "../assets/background.svg", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "../assets/background.svg", "community": 4, "community_name": "Asset References", "source_file": "src/assets/background.svg", "file_type": "code", "degree": 1}, {"id": "src_layouts_layout_astro", "label": "../layouts/Layout.astro", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "../layouts/Layout.astro", "community": 4, "community_name": "Asset References", "source_file": "src/layouts/Layout.astro", "file_type": "code", "degree": 1}, {"id": "src_pages_index_astro", "label": "index.astro", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.astro", "community": 4, "community_name": "Asset References", "source_file": "src/pages/index.astro", "file_type": "code", "degree": 2}, {"id": "astro_config_defineConfig", "label": "Astro defineConfig", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Astro defineConfig", "community": 3, "community_name": "Project Config & Tooling", "source_file": "astro.config.mjs", "file_type": "code", "degree": 1}, {"id": "package_json_genqbar", "label": "GenQBar Package Manifest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "GenQBar Package Manifest", "community": 3, "community_name": "Project Config & Tooling", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_strict", "label": "TypeScript Strict Config", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "TypeScript Strict Config", "community": 3, "community_name": "Project Config & Tooling", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "vscode_extensions", "label": "VSCode Extension Recommendations", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "VSCode Extension Recommendations", "community": 3, "community_name": "Project Config & Tooling", "source_file": ".vscode/extensions.json", "file_type": "code", "degree": 2}, {"id": "vscode_launch", "label": "VSCode Launch Config", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "VSCode Launch Config", "community": 3, "community_name": "Project Config & Tooling", "source_file": ".vscode/launch.json", "file_type": "code", "degree": 2}, {"id": "component_welcome", "label": "Welcome Component", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Welcome Component", "community": 2, "community_name": "Page & Component Architecture", "source_file": "src/components/Welcome.astro", "file_type": "code", "degree": 3}, {"id": "layout_layout", "label": "Layout Component", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Layout Component", "community": 2, "community_name": "Page & Component Architecture", "source_file": "src/layouts/Layout.astro", "file_type": "code", "degree": 4}, {"id": "page_index", "label": "Index Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Index Page", "community": 2, "community_name": "Page & Component Architecture", "source_file": "src/pages/index.astro", "file_type": "code", "degree": 3}, {"id": "readme_genqbar", "label": "GenQBar README", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "GenQBar README", "community": 2, "community_name": "Page & Component Architecture", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "concept_astro_framework", "label": "Astro Framework", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Astro Framework", "community": 3, "community_name": "Project Config & Tooling", "source_file": "package.json", "file_type": "rationale", "degree": 6}, {"id": "concept_astro_basics_template", "label": "Astro Basics Starter Template", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Astro Basics Starter Template", "community": 2, "community_name": "Page & Component Architecture", "source_file": "README.md", "file_type": "rationale", "degree": 2}, {"id": "concept_slot_composition", "label": "Slot-Based Layout Composition", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Slot-Based Layout Composition", "community": 2, "community_name": "Page & Component Architecture", "source_file": "src/layouts/Layout.astro", "file_type": "rationale", "degree": 1}, {"id": "favicon_svg", "label": "Favicon SVG Icon", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Favicon SVG Icon", "community": 6, "community_name": "Favicon & Dark Mode", "source_file": "public/favicon.svg", "file_type": "image", "degree": 4}, {"id": "favicon_astro_logo_shape", "label": "Astro Logo Shape (Rocket/A Mark)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Astro Logo Shape (Rocket/A Mark)", "community": 6, "community_name": "Favicon & Dark Mode", "source_file": "public/favicon.svg", "file_type": "image", "degree": 1}, {"id": "favicon_dark_mode_support", "label": "Dark Mode Color Adaptation", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Dark Mode Color Adaptation", "community": 6, "community_name": "Favicon & Dark Mode", "source_file": "public/favicon.svg", "file_type": "rationale", "degree": 3}, {"id": "favicon_black_fill", "label": "Black Fill Color (#000)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Black Fill Color (#000)", "community": 6, "community_name": "Favicon & Dark Mode", "source_file": "public/favicon.svg", "file_type": "rationale", "degree": 2}, {"id": "favicon_white_fill", "label": "White Fill Color (#FFF) for Dark Mode", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "White Fill Color (#FFF) for Dark Mode", "community": 6, "community_name": "Favicon & Dark Mode", "source_file": "public/favicon.svg", "file_type": "rationale", "degree": 2}, {"id": "astrosvg_astro_logo", "label": "Astro Logo SVG", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Astro Logo SVG", "community": 5, "community_name": "Astro Brand Assets", "source_file": "src/assets/astro.svg", "file_type": "image", "degree": 3}, {"id": "astrosvg_astro_icon", "label": "Astro Rocket/Flame Icon", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Astro Rocket/Flame Icon", "community": 5, "community_name": "Astro Brand Assets", "source_file": "src/assets/astro.svg", "file_type": "image", "degree": 2}, {"id": "astrosvg_astro_wordmark", "label": "Astro Wordmark Text", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Astro Wordmark Text", "community": 5, "community_name": "Astro Brand Assets", "source_file": "src/assets/astro.svg", "file_type": "image", "degree": 2}, {"id": "astrosvg_gradient_flame", "label": "Linear Gradient Flame Effect (Red to Purple)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Linear Gradient Flame Effect (Red to Purple)", "community": 5, "community_name": "Astro Brand Assets", "source_file": "src/assets/astro.svg", "file_type": "image", "degree": 1}, {"id": "astrosvg_astro_brand", "label": "Astro Framework Brand", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Astro Framework Brand", "community": 5, "community_name": "Astro Brand Assets", "source_file": "src/assets/astro.svg", "file_type": "rationale", "degree": 2}, {"id": "background_svg", "label": "Background SVG", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Background SVG", "community": 1, "community_name": "Background Visual Design", "source_file": "src/assets/background.svg", "file_type": "image", "degree": 3}, {"id": "background_blob_left", "label": "Left Blob Shape (Blue-Purple Gradient)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Left Blob Shape (Blue-Purple Gradient)", "community": 1, "community_name": "Background Visual Design", "source_file": "src/assets/background.svg", "file_type": "image", "degree": 3}, {"id": "background_blob_right", "label": "Right Blob Shape (Red-Magenta Gradient)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Right Blob Shape (Red-Magenta Gradient)", "community": 1, "community_name": "Background Visual Design", "source_file": "src/assets/background.svg", "file_type": "image", "degree": 3}, {"id": "background_gradient_a", "label": "Linear Gradient A (Blue #3245FF to Purple #BC52EE)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Linear Gradient A (Blue #3245FF to Purple #BC52EE)", "community": 1, "community_name": "Background Visual Design", "source_file": "src/assets/background.svg", "file_type": "image", "degree": 2}, {"id": "background_gradient_b", "label": "Linear Gradient B (Red #D83333 to Magenta #F041FF)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Linear Gradient B (Red #D83333 to Magenta #F041FF)", "community": 1, "community_name": "Background Visual Design", "source_file": "src/assets/background.svg", "file_type": "image", "degree": 2}, {"id": "background_decorative_pattern", "label": "Decorative Organic Blob Pattern", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Decorative Organic Blob Pattern", "community": 1, "community_name": "Background Visual Design", "source_file": "src/assets/background.svg", "file_type": "rationale", "degree": 1}];
const RAW_EDGES = [{"from": "package_json", "to": "genqbar_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "genqbar_package_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "genqbar_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "genqbar_package_engines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "genqbar_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "genqbar_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "genqbar_package_engines", "to": "genqbar_package_engines_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "genqbar_package_scripts", "to": "genqbar_package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "genqbar_package_scripts", "to": "genqbar_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "genqbar_package_scripts", "to": "genqbar_package_scripts_preview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "genqbar_package_scripts", "to": "genqbar_package_scripts_astro", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "genqbar_package_dependencies", "to": "genqbar_package_dependencies_astro", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_json", "to": "genqbar_tsconfig_extends", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_json", "to": "genqbar_tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_json", "to": "genqbar_tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vscode_extensions_json", "to": "vscode_extensions_recommendations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vscode_extensions_json", "to": "vscode_extensions_unwantedrecommendations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vscode_launch_json", "to": "vscode_launch_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vscode_launch_json", "to": "vscode_launch_configurations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_welcome_astro", "to": "c_users_aaaaa_documents_lakg_dev_genqbar_src_assets_background_svg", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_welcome_astro", "to": "components_welcome_screen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_welcome_astro", "to": "c_users_aaaaa_documents_lakg_dev_genqbar_src_assets_astro_svg", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_pages_index_astro", "to": "src_components_welcome_astro", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_pages_index_astro", "to": "src_layouts_layout_astro", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "astro_config_defineConfig", "to": "concept_astro_framework", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json_genqbar", "to": "concept_astro_framework", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_strict", "to": "concept_astro_framework", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vscode_extensions", "to": "concept_astro_framework", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vscode_launch", "to": "vscode_extensions", "label": "semantically_similar_to", "title": "semantically_similar_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "vscode_launch", "to": "concept_astro_framework", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "page_index", "to": "component_welcome", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_genqbar", "to": "component_welcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_welcome", "to": "layout_layout", "label": "semantically_similar_to", "title": "semantically_similar_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "page_index", "to": "layout_layout", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_genqbar", "to": "layout_layout", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_layout", "to": "concept_slot_composition", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_genqbar", "to": "page_index", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_genqbar", "to": "concept_astro_basics_template", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concept_astro_basics_template", "to": "concept_astro_framework", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "favicon_astro_logo_shape", "to": "favicon_svg", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "favicon_svg", "to": "favicon_dark_mode_support", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_svg", "to": "favicon_black_fill", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_svg", "to": "favicon_white_fill", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_dark_mode_support", "to": "favicon_black_fill", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_dark_mode_support", "to": "favicon_white_fill", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "astrosvg_astro_logo", "to": "astrosvg_astro_icon", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "astrosvg_astro_logo", "to": "astrosvg_astro_wordmark", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "astrosvg_astro_logo", "to": "astrosvg_astro_brand", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "astrosvg_astro_icon", "to": "astrosvg_gradient_flame", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "astrosvg_astro_wordmark", "to": "astrosvg_astro_brand", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "background_svg", "to": "background_blob_left", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "background_svg", "to": "background_blob_right", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "background_svg", "to": "background_decorative_pattern", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "background_blob_left", "to": "background_gradient_a", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "background_blob_left", "to": "background_blob_right", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "background_blob_right", "to": "background_gradient_b", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "background_gradient_a", "to": "background_gradient_b", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}];
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Package Manifest Fields", "count": 8}, {"cid": 1, "color": "#F28E2B", "label": "Background Visual Design", "count": 6}, {"cid": 2, "color": "#E15759", "label": "Page &amp; Component Architecture", "count": 6}, {"cid": 3, "color": "#76B7B2", "label": "Project Config &amp; Tooling", "count": 6}, {"cid": 4, "color": "#59A14F", "label": "Asset References", "count": 6}, {"cid": 5, "color": "#EDC948", "label": "Astro Brand Assets", "count": 5}, {"cid": 6, "color": "#B07AA1", "label": "Favicon &amp; Dark Mode", "count": 5}, {"cid": 7, "color": "#FF9DA7", "label": "NPM Dev Scripts", "count": 5}, {"cid": 8, "color": "#9C755F", "label": "TypeScript Config", "count": 4}, {"cid": 9, "color": "#BAB0AC", "label": "VSCode Extensions", "count": 3}, {"cid": 10, "color": "#4E79A7", "label": "VSCode Launch Config", "count": 3}, {"cid": 11, "color": "#F28E2B", "label": "Astro Build Config", "count": 1}];
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
function esc(s) {
return String(s).replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;').replace(/"/g,'&quot;').replace(/'/g,'&#39;');
}
// Build vis datasets
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
id: n.id, label: n.label, color: n.color, size: n.size,
font: n.font, title: n.title,
_community: n.community, _community_name: n.community_name,
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
})));
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
id: i, from: e.from, to: e.to,
label: '',
title: e.title,
dashes: e.dashes,
width: e.width,
color: e.color,
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
})));
const container = document.getElementById('graph');
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
physics: {
enabled: true,
solver: 'forceAtlas2Based',
forceAtlas2Based: {
gravitationalConstant: -60,
centralGravity: 0.005,
springLength: 120,
springConstant: 0.08,
damping: 0.4,
avoidOverlap: 0.8,
},
stabilization: { iterations: 200, fit: true },
},
interaction: {
hover: true,
tooltipDelay: 100,
hideEdgesOnDrag: true,
navigationButtons: false,
keyboard: false,
},
nodes: { shape: 'dot', borderWidth: 1.5 },
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
});
network.once('stabilizationIterationsDone', () => {
network.setOptions({ physics: { enabled: false } });
});
function showInfo(nodeId) {
const n = nodesDS.get(nodeId);
if (!n) return;
const neighborIds = network.getConnectedNodes(nodeId);
const neighborItems = neighborIds.map(nid => {
const nb = nodesDS.get(nid);
const color = nb ? nb.color.background : '#555';
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
}).join('');
document.getElementById('info-content').innerHTML = `
<div class="field"><b>${esc(n.label)}</b></div>
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
<div class="field">Community: ${esc(n._community_name)}</div>
<div class="field">Source: ${esc(n._source_file || '-')}</div>
<div class="field">Degree: ${n._degree}</div>
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
`;
}
function focusNode(nodeId) {
network.focus(nodeId, { scale: 1.4, animation: true });
network.selectNodes([nodeId]);
showInfo(nodeId);
}
// Track hovered node — hover detection is more reliable than click params
let hoveredNodeId = null;
network.on('hoverNode', params => {
hoveredNodeId = params.node;
container.style.cursor = 'pointer';
});
network.on('blurNode', () => {
hoveredNodeId = null;
container.style.cursor = 'default';
});
container.addEventListener('click', () => {
if (hoveredNodeId !== null) {
showInfo(hoveredNodeId);
network.selectNodes([hoveredNodeId]);
}
});
network.on('click', params => {
if (params.nodes.length > 0) {
showInfo(params.nodes[0]);
} else if (hoveredNodeId === null) {
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
}
});
const searchInput = document.getElementById('search');
const searchResults = document.getElementById('search-results');
searchInput.addEventListener('input', () => {
const q = searchInput.value.toLowerCase().trim();
searchResults.innerHTML = '';
if (!q) { searchResults.style.display = 'none'; return; }
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
if (!matches.length) { searchResults.style.display = 'none'; return; }
searchResults.style.display = 'block';
matches.forEach(n => {
const el = document.createElement('div');
el.className = 'search-item';
el.textContent = n.label;
el.style.borderLeft = `3px solid ${n.color.background}`;
el.style.paddingLeft = '8px';
el.onclick = () => {
network.focus(n.id, { scale: 1.5, animation: true });
network.selectNodes([n.id]);
showInfo(n.id);
searchResults.style.display = 'none';
searchInput.value = '';
};
searchResults.appendChild(el);
});
});
document.addEventListener('click', e => {
if (!searchResults.contains(e.target) && e.target !== searchInput)
searchResults.style.display = 'none';
});
const hiddenCommunities = new Set();
const selectAllCb = document.getElementById('select-all-cb');
function updateSelectAllState() {
const total = LEGEND.length;
const hidden = hiddenCommunities.size;
selectAllCb.checked = hidden === 0;
selectAllCb.indeterminate = hidden > 0 && hidden < total;
}
function toggleAllCommunities(hide) {
document.querySelectorAll('.legend-item').forEach(item => {
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
});
document.querySelectorAll('.legend-cb').forEach(cb => {
cb.checked = !hide;
});
LEGEND.forEach(c => {
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
});
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
nodesDS.update(updates);
updateSelectAllState();
}
const legendEl = document.getElementById('legend');
LEGEND.forEach(c => {
const item = document.createElement('div');
item.className = 'legend-item';
const cb = document.createElement('input');
cb.type = 'checkbox';
cb.className = 'legend-cb';
cb.checked = true;
cb.addEventListener('change', (e) => {
e.stopPropagation();
if (cb.checked) {
hiddenCommunities.delete(c.cid);
item.classList.remove('dimmed');
} else {
hiddenCommunities.add(c.cid);
item.classList.add('dimmed');
}
const updates = RAW_NODES
.filter(n => n.community === c.cid)
.map(n => ({ id: n.id, hidden: !cb.checked }));
nodesDS.update(updates);
updateSelectAllState();
});
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
<span class="legend-label">${c.label}</span>
<span class="legend-count">${c.count}</span>`;
item.prepend(cb);
item.onclick = (e) => {
if (e.target === cb) return;
cb.checked = !cb.checked;
cb.dispatchEvent(new Event('change'));
};
legendEl.appendChild(item);
});
</script>
<script>
// Render hyperedges as shaded regions
const hyperedges = [{"id": "astro_project_core_stack", "label": "Astro Project Core Stack", "nodes": ["astro_config_defineConfig", "package_json_genqbar", "tsconfig_strict", "concept_astro_framework"], "relation": "implement", "confidence": "INFERRED", "confidence_score": 0.95, "source_file": "astro.config.mjs"}, {"id": "page_composition_pattern", "label": "Page Slot Composition Pattern", "nodes": ["page_index", "layout_layout", "component_welcome"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/pages/index.astro"}, {"id": "vscode_dev_environment", "label": "VSCode Dev Environment Configuration", "nodes": ["vscode_extensions", "vscode_launch", "concept_astro_framework"], "relation": "implement", "confidence": "INFERRED", "confidence_score": 0.85, "source_file": ".vscode/launch.json"}];
// afterDrawing passes ctx already transformed to network coordinate space.
// Draw node positions raw — no manual pan/zoom/DPR math needed.
network.on('afterDrawing', function(ctx) {
hyperedges.forEach(h => {
const positions = h.nodes
.map(nid => network.getPositions([nid])[nid])
.filter(p => p !== undefined);
if (positions.length < 2) return;
ctx.save();
ctx.globalAlpha = 0.12;
ctx.fillStyle = '#6366f1';
ctx.strokeStyle = '#6366f1';
ctx.lineWidth = 2;
ctx.beginPath();
// Centroid and expanded hull in network coordinates
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
const expanded = positions.map(p => ({
x: cx + (p.x - cx) * 1.15,
y: cy + (p.y - cy) * 1.15
}));
ctx.moveTo(expanded[0].x, expanded[0].y);
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
ctx.closePath();
ctx.fill();
ctx.globalAlpha = 0.4;
ctx.stroke();
// Label
ctx.globalAlpha = 0.8;
ctx.fillStyle = '#4f46e5';
ctx.font = 'bold 11px sans-serif';
ctx.textAlign = 'center';
ctx.fillText(h.label, cx, cy - 5);
ctx.restore();
});
});
</script>
</body>
</html>