| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153 |
- #!/usr/bin/env node
- const fs = require('fs');
- const path = require('path');
- const { build } = require('esbuild');
- // const { convertV8ToGraph } = require('./convert_v8_to_graph'); // 已废弃,使用v3版本
- const { convertV8ToGraphV2, convertV8ToGraphSimplified } = require('./convert_v8_to_graph_v3');
- // 读取命令行参数
- const args = process.argv.slice(2);
- if (args.length === 0) {
- console.error('Usage: node index.js <path-to-run_context.json> [output.html] [--simplified]');
- process.exit(1);
- }
- const inputFile = args[0];
- const outputFile = args[1] || 'query_graph_output.html';
- const useSimplified = args.includes('--simplified');
- // 读取输入数据
- const inputData = JSON.parse(fs.readFileSync(inputFile, 'utf-8'));
- // 检测数据格式并转换
- let data;
- if (inputData.rounds && inputData.o) {
- // v6.1.2.8 格式,需要转换
- console.log('✨ 检测到 v6.1.2.8 格式,正在转换为图结构...');
- // 尝试读取 search_results.json(兼容旧版本)
- let searchResults = null;
- const searchResultsPath = path.join(path.dirname(inputFile), 'search_results.json');
- if (fs.existsSync(searchResultsPath)) {
- console.log('📄 读取外部搜索结果数据(兼容模式)...');
- searchResults = JSON.parse(fs.readFileSync(searchResultsPath, 'utf-8'));
- } else {
- console.log('✅ 使用 run_context.json 中的内嵌搜索结果');
- }
- // 尝试读取 search_extract.json(多模态提取数据)
- let extractionData = null;
- const extractionPath = path.join(path.dirname(inputFile), 'search_extract.json');
- if (fs.existsSync(extractionPath)) {
- console.log('📸 读取多模态提取数据...');
- extractionData = JSON.parse(fs.readFileSync(extractionPath, 'utf-8'));
- } else {
- console.log('ℹ️ 未找到 search_extract.json,跳过多模态展示');
- }
- // 选择转换函数
- let graphData;
- let fullData = null; // 用于目录的完整数据
- if (useSimplified) {
- console.log('🎨 使用简化视图(合并query节点)');
- // 生成简化版用于画布
- graphData = convertV8ToGraphSimplified(inputData, searchResults, extractionData);
- // 生成完整版用于目录
- const fullGraphData = convertV8ToGraphV2(inputData, searchResults, extractionData);
- fullData = {
- nodes: fullGraphData.nodes,
- edges: fullGraphData.edges,
- iterations: fullGraphData.iterations
- };
- console.log(`✅ 简化版: ${Object.keys(graphData.nodes).length} 个节点, ${graphData.edges.length} 条边`);
- console.log(`📋 完整版(用于目录): ${Object.keys(fullData.nodes).length} 个节点`);
- } else {
- console.log('📊 使用详细视图(完整流程)');
- graphData = convertV8ToGraphV2(inputData, searchResults, extractionData);
- console.log(`✅ 转换完成: ${Object.keys(graphData.nodes).length} 个节点, ${graphData.edges.length} 条边`);
- }
- data = {
- nodes: graphData.nodes,
- edges: graphData.edges,
- iterations: graphData.iterations,
- fullData: fullData // 传递完整数据
- };
- } else if (inputData.nodes && inputData.edges) {
- // v6.1.2.5 格式,直接使用
- console.log('✨ 检测到 v6.1.2.5 格式,直接使用');
- data = inputData;
- } else {
- console.error('❌ 无法识别的数据格式');
- process.exit(1);
- }
- // 创建临时 React 组件文件
- const reactComponentPath = path.join(__dirname, 'temp_flow_component_v2.jsx');
- const reactComponent = `
- import React, { useState, useCallback, useMemo, useEffect } from 'react';
- import { createRoot } from 'react-dom/client';
- import {
- ReactFlow,
- Controls,
- Background,
- useNodesState,
- useEdgesState,
- Handle,
- Position,
- useReactFlow,
- ReactFlowProvider,
- } from '@xyflow/react';
- import '@xyflow/react/dist/style.css';
- const data = ${JSON.stringify(data, null, 2)};
- // 根据节点类型获取边框颜色
- function getNodeTypeColor(type) {
- const typeColors = {
- 'root': '#6b21a8', // 紫色 - 根节点
- 'round': '#7c3aed', // 深紫 - Round节点
- 'step': '#f59e0b', // 橙色 - 步骤节点
- 'seg': '#10b981', // 绿色 - 分词
- 'q': '#3b82f6', // 蓝色 - Query
- 'sug': '#06b6d4', // 青色 - Sug建议词
- 'seed': '#84cc16', // 黄绿 - Seed
- 'add_word': '#22c55e', // 绿色 - 加词生成
- 'search_word': '#8b5cf6', // 紫色 - 搜索词
- 'post': '#ec4899', // 粉色 - 帖子
- 'filtered_sug': '#14b8a6',// 青绿 - 筛选的sug
- 'next_q': '#2563eb', // 深蓝 - 下轮查询
- 'next_seed': '#65a30d', // 深黄绿 - 下轮种子
- 'search': '#8b5cf6', // 深紫 - 搜索(兼容旧版)
- 'operation': '#f59e0b', // 橙色 - 操作节点(兼容旧版)
- 'query': '#3b82f6', // 蓝色 - 查询(兼容旧版)
- 'note': '#ec4899', // 粉色 - 帖子(兼容旧版)
- };
- return typeColors[type] || '#9ca3af';
- }
- // 查询节点组件 - 卡片样式
- function QueryNode({ id, data, sourcePosition, targetPosition }) {
- // 所有节点默认展开
- const expanded = true;
- // 获取节点类型颜色
- const typeColor = getNodeTypeColor(data.nodeType || 'query');
- return (
- <div>
- <Handle
- type="target"
- position={targetPosition || Position.Left}
- style={{ background: typeColor, width: 8, height: 8 }}
- />
- <div
- style={{
- padding: '12px',
- borderRadius: '8px',
- border: data.isHighlighted ? \`3px solid \${typeColor}\` :
- data.isCollapsed ? \`2px solid \${typeColor}\` :
- data.isSelected === false ? '2px dashed #d1d5db' :
- \`2px solid \${typeColor}\`,
- background: data.isHighlighted ? '#eef2ff' :
- data.isSelected === false ? '#f9fafb' : 'white',
- minWidth: '200px',
- maxWidth: '280px',
- boxShadow: data.isHighlighted ? '0 0 0 4px rgba(102, 126, 234, 0.25), 0 4px 16px rgba(102, 126, 234, 0.4)' :
- data.isCollapsed ? '0 4px 12px rgba(102, 126, 234, 0.15)' :
- data.level === 0 ? '0 4px 12px rgba(139, 92, 246, 0.15)' : '0 2px 6px rgba(0, 0, 0, 0.06)',
- transition: 'all 0.3s ease',
- cursor: 'pointer',
- position: 'relative',
- opacity: data.isSelected === false ? 0.6 : 1,
- }}
- >
- {/* 折叠当前节点按钮 - 左边 */}
- <div
- style={{
- position: 'absolute',
- top: '6px',
- left: '6px',
- width: '20px',
- height: '20px',
- borderRadius: '50%',
- background: '#f59e0b',
- color: 'white',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- fontSize: '11px',
- fontWeight: 'bold',
- cursor: 'pointer',
- transition: 'all 0.2s ease',
- zIndex: 10,
- }}
- onClick={(e) => {
- e.stopPropagation();
- if (data.onHideSelf) {
- data.onHideSelf();
- }
- }}
- onMouseEnter={(e) => {
- e.currentTarget.style.background = '#d97706';
- }}
- onMouseLeave={(e) => {
- e.currentTarget.style.background = '#f59e0b';
- }}
- title="隐藏当前节点"
- >
- ×
- </div>
- {/* 聚焦按钮 - 右上角 */}
- <div
- style={{
- position: 'absolute',
- top: '6px',
- right: '6px',
- width: '20px',
- height: '20px',
- borderRadius: '50%',
- background: data.isFocused ? '#10b981' : '#e5e7eb',
- color: data.isFocused ? 'white' : '#6b7280',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- fontSize: '11px',
- fontWeight: 'bold',
- cursor: 'pointer',
- transition: 'all 0.2s ease',
- zIndex: 10,
- }}
- onClick={(e) => {
- e.stopPropagation();
- if (data.onFocus) {
- data.onFocus();
- }
- }}
- onMouseEnter={(e) => {
- if (!data.isFocused) {
- e.currentTarget.style.background = '#d1d5db';
- }
- }}
- onMouseLeave={(e) => {
- if (!data.isFocused) {
- e.currentTarget.style.background = '#e5e7eb';
- }
- }}
- title={data.isFocused ? '取消聚焦' : '聚焦到此节点'}
- >
- 🎯
- </div>
- {/* 折叠/展开子节点按钮 - 右边第二个位置 */}
- {data.hasChildren && (
- <div
- style={{
- position: 'absolute',
- top: '6px',
- right: '30px',
- width: '20px',
- height: '20px',
- borderRadius: '50%',
- background: data.isCollapsed ? '#667eea' : '#e5e7eb',
- color: data.isCollapsed ? 'white' : '#6b7280',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- fontSize: '11px',
- fontWeight: 'bold',
- cursor: 'pointer',
- transition: 'all 0.2s ease',
- zIndex: 10,
- }}
- onClick={(e) => {
- e.stopPropagation();
- data.onToggleCollapse();
- }}
- title={data.isCollapsed ? '展开子节点' : '折叠子节点'}
- >
- {data.isCollapsed ? '+' : '−'}
- </div>
- )}
- {/* 卡片内容 */}
- <div>
- {/* 标题行 */}
- <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-start', marginBottom: '8px', paddingLeft: '24px', paddingRight: data.hasChildren ? '54px' : '28px' }}>
- <div style={{ flex: 1 }}>
- <div style={{ display: 'flex', alignItems: 'center', gap: '4px', marginBottom: '3px' }}>
- <div style={{
- fontSize: '13px',
- fontWeight: data.level === 0 ? '700' : '600',
- color: data.level === 0 ? '#6b21a8' : '#1f2937',
- lineHeight: '1.3',
- flex: 1,
- }}>
- {data.title}
- </div>
- {data.isSelected === false && (
- <div style={{
- fontSize: '9px',
- padding: '1px 4px',
- borderRadius: '3px',
- background: '#fee2e2',
- color: '#991b1b',
- fontWeight: '500',
- flexShrink: 0,
- }}>
- 未选中
- </div>
- )}
- </div>
- </div>
- </div>
- {/* 展开的详细信息 - 始终显示 */}
- <div style={{ fontSize: '11px', lineHeight: 1.4 }}>
- <div style={{ display: 'flex', gap: '4px', marginBottom: '6px', flexWrap: 'wrap' }}>
- <span style={{
- display: 'inline-block',
- padding: '1px 6px',
- borderRadius: '10px',
- background: '#eff6ff',
- color: '#3b82f6',
- fontSize: '10px',
- fontWeight: '500',
- }}>
- Lv.{data.level}
- </span>
- <span style={{
- display: 'inline-block',
- padding: '1px 6px',
- borderRadius: '10px',
- background: '#f0fdf4',
- color: '#16a34a',
- fontSize: '10px',
- fontWeight: '500',
- }}>
- {data.score}
- </span>
- {data.strategy && data.strategy !== 'root' && (
- <span style={{
- display: 'inline-block',
- padding: '1px 6px',
- borderRadius: '10px',
- background: '#fef3c7',
- color: '#92400e',
- fontSize: '10px',
- fontWeight: '500',
- }}>
- {data.strategy}
- </span>
- )}
- {(data.typeLabel || data.type_label) && (
- <span style={{
- display: 'inline-block',
- padding: '1px 6px',
- borderRadius: '10px',
- background: '#fce7f3',
- color: '#9f1239',
- fontSize: '10px',
- fontWeight: '500',
- }}>
- {data.typeLabel || data.type_label}
- </span>
- )}
- {data.is_suggestion && data.suggestion_label && (
- <span style={{
- display: 'inline-block',
- padding: '1px 6px',
- borderRadius: '10px',
- background: '#ede9fe',
- color: '#6d28d9',
- fontSize: '10px',
- fontWeight: '600',
- }}>
- {data.suggestion_label}
- </span>
- )}
- </div>
- {data.parent && (
- <div style={{ color: '#6b7280', fontSize: '10px', marginTop: '4px', paddingTop: '4px', borderTop: '1px solid #f3f4f6' }}>
- <strong>Parent:</strong> {data.parent}
- </div>
- )}
- {data.nodeType === 'domain_combination' && Array.isArray(data.source_word_details) && data.source_word_details.length > 0 && (
- <div style={{
- marginTop: '6px',
- paddingTop: '6px',
- borderTop: '1px solid #f3f4f6',
- fontSize: '10px',
- color: '#6b7280',
- lineHeight: '1.5',
- }}>
- <strong style={{ color: '#4b5563' }}>来源词得分:</strong>
- <div style={{ marginTop: '4px', display: 'flex', flexDirection: 'column', gap: '4px' }}>
- {data.source_word_details.map((detail, idx) => {
- const words = (detail.words || []).map((w) => {
- const numericScore = typeof w.score === 'number' ? w.score : parseFloat(w.score || '0');
- const formattedScore = Number.isFinite(numericScore) ? numericScore.toFixed(2) : '0.00';
- return w.text + ' (' + formattedScore + ')';
- }).join(' + ');
- return (
- <div key={idx} style={{ display: 'flex', flexWrap: 'wrap', gap: '4px', alignItems: 'center' }}>
- <span style={{ color: '#2563eb' }}>{words}</span>
- </div>
- );
- })}
- </div>
- <div style={{ marginTop: '4px', fontWeight: '500', color: data.is_above_sources ? '#16a34a' : '#dc2626' }}>
- {data.is_above_sources ? '✅ 组合得分高于所有来源词' : '⚠️ 组合得分未超过全部来源词'}
- </div>
- </div>
- )}
- {data.selectedWord && (
- <div style={{
- marginTop: '6px',
- paddingTop: '6px',
- borderTop: '1px solid #f3f4f6',
- fontSize: '10px',
- color: '#6b7280',
- lineHeight: '1.5',
- }}>
- <strong style={{ color: '#4b5563' }}>选择词:</strong>
- <span style={{ marginLeft: '4px', color: '#3b82f6', fontWeight: '500' }}>{data.selectedWord}</span>
- {data.seed_score !== undefined && (
- <div style={{ marginTop: '4px' }}>
- <strong style={{ color: '#4b5563' }}>种子得分:</strong>
- <span style={{ marginLeft: '4px', color: '#16a34a', fontWeight: '500' }}>
- {typeof data.seed_score === 'number' ? data.seed_score.toFixed(2) : data.seed_score}
- </span>
- </div>
- )}
- </div>
- )}
- {data.evaluationReason && (
- <div style={{
- marginTop: '6px',
- paddingTop: '6px',
- borderTop: '1px solid #f3f4f6',
- fontSize: '10px',
- color: '#6b7280',
- lineHeight: '1.5',
- }}>
- <strong style={{ color: '#4b5563' }}>评估:</strong>
- <div style={{ marginTop: '2px' }}>{data.evaluationReason}</div>
- </div>
- )}
- {data.occurrences && data.occurrences.length > 1 && (
- <div style={{
- marginTop: '6px',
- paddingTop: '6px',
- borderTop: '1px solid #f3f4f6',
- fontSize: '10px',
- color: '#6b7280',
- }}>
- <strong style={{ color: '#4b5563' }}>演化历史 ({data.occurrences.length}次):</strong>
- <div style={{ marginTop: '4px' }}>
- {data.occurrences.map((occ, idx) => (
- <div key={idx} style={{ marginTop: '2px', paddingLeft: '8px' }}>
- <span style={{ color: '#3b82f6', fontWeight: '500' }}>R{occ.round}</span>
- {' · '}
- <span>{occ.strategy}</span>
- {occ.score !== undefined && (
- <span style={{ color: '#16a34a', marginLeft: '4px' }}>
- ({typeof occ.score === 'number' ? occ.score.toFixed(2) : occ.score})
- </span>
- )}
- </div>
- ))}
- </div>
- </div>
- )}
- {data.hasSearchResults && (
- <div style={{
- marginTop: '6px',
- paddingTop: '6px',
- borderTop: '1px solid #f3f4f6',
- fontSize: '10px',
- background: '#fef3c7',
- padding: '4px 6px',
- borderRadius: '4px',
- color: '#92400e',
- fontWeight: '500',
- }}>
- 🔍 找到 {data.postCount} 个帖子
- </div>
- )}
- </div>
- </div>
- </div>
- <Handle
- type="source"
- position={sourcePosition || Position.Right}
- style={{ background: '#667eea', width: 8, height: 8 }}
- />
- </div>
- );
- }
- // 笔记节点组件 - 卡片样式,带轮播图
- function NoteNode({ id, data, sourcePosition, targetPosition }) {
- const [currentImageIndex, setCurrentImageIndex] = useState(0);
- const expanded = true;
- const hasImages = data.imageList && data.imageList.length > 0;
- const nextImage = (e) => {
- e.stopPropagation();
- if (hasImages) {
- setCurrentImageIndex((prev) => (prev + 1) % data.imageList.length);
- }
- };
- const prevImage = (e) => {
- e.stopPropagation();
- if (hasImages) {
- setCurrentImageIndex((prev) => (prev - 1 + data.imageList.length) % data.imageList.length);
- }
- };
- return (
- <div>
- <Handle
- type="target"
- position={targetPosition || Position.Left}
- style={{ background: '#ec4899', width: 8, height: 8 }}
- />
- <div
- style={{
- padding: '14px',
- borderRadius: '20px',
- border: data.isHighlighted ? '3px solid #ec4899' : '2px solid #fce7f3',
- background: data.isHighlighted ? '#eef2ff' : 'white',
- minWidth: '220px',
- maxWidth: '300px',
- boxShadow: data.isHighlighted ? '0 0 0 4px rgba(236, 72, 153, 0.25), 0 4px 16px rgba(236, 72, 153, 0.4)' : '0 4px 12px rgba(236, 72, 153, 0.15)',
- transition: 'all 0.3s ease',
- cursor: 'pointer',
- }}
- >
- {/* 笔记标题 */}
- <div style={{ display: 'flex', alignItems: 'flex-start', marginBottom: '8px' }}>
- <div style={{ flex: 1 }}>
- <div style={{
- fontSize: '13px',
- fontWeight: '600',
- color: '#831843',
- lineHeight: '1.4',
- marginBottom: '4px',
- }}>
- {data.title}
- </div>
- </div>
- </div>
- {/* 评估信息区域 (V2) */}
- {(data.knowledge_score !== undefined || data.post_relevance_score !== undefined || data.is_knowledge !== undefined) && (
- <div style={{
- marginBottom: '10px',
- paddingBottom: '8px',
- borderBottom: '1px solid #fce7f3',
- }}>
- {/* 知识评估 (V2) */}
- {(data.knowledge_score !== undefined || data.is_knowledge !== undefined) && (
- <div style={{ marginBottom: '8px' }}>
- <div style={{ display: 'flex', alignItems: 'center', gap: '8px', marginBottom: '4px' }}>
- {/* 星级评分 */}
- {data.knowledge_level && (
- <span style={{ fontSize: '12px', lineHeight: '1' }}>
- {'⭐'.repeat(data.knowledge_level)}
- </span>
- )}
- {/* 综合得分 */}
- {data.knowledge_score != null && (
- <span style={{
- fontSize: '11px',
- fontWeight: '700',
- color: data.knowledge_score >= 70 ? '#166534' : data.knowledge_score >= 40 ? '#854d0e' : '#991b1b',
- }}>
- 知识: {data.knowledge_score.toFixed(0)}分
- </span>
- )}
- {/* 兼容旧版: 知识判定标签 */}
- {!data.knowledge_score && data.is_knowledge !== undefined && (
- <span style={{
- display: 'inline-block',
- padding: '3px 10px',
- borderRadius: '12px',
- fontSize: '11px',
- fontWeight: '600',
- background: data.is_knowledge ? '#dcfce7' : '#fee2e2',
- color: data.is_knowledge ? '#166534' : '#991b1b',
- }}>
- {data.is_knowledge ? '✓ 知识' : '✗ 非知识'}
- </span>
- )}
- </div>
- {/* 知识评估总结 */}
- {data.knowledge_evaluation?.summary && (
- <div style={{
- fontSize: '10px',
- color: '#9f1239',
- lineHeight: '1.4',
- marginTop: '4px',
- }}>
- {data.knowledge_evaluation.summary}
- </div>
- )}
- {/* 兼容旧版: 知识理由 */}
- {!data.knowledge_evaluation?.summary && data.knowledge_reason && (
- <div style={{
- fontSize: '10px',
- color: '#9f1239',
- lineHeight: '1.4',
- marginTop: '4px',
- }}>
- {data.knowledge_reason}
- </div>
- )}
- </div>
- )}
- {/* 相关性评估 (V2) */}
- {data.post_relevance_score != null && (
- <div>
- <div style={{
- display: 'flex',
- alignItems: 'center',
- gap: '6px',
- marginBottom: '4px',
- }}>
- {/* V2: 0-100分制 (统一显示分数) */}
- <span style={{
- fontSize: '11px',
- fontWeight: '600',
- color: '#9f1239',
- }}>
- 相关性: {data.post_relevance_score.toFixed(0)}分
- </span>
- {/* V2结论标签 */}
- {data.relevance_conclusion && (
- <span style={{
- padding: '2px 8px',
- borderRadius: '10px',
- fontSize: '10px',
- fontWeight: '600',
- background:
- data.relevance_conclusion.includes('高度') ? '#dcfce7' :
- data.relevance_conclusion.includes('中度') ? '#fef3c7' : '#fee2e2',
- color:
- data.relevance_conclusion.includes('高度') ? '#166534' :
- data.relevance_conclusion.includes('中度') ? '#854d0e' : '#991b1b',
- }}>
- {data.relevance_conclusion}
- </span>
- )}
- {/* V1兼容: 显示旧的相关性等级 */}
- {!data.relevance_conclusion && data.relevance_level && (
- <span style={{
- padding: '2px 8px',
- borderRadius: '10px',
- fontSize: '10px',
- fontWeight: '600',
- background:
- data.relevance_level === '高度相关' ? '#dcfce7' :
- data.relevance_level === '中度相关' ? '#fef3c7' : '#fee2e2',
- color:
- data.relevance_level === '高度相关' ? '#166534' :
- data.relevance_level === '中度相关' ? '#854d0e' : '#991b1b',
- }}>
- {data.relevance_level}
- </span>
- )}
- </div>
- {/* 相关性评估总结 (V2) */}
- {data.relevance_evaluation?.summary && (
- <div style={{
- fontSize: '10px',
- color: '#9f1239',
- lineHeight: '1.4',
- }}>
- {data.relevance_evaluation.summary}
- </div>
- )}
- {/* 目的性和品类得分 (V2) */}
- {data.relevance_evaluation?.purpose_score != null && data.relevance_evaluation?.category_score != null && (
- <div style={{
- fontSize: '9px',
- color: '#9f1239',
- marginTop: '3px',
- opacity: 0.8,
- }}>
- 目的性:{data.relevance_evaluation.purpose_score.toFixed(0)}分(70%) |
- 品类:{data.relevance_evaluation.category_score.toFixed(0)}分(30%)
- </div>
- )}
- {/* 兼容旧版: 相关性理由 */}
- {!data.relevance_evaluation?.summary && data.relevance_reason && (
- <div style={{
- fontSize: '10px',
- color: '#9f1239',
- lineHeight: '1.4',
- }}>
- {data.relevance_reason}
- </div>
- )}
- </div>
- )}
- </div>
- )}
- {/* 轮播图 */}
- {hasImages && (
- <div style={{
- position: 'relative',
- marginBottom: '8px',
- borderRadius: '12px',
- overflow: 'hidden',
- }}>
- <img
- src={data.imageList[currentImageIndex].image_url}
- alt={\`Image \${currentImageIndex + 1}\`}
- style={{
- width: '100%',
- height: '160px',
- objectFit: 'cover',
- display: 'block',
- }}
- onError={(e) => {
- e.target.style.display = 'none';
- }}
- />
- {data.imageList.length > 1 && (
- <>
- {/* 左右切换按钮 */}
- <button
- onClick={prevImage}
- style={{
- position: 'absolute',
- left: '4px',
- top: '50%',
- transform: 'translateY(-50%)',
- background: 'rgba(0, 0, 0, 0.5)',
- color: 'white',
- border: 'none',
- borderRadius: '50%',
- width: '24px',
- height: '24px',
- cursor: 'pointer',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- fontSize: '14px',
- }}
- >
- ‹
- </button>
- <button
- onClick={nextImage}
- style={{
- position: 'absolute',
- right: '4px',
- top: '50%',
- transform: 'translateY(-50%)',
- background: 'rgba(0, 0, 0, 0.5)',
- color: 'white',
- border: 'none',
- borderRadius: '50%',
- width: '24px',
- height: '24px',
- cursor: 'pointer',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- fontSize: '14px',
- }}
- >
- ›
- </button>
- {/* 图片计数 */}
- <div style={{
- position: 'absolute',
- bottom: '4px',
- right: '4px',
- background: 'rgba(0, 0, 0, 0.6)',
- color: 'white',
- padding: '2px 6px',
- borderRadius: '10px',
- fontSize: '10px',
- }}>
- {currentImageIndex + 1}/{data.imageList.length}
- </div>
- </>
- )}
- </div>
- )}
- {/* 互动数据 */}
- {data.interact_info && (
- <div style={{
- display: 'flex',
- gap: '8px',
- marginBottom: '8px',
- flexWrap: 'wrap',
- fontSize: '11px',
- color: '#9f1239',
- }}>
- {data.interact_info.liked_count > 0 && (
- <span style={{ display: 'flex', alignItems: 'center', gap: '2px' }}>
- ❤️ {data.interact_info.liked_count}
- </span>
- )}
- {data.interact_info.collected_count > 0 && (
- <span style={{ display: 'flex', alignItems: 'center', gap: '2px' }}>
- ⭐ {data.interact_info.collected_count}
- </span>
- )}
- {data.interact_info.comment_count > 0 && (
- <span style={{ display: 'flex', alignItems: 'center', gap: '2px' }}>
- 💬 {data.interact_info.comment_count}
- </span>
- )}
- {data.interact_info.shared_count > 0 && (
- <span style={{ display: 'flex', alignItems: 'center', gap: '2px' }}>
- 🔗 {data.interact_info.shared_count}
- </span>
- )}
- </div>
- )}
- {/* 被哪些query找到 */}
- {data.foundByQueries && data.foundByQueries.length > 0 && (
- <div style={{
- marginBottom: '8px',
- padding: '6px 8px',
- background: '#f0fdf4',
- borderRadius: '6px',
- fontSize: '10px',
- }}>
- <strong style={{ color: '#16a34a' }}>🔍 被找到:</strong>
- <div style={{ marginTop: '4px', display: 'flex', flexWrap: 'wrap', gap: '4px' }}>
- {data.foundByQueries.map((query, idx) => (
- <span key={idx} style={{
- display: 'inline-block',
- padding: '2px 6px',
- background: '#dcfce7',
- color: '#166534',
- borderRadius: '4px',
- fontSize: '9px',
- }}>
- {query}
- </span>
- ))}
- </div>
- {data.foundInRounds && data.foundInRounds.length > 0 && (
- <div style={{ marginTop: '4px', color: '#6b7280' }}>
- 出现在: Round {data.foundInRounds.join(', ')}
- </div>
- )}
- </div>
- )}
- {/* 标签 */}
- {(data.matchLevel || data.score) && (
- <div style={{ display: 'flex', gap: '6px', marginBottom: '8px', flexWrap: 'wrap' }}>
- {data.matchLevel && (
- <span style={{
- display: 'inline-block',
- padding: '2px 8px',
- borderRadius: '12px',
- background: '#fff1f2',
- color: '#be123c',
- fontSize: '10px',
- fontWeight: '500',
- }}>
- {data.matchLevel}
- </span>
- )}
- {/* Score标签已隐藏 - V2不再需要 */}
- </div>
- )}
- {/* 描述 */}
- {expanded && data.description && (
- <div style={{
- fontSize: '11px',
- color: '#9f1239',
- lineHeight: '1.5',
- paddingTop: '8px',
- borderTop: '1px solid #fbcfe8',
- }}>
- {data.description}
- </div>
- )}
- {/* 评估理由 */}
- {expanded && data.evaluationReason && (
- <div style={{
- fontSize: '10px',
- color: '#831843',
- lineHeight: '1.5',
- paddingTop: '8px',
- marginTop: '8px',
- borderTop: '1px solid #fbcfe8',
- }}>
- <strong style={{ color: '#9f1239' }}>评估:</strong>
- <div style={{ marginTop: '2px' }}>{data.evaluationReason}</div>
- </div>
- )}
- </div>
- <Handle
- type="source"
- position={sourcePosition || Position.Right}
- style={{ background: '#ec4899', width: 8, height: 8 }}
- />
- </div>
- );
- }
- // AnalysisNode 组件:展示AI分析(左侧OCR文字,右侧缩略图+描述)
- function AnalysisNode({ data }) {
- const nodeStyle = {
- background: '#fffbeb',
- border: '2px solid #fbbf24',
- borderRadius: '8px',
- padding: '12px',
- minWidth: '700px',
- maxWidth: '900px',
- fontSize: '12px',
- boxShadow: '0 4px 6px rgba(0,0,0,0.1)',
- };
- return (
- <div style={nodeStyle}>
- <Handle
- type="target"
- position={Position.Left}
- style={{ background: '#fbbf24', width: 8, height: 8 }}
- />
- {/* 标题 */}
- <div style={{
- fontSize: '14px',
- fontWeight: 'bold',
- marginBottom: '8px',
- color: '#92400e',
- }}>
- 🖼️ {data.query}
- </div>
- {/* 评分和互动数据 */}
- <div style={{
- display: 'flex',
- justifyContent: 'space-between',
- marginBottom: '8px',
- padding: '6px',
- background: '#fef3c7',
- borderRadius: '4px',
- }}>
- <div style={{ fontSize: '11px', fontWeight: 'bold' }}>
- Score: {data.interact_info?.relevance_score || 0}
- </div>
- <div style={{ display: 'flex', gap: '12px', fontSize: '11px' }}>
- {data.interact_info?.liked_count > 0 && (
- <span>❤️ {data.interact_info.liked_count}</span>
- )}
- {data.interact_info?.collected_count > 0 && (
- <span>⭐ {data.interact_info.collected_count}</span>
- )}
- {data.interact_info?.comment_count > 0 && (
- <span>💬 {data.interact_info.comment_count}</span>
- )}
- </div>
- </div>
- {/* 完整正文内容 */}
- {data.body_text && (
- <div style={{
- padding: '8px',
- background: 'white',
- borderRadius: '4px',
- marginBottom: '12px',
- fontSize: '11px',
- lineHeight: '1.5',
- border: '1px solid #fbbf24',
- whiteSpace: 'pre-wrap',
- wordBreak: 'break-word',
- }}>
- {data.body_text}
- </div>
- )}
- {/* AI分析 - 左右分栏 */}
- {data.extraction && data.extraction.images && (
- <div style={{
- display: 'flex',
- flexDirection: 'column',
- gap: '12px',
- }}>
- {data.extraction.images.map((img, idx) => (
- <div
- key={idx}
- style={{
- display: 'flex',
- flexDirection: 'row',
- gap: '16px',
- padding: '10px',
- background: 'white',
- borderRadius: '4px',
- border: '1px solid #d97706',
- alignItems: 'flex-start',
- }}
- >
- {/* 左侧:OCR提取文字 */}
- <div style={{
- flex: '1', // 1/3宽度
- minWidth: '0',
- }}>
- <div style={{
- fontSize: '11px',
- fontWeight: 'bold',
- color: '#92400e',
- marginBottom: '6px',
- }}>
- 📝 图片 {idx + 1}/{data.extraction.images.length}
- </div>
- {img.extract_text && (
- <div style={{
- fontSize: '11px',
- color: '#1f2937',
- lineHeight: '1.6',
- padding: '8px',
- background: '#fef9e7',
- borderRadius: '3px',
- borderLeft: '3px solid #f39c12',
- wordBreak: 'break-word',
- }}>
- <div style={{
- fontSize: '10px',
- fontWeight: 'bold',
- color: '#d97706',
- marginBottom: '4px',
- }}>
- 【提取文字】
- </div>
- {img.extract_text}
- </div>
- )}
- </div>
- {/* 右侧:缩略图 + 描述 */}
- <div style={{
- flex: '2', // 2/3宽度
- display: 'flex',
- flexDirection: 'column',
- gap: '8px',
- minWidth: '200px',
- }}>
- {/* 缩略图 */}
- {data.image_list && data.image_list[idx] && (
- <img
- src={(data.image_list[idx].image_url || data.image_list[idx])}
- alt={'图片' + (idx + 1)}
- style={{
- width: '100%',
- height: 'auto',
- maxHeight: '180px',
- objectFit: 'contain',
- borderRadius: '4px',
- border: '1px solid #d97706',
- cursor: 'pointer',
- }}
- onError={(e) => {
- e.target.style.display = 'none';
- }}
- />
- )}
- {/* 描述文字(完整展示) */}
- {img.description && (
- <div
- style={{
- fontSize: '10px',
- color: '#78350f',
- lineHeight: '1.5',
- wordBreak: 'break-word',
- padding: '8px',
- background: '#fef9e7',
- borderRadius: '3px',
- border: '1px solid #f39c12',
- }}
- >
- <div style={{
- fontSize: '9px',
- fontWeight: 'bold',
- color: '#d97706',
- marginBottom: '4px',
- }}>
- 【图片描述】
- </div>
- {img.description}
- </div>
- )}
- </div>
- </div>
- ))}
- </div>
- )}
- {/* 查看原帖链接 */}
- {data.note_url && (
- <div style={{ marginTop: '8px', fontSize: '10px' }}>
- <a
- href={data.note_url}
- target="_blank"
- rel="noopener noreferrer"
- style={{ color: '#92400e', textDecoration: 'underline' }}
- >
- 🔗 查看原帖
- </a>
- </div>
- )}
- <Handle
- type="source"
- position={Position.Right}
- style={{ background: '#fbbf24', width: 8, height: 8 }}
- />
- </div>
- );
- }
- const nodeTypes = {
- query: QueryNode,
- note: NoteNode,
- post: NoteNode, // 帖子节点使用 NoteNode 组件渲染
- analysis: AnalysisNode,
- };
- // 根据 score 获取颜色
- function getScoreColor(score) {
- if (score >= 0.7) return '#10b981'; // 绿色 - 高分
- if (score >= 0.4) return '#f59e0b'; // 橙色 - 中分
- return '#ef4444'; // 红色 - 低分
- }
- // 截断文本,保留头尾,中间显示省略号
- function truncateMiddle(text, maxLength = 20) {
- if (!text || text.length <= maxLength) return text;
- const headLength = Math.ceil(maxLength * 0.4);
- const tailLength = Math.floor(maxLength * 0.4);
- const head = text.substring(0, headLength);
- const tail = text.substring(text.length - tailLength);
- return \`\${head}...\${tail}\`;
- }
- // 根据策略获取颜色
- // 智能提取主要策略的辅助函数
- function getPrimaryStrategy(nodeData) {
- // 优先级1: 使用 primaryStrategy 字段
- if (nodeData.primaryStrategy) {
- return nodeData.primaryStrategy;
- }
- // 优先级2: 从 occurrences 数组中获取最新的策略
- if (nodeData.occurrences && Array.isArray(nodeData.occurrences) && nodeData.occurrences.length > 0) {
- const latestOccurrence = nodeData.occurrences[nodeData.occurrences.length - 1];
- if (latestOccurrence && latestOccurrence.strategy) {
- return latestOccurrence.strategy;
- }
- }
- // 优先级3: 拆分组合策略字符串,取第一个
- if (nodeData.strategy && typeof nodeData.strategy === 'string') {
- const strategies = nodeData.strategy.split(' + ');
- if (strategies.length > 0 && strategies[0]) {
- return strategies[0].trim();
- }
- }
- // 默认返回原始strategy或未知
- return nodeData.strategy || '未知';
- }
- function getStrategyColor(strategy) {
- const strategyColors = {
- '初始分词': '#10b981',
- '调用sug': '#06b6d4',
- '同义改写': '#f59e0b',
- '加词': '#3b82f6',
- '抽象改写': '#8b5cf6',
- '基于部分匹配改进': '#ec4899',
- '结果分支-抽象改写': '#a855f7',
- '结果分支-同义改写': '#fb923c',
- // v6.1.2.8 新增策略
- '原始问题': '#6b21a8',
- '来自分词': '#10b981',
- '加词生成': '#ef4444',
- '建议词': '#06b6d4',
- '执行搜索': '#8b5cf6',
- // 添加简化版本的策略映射
- '分词': '#10b981',
- '推荐词': '#06b6d4',
- };
- return strategyColors[strategy] || '#9ca3af';
- }
- // 树节点组件
- function TreeNode({ node, level, children, isCollapsed, onToggle, isSelected, onSelect }) {
- const hasChildren = children && children.length > 0;
- const score = node.data.score ? parseFloat(node.data.score) : 0;
- const strategy = getPrimaryStrategy(node.data); // 使用智能提取函数
- const strategyColor = getStrategyColor(strategy);
- const nodeActualType = node.data.nodeType || node.type; // 获取实际节点类型
- const isDomainCombination = nodeActualType === 'domain_combination';
- let sourceSummary = '';
- if (isDomainCombination && Array.isArray(node.data.source_word_details) && node.data.source_word_details.length > 0) {
- const summaryParts = [];
- node.data.source_word_details.forEach((detail) => {
- const words = Array.isArray(detail.words) ? detail.words : [];
- const wordTexts = [];
- words.forEach((w) => {
- const numericScore = typeof w.score === 'number' ? w.score : parseFloat(w.score || '0');
- const formattedScore = Number.isFinite(numericScore) ? numericScore.toFixed(2) : '0.00';
- wordTexts.push(w.text + ' (' + formattedScore + ')');
- });
- if (wordTexts.length > 0) {
- const segmentLabel = detail.segment_type ? '[' + detail.segment_type + '] ' : '';
- summaryParts.push(segmentLabel + wordTexts.join(' + '));
- }
- });
- sourceSummary = summaryParts.join(' | ');
- }
- // 计算字体颜色:根据分数提升幅度判断
- let fontColor = '#374151'; // 默认颜色
- if (node.type === 'note') {
- // V2评估:基于知识得分和相关性得分判断颜色
- const knowledgeScore = node.data.knowledge_score;
- const relevanceScore = node.data.post_relevance_score;
- if (knowledgeScore != null && relevanceScore != null) {
- if (knowledgeScore <= 40) {
- fontColor = '#ef4444'; // 红色 - 知识得分低
- } else if (knowledgeScore > 40 && relevanceScore > 40) {
- fontColor = '#22c55e'; // 绿色 - 知识和相关性都高
- } else {
- fontColor = '#eab308'; // 黄色 - 知识得分高但相关性低
- }
- } else {
- // V1兼容:如果没有V2评估数据,使用matchLevel判断
- fontColor = node.data.matchLevel === 'unsatisfied' ? '#ef4444' : '#374151';
- }
- } else if (node.data.seed_score !== undefined) {
- const parentScore = parseFloat(node.data.seed_score);
- const gain = score - parentScore;
- fontColor = gain >= 0.05 ? '#16a34a' : '#ef4444';
- } else if (node.data.isSelected === false) {
- fontColor = '#ef4444';
- }
- return (
- <div style={{ marginLeft: level * 12 + 'px', marginBottom: '8px' }}>
- <div
- style={{
- padding: '6px 8px',
- borderRadius: '4px',
- cursor: 'pointer',
- background: 'transparent',
- border: isSelected ? '1px solid #3b82f6' : '1px solid transparent',
- display: 'flex',
- alignItems: 'center',
- gap: '6px',
- transition: 'all 0.2s ease',
- position: 'relative',
- overflow: 'visible',
- }}
- onMouseEnter={(e) => {
- if (!isSelected) e.currentTarget.style.background = '#f9fafb';
- }}
- onMouseLeave={(e) => {
- if (!isSelected) e.currentTarget.style.background = 'transparent';
- }}
- >
- {/* 策略类型竖线 */}
- <div style={{
- width: '3px',
- height: '20px',
- background: strategyColor,
- borderRadius: '2px',
- flexShrink: 0,
- position: 'relative',
- zIndex: 1,
- }} />
- {hasChildren && (
- <span
- style={{
- fontSize: '10px',
- color: '#6b7280',
- cursor: 'pointer',
- width: '16px',
- textAlign: 'center',
- position: 'relative',
- zIndex: 1,
- }}
- onClick={(e) => {
- e.stopPropagation();
- onToggle();
- }}
- >
- {isCollapsed ? '▶' : '▼'}
- </span>
- )}
- {!hasChildren && <span style={{ width: '16px', position: 'relative', zIndex: 1 }}></span>}
- <div
- style={{
- flex: 1,
- fontSize: '12px',
- color: '#374151',
- position: 'relative',
- zIndex: 1,
- minWidth: 0,
- display: 'flex',
- flexDirection: 'column',
- gap: '4px',
- }}
- onClick={onSelect}
- >
- <div style={{
- display: 'flex',
- alignItems: 'center',
- gap: '8px',
- }}>
- {/* 文本标题 - 左侧 */}
- <div style={{
- fontWeight: level === 0 ? '600' : '400',
- flex: 1,
- minWidth: 0,
- color: node.data.scoreColor || fontColor,
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- whiteSpace: 'nowrap',
- }}
- title={node.data.title || node.id}
- >
- {node.data.title || node.id}
- </div>
- {/* 域标识 - 右侧,挨着分数,优先显示域类型,否则显示域索引或域字符串,但domain_combination节点不显示 */}
- {(node.data.domain_type || node.data.domains_str || (node.data.domain_index !== null && node.data.domain_index !== undefined)) && nodeActualType !== 'domain_combination' && (
- <span style={{
- fontSize: '12px',
- color: '#fff',
- background: '#6366f1',
- padding: '2px 5px',
- borderRadius: '3px',
- flexShrink: 0,
- fontWeight: '600',
- marginLeft: '4px',
- }}
- title={
- node.data.domain_type ? '域: ' + node.data.domain_type + ' (D' + node.data.domain_index + ')' :
- node.data.domains_str ? '域: ' + node.data.domains_str :
- '域 D' + node.data.domain_index
- }
- >
- {node.data.domain_type || node.data.domains_str || ('D' + node.data.domain_index)}
- </span>
- )}
- {node.data.is_suggestion && node.data.suggestion_label && (
- <span style={{
- fontSize: '12px',
- color: '#fff',
- background: '#8b5cf6',
- padding: '2px 5px',
- borderRadius: '3px',
- flexShrink: 0,
- fontWeight: '600',
- }}
- >
- {node.data.suggestion_label}
- </span>
- )}
- {/* 类型标签 - 显示在右侧靠近分数,蓝色背景 */}
- {node.data.type_label && (
- <span style={{
- fontSize: '12px',
- color: '#fff',
- background: '#6366f1',
- padding: '2px 5px',
- borderRadius: '3px',
- flexShrink: 0,
- fontWeight: '600',
- }}
- title={'类型: ' + node.data.type_label}
- >
- {node.data.type_label}
- </span>
- )}
- {/* 分数显示 - 步骤和轮次节点不显示分数 */}
- {nodeActualType !== 'step' && nodeActualType !== 'round' && (
- <span style={{
- fontSize: '11px',
- color: '#6b7280',
- fontWeight: '500',
- flexShrink: 0,
- minWidth: '35px',
- textAlign: 'right',
- }}>
- {score.toFixed(2)}
- </span>
- )}
- </div>
- {/* 域组合的来源词得分(树状视图,右对齐) */}
- {isDomainCombination && sourceSummary && (
- <div style={{
- fontSize: '10px',
- color: '#2563eb',
- lineHeight: '1.4',
- display: 'flex',
- flexDirection: 'column',
- alignItems: 'flex-end',
- gap: '2px',
- textAlign: 'right',
- }}>
- {node.data.source_word_details.map((detail, idx) => {
- const words = Array.isArray(detail.words) ? detail.words : [];
- const summary = words.map((w) => {
- const numericScore = typeof w.score === 'number' ? w.score : parseFloat(w.score || '0');
- const formattedScore = Number.isFinite(numericScore) ? numericScore.toFixed(2) : '0.00';
- return w.text + ' (' + formattedScore + ')';
- }).join(' + ');
- return (
- <span key={idx} title={summary}>
- {summary}
- </span>
- );
- })}
- </div>
- )}
- {/* 分数下划线 - 步骤和轮次节点不显示 */}
- {nodeActualType !== 'step' && nodeActualType !== 'round' && (
- <div style={{
- width: (score * 100) + '%',
- height: '2px',
- background: getScoreColor(score),
- borderRadius: '1px',
- }} />
- )}
- </div>
- </div>
- {hasChildren && !isCollapsed && (
- <div>
- {children}
- </div>
- )}
- </div>
- );
- }
- // 使用 dagre 自动布局
- function getLayoutedElements(nodes, edges, direction = 'LR') {
- console.log('🎯 Starting layout with dagre...');
- console.log('Input:', nodes.length, 'nodes,', edges.length, 'edges');
- // 检查 dagre 是否加载
- if (typeof window === 'undefined' || typeof window.dagre === 'undefined') {
- console.warn('⚠️ Dagre not loaded, using fallback layout');
- // 降级到简单布局
- const levelGroups = {};
- nodes.forEach(node => {
- const level = node.data.level || 0;
- if (!levelGroups[level]) levelGroups[level] = [];
- levelGroups[level].push(node);
- });
- Object.entries(levelGroups).forEach(([level, nodeList]) => {
- const x = parseInt(level) * 480;
- nodeList.forEach((node, index) => {
- node.position = { x, y: index * 260 };
- node.targetPosition = 'left';
- node.sourcePosition = 'right';
- });
- });
- return { nodes, edges };
- }
- try {
- const dagreGraph = new window.dagre.graphlib.Graph();
- dagreGraph.setDefaultEdgeLabel(() => ({}));
- const isHorizontal = direction === 'LR';
- dagreGraph.setGraph({
- rankdir: direction,
- nodesep: 180, // 垂直间距 - 增加以避免节点重叠
- ranksep: 360, // 水平间距 - 增加以容纳更宽的节点
- });
- // 添加节点 - 根据节点类型设置不同的尺寸
- nodes.forEach((node) => {
- let nodeWidth = 320;
- let nodeHeight = 220;
- // note 节点有轮播图,需要更大的空间
- if (node.type === 'note') {
- nodeWidth = 360;
- nodeHeight = 380; // 增加高度以容纳轮播图
- }
- // analysis 节点内容很多,需要更大的空间
- else if (node.type === 'analysis') {
- nodeWidth = 900; // 宽度足够容纳左右分栏
- nodeHeight = 600; // 高度足够容纳多张图片
- }
- dagreGraph.setNode(node.id, { width: nodeWidth, height: nodeHeight });
- });
- // 添加边
- edges.forEach((edge) => {
- dagreGraph.setEdge(edge.source, edge.target);
- });
- // 计算布局
- window.dagre.layout(dagreGraph);
- console.log('✅ Dagre layout completed');
- // 更新节点位置和 handle 位置
- nodes.forEach((node) => {
- const nodeWithPosition = dagreGraph.node(node.id);
- if (!nodeWithPosition) {
- console.warn('Node position not found for:', node.id);
- return;
- }
- node.targetPosition = isHorizontal ? 'left' : 'top';
- node.sourcePosition = isHorizontal ? 'right' : 'bottom';
- // 根据节点类型获取尺寸
- let nodeWidth = 320;
- let nodeHeight = 220;
- if (node.type === 'note') {
- nodeWidth = 360;
- nodeHeight = 380;
- }
- // 将 dagre 的中心点位置转换为 React Flow 的左上角位置
- node.position = {
- x: nodeWithPosition.x - nodeWidth / 2,
- y: nodeWithPosition.y - nodeHeight / 2,
- };
- });
- console.log('✅ Layout completed, sample node:', nodes[0]);
- return { nodes, edges };
- } catch (error) {
- console.error('❌ Error in dagre layout:', error);
- console.error('Error details:', error.message, error.stack);
- // 降级处理
- console.log('Using fallback layout...');
- const levelGroups = {};
- nodes.forEach(node => {
- const level = node.data.level || 0;
- if (!levelGroups[level]) levelGroups[level] = [];
- levelGroups[level].push(node);
- });
- Object.entries(levelGroups).forEach(([level, nodeList]) => {
- const x = parseInt(level) * 480;
- nodeList.forEach((node, index) => {
- node.position = { x, y: index * 260 };
- node.targetPosition = 'left';
- node.sourcePosition = 'right';
- });
- });
- return { nodes, edges };
- }
- }
- function transformData(data) {
- const nodes = [];
- const edges = [];
- const originalIdToCanvasId = {}; // 原始ID -> 画布ID的映射
- const canvasIdToNodeData = {}; // 避免重复创建相同的节点
- let analysisNodeCount = 0; // 用于给analysis节点添加X偏移
- // 创建节点
- Object.entries(data.nodes).forEach(([originalId, node]) => {
- // 统一处理所有类型的节点
- const nodeType = node.type || 'query';
- // 直接使用originalId作为canvasId,避免冲突
- const canvasId = originalId;
- originalIdToCanvasId[originalId] = canvasId;
- // 如果这个 canvasId 还没有创建过节点,则创建
- if (!canvasIdToNodeData[canvasId]) {
- canvasIdToNodeData[canvasId] = true;
- // 根据节点类型创建不同的数据结构
- if (nodeType === 'note' || nodeType === 'post') {
- nodes.push({
- id: canvasId,
- originalId: originalId,
- type: 'note',
- data: {
- title: node.query || node.title || '帖子',
- matchLevel: node.match_level,
- score: node.relevance_score ? node.relevance_score.toFixed(2) : '0.00',
- description: node.body_text || node.desc || '',
- isSelected: node.is_selected !== undefined ? node.is_selected : true,
- imageList: node.image_list || [],
- noteUrl: node.note_url || '',
- evaluationReason: node.evaluationReason || node.evaluation_reason || '',
- interact_info: node.interact_info || {},
- nodeType: nodeType,
- // 🆕 评估字段 (V2)
- // 知识评估
- is_knowledge: node.is_knowledge !== undefined ? node.is_knowledge : null,
- knowledge_reason: node.knowledge_reason || '',
- knowledge_score: node.knowledge_score !== undefined ? node.knowledge_score : null,
- knowledge_level: node.knowledge_level !== undefined ? node.knowledge_level : null,
- knowledge_evaluation: node.knowledge_evaluation || null,
- // 相关性评估
- post_relevance_score: node.post_relevance_score !== undefined ? node.post_relevance_score : null,
- relevance_level: node.relevance_level || '',
- relevance_reason: node.relevance_reason || '',
- relevance_conclusion: node.relevance_conclusion || '',
- relevance_evaluation: node.relevance_evaluation || null
- },
- position: { x: 0, y: 0 },
- });
- } else if (nodeType === 'analysis') {
- // AI分析节点 - 添加X偏移避免叠加
- const xOffset = analysisNodeCount * 150; // 每个节点偏移150px
- analysisNodeCount++;
- nodes.push({
- id: canvasId,
- originalId: originalId,
- type: 'analysis',
- data: {
- query: node.query || '[AI分析]',
- note_id: node.note_id,
- note_url: node.note_url,
- title: node.title || '',
- body_text: node.body_text || '',
- interact_info: node.interact_info || {},
- extraction: node.extraction || null,
- image_list: node.image_list || [],
- },
- position: { x: xOffset, y: 0 },
- });
- } else {
- // query, seg, q, search, root 等节点
- let displayTitle = node.query || originalId;
- nodes.push({
- id: canvasId,
- originalId: originalId,
- type: 'query', // 使用 query 组件渲染所有非note节点
- data: {
- title: displayTitle,
- level: node.level || 0,
- score: node.relevance_score ? node.relevance_score.toFixed(2) : '0.00',
- strategy: node.strategy || '',
- parent: node.parent_query || '',
- isSelected: node.is_selected !== undefined ? node.is_selected : true,
- evaluationReason: node.evaluationReason || node.evaluation_reason || '',
- nodeType: nodeType, // 传递实际节点类型用于样式
- searchCount: node.search_count, // search 节点特有
- totalPosts: node.total_posts, // search 节点特有
- selectedWord: node.selected_word || '', // 加词节点特有 - 显示选择的词
- scoreColor: node.scoreColor || null, // SUG节点的颜色标识
- parentQScore: node.parentQScore || 0, // 父Q得分(用于调试)
- domain_index: node.domain_index !== undefined ? node.domain_index : null, // 域索引
- domain_type: node.domain_type || '', // 域类型(如"中心名词"、"核心动作"),只有Q节点有,segment节点不显示
- segment_type: node.segment_type || '', // segment类型(只有segment节点才有)
- type_label: node.type_label || '', // 类型标签
- domains: node.domains || [], // 域索引数组(domain_combination节点特有)
- domains_str: node.domains_str || '', // 域标识字符串(如"D0,D1")
- from_segments: node.from_segments || [], // 来源segments(domain_combination节点特有)
- source_word_details: node.source_word_details || [], // 组合来源词及其得分
- source_scores: node.source_scores || [], // 扁平来源得分
- is_above_sources: node.is_above_sources || false, // 组合是否高于来源得分
- max_source_score: node.max_source_score !== undefined ? node.max_source_score : null, // 来源最高分
- item_type: node.item_type || '', // 构建下一轮节点来源类型
- is_suggestion: node.is_suggestion || false,
- suggestion_label: node.suggestion_label || '',
- },
- position: { x: 0, y: 0 },
- });
- }
- }
- });
- // 创建边 - 使用虚线样式,映射到画布ID
- data.edges.forEach((edge, index) => {
- const edgeColors = {
- '初始分词': '#10b981',
- '调用sug': '#06b6d4',
- '同义改写': '#f59e0b',
- '加词': '#3b82f6',
- '抽象改写': '#8b5cf6',
- '基于部分匹配改进': '#ec4899',
- '结果分支-抽象改写': '#a855f7',
- '结果分支-同义改写': '#fb923c',
- 'query_to_note': '#ec4899',
- };
- const color = edgeColors[edge.strategy] || edgeColors[edge.edge_type] || '#d1d5db';
- const isNoteEdge = edge.edge_type === 'query_to_note';
- edges.push({
- id: \`edge-\${index}\`,
- source: originalIdToCanvasId[edge.from], // 使用画布ID
- target: originalIdToCanvasId[edge.to], // 使用画布ID
- type: 'simplebezier', // 使用简单贝塞尔曲线
- animated: isNoteEdge,
- style: {
- stroke: color,
- strokeWidth: isNoteEdge ? 2.5 : 2,
- strokeDasharray: isNoteEdge ? '5,5' : '8,4',
- },
- markerEnd: {
- type: 'arrowclosed',
- color: color,
- width: 20,
- height: 20,
- },
- });
- });
- // 使用 dagre 自动计算布局 - 从左到右
- return getLayoutedElements(nodes, edges, 'LR');
- }
- function FlowContent() {
- // 画布使用简化数据
- const { nodes: initialNodes, edges: initialEdges } = useMemo(() => {
- console.log('🔍 Transforming data for canvas...');
- const result = transformData(data);
- console.log('✅ Canvas data:', result.nodes.length, 'nodes,', result.edges.length, 'edges');
- return result;
- }, []);
- // 目录使用完整数据(如果存在)
- const { nodes: fullNodes, edges: fullEdges } = useMemo(() => {
- if (data.fullData) {
- console.log('🔍 Transforming full data for tree directory...');
- const result = transformData(data.fullData);
- console.log('✅ Directory data:', result.nodes.length, 'nodes,', result.edges.length, 'edges');
- return result;
- }
- // 如果没有 fullData,使用简化数据
- return { nodes: initialNodes, edges: initialEdges };
- }, [initialNodes, initialEdges]);
- // 初始化:找出所有有子节点的节点,默认折叠(画布节点)
- const initialCollapsedNodes = useMemo(() => {
- const nodesWithChildren = new Set();
- initialEdges.forEach(edge => {
- nodesWithChildren.add(edge.source);
- });
- // 排除根节点(level 0),让根节点默认展开
- const rootNode = initialNodes.find(n => n.data.level === 0);
- if (rootNode) {
- nodesWithChildren.delete(rootNode.id);
- }
- return nodesWithChildren;
- }, [initialNodes, initialEdges]);
- // 树节点的折叠状态需要在树构建后初始化
- const [collapsedNodes, setCollapsedNodes] = useState(() => initialCollapsedNodes);
- const [collapsedTreeNodes, setCollapsedTreeNodes] = useState(new Set());
- const [selectedNodeId, setSelectedNodeId] = useState(null);
- const [hiddenNodes, setHiddenNodes] = useState(new Set()); // 用户手动隐藏的节点
- const [focusMode, setFocusMode] = useState(false); // 全局聚焦模式,默认关闭
- const [focusedNodeId, setFocusedNodeId] = useState(null); // 单独聚焦的节点ID
- const [sidebarWidth, setSidebarWidth] = useState(400); // 左侧目录宽度
- const [isResizing, setIsResizing] = useState(false); // 是否正在拖拽调整宽度
- // 拖拽调整侧边栏宽度的处理逻辑
- const handleMouseDown = useCallback(() => {
- setIsResizing(true);
- }, []);
- useEffect(() => {
- if (!isResizing) return;
- const handleMouseMove = (e) => {
- const newWidth = e.clientX;
- // 限制宽度范围:300px - 700px
- if (newWidth >= 300 && newWidth <= 700) {
- setSidebarWidth(newWidth);
- }
- };
- const handleMouseUp = () => {
- setIsResizing(false);
- };
- document.addEventListener('mousemove', handleMouseMove);
- document.addEventListener('mouseup', handleMouseUp);
- return () => {
- document.removeEventListener('mousemove', handleMouseMove);
- document.removeEventListener('mouseup', handleMouseUp);
- };
- }, [isResizing]);
- // 获取 React Flow 实例以控制画布
- const { setCenter, fitView } = useReactFlow();
- // 获取某个节点的所有后代节点ID
- const getDescendants = useCallback((nodeId) => {
- const descendants = new Set();
- const queue = [nodeId];
- while (queue.length > 0) {
- const current = queue.shift();
- initialEdges.forEach(edge => {
- if (edge.source === current && !descendants.has(edge.target)) {
- descendants.add(edge.target);
- queue.push(edge.target);
- }
- });
- }
- return descendants;
- }, [initialEdges]);
- // 获取直接父节点
- const getDirectParents = useCallback((nodeId) => {
- const parents = [];
- initialEdges.forEach(edge => {
- if (edge.target === nodeId) {
- parents.push(edge.source);
- }
- });
- return parents;
- }, [initialEdges]);
- // 获取直接子节点
- const getDirectChildren = useCallback((nodeId) => {
- const children = [];
- initialEdges.forEach(edge => {
- if (edge.source === nodeId) {
- children.push(edge.target);
- }
- });
- return children;
- }, [initialEdges]);
- // 切换节点折叠状态
- const toggleNodeCollapse = useCallback((nodeId) => {
- setCollapsedNodes(prev => {
- const newSet = new Set(prev);
- const descendants = getDescendants(nodeId);
- if (newSet.has(nodeId)) {
- // 展开:移除此节点,但保持其他折叠的节点
- newSet.delete(nodeId);
- } else {
- // 折叠:添加此节点
- newSet.add(nodeId);
- }
- return newSet;
- });
- }, [getDescendants]);
- // 过滤可见的节点和边,并重新计算布局
- const { nodes, edges } = useMemo(() => {
- const nodesToHide = new Set();
- // 判断使用哪个节点ID进行聚焦:优先使用单独聚焦的节点,否则使用全局聚焦模式的选中节点
- const effectiveFocusNodeId = focusedNodeId || (focusMode ? selectedNodeId : null);
- // 聚焦模式:只显示聚焦节点、其父节点和直接子节点
- if (effectiveFocusNodeId) {
- const visibleInFocus = new Set([effectiveFocusNodeId]);
- // 添加所有父节点
- initialEdges.forEach(edge => {
- if (edge.target === effectiveFocusNodeId) {
- visibleInFocus.add(edge.source);
- }
- });
- // 添加所有直接子节点
- initialEdges.forEach(edge => {
- if (edge.source === effectiveFocusNodeId) {
- visibleInFocus.add(edge.target);
- }
- });
- // 隐藏不在聚焦范围内的节点
- initialNodes.forEach(node => {
- if (!visibleInFocus.has(node.id)) {
- nodesToHide.add(node.id);
- }
- });
- } else {
- // 非聚焦模式:使用原有的折叠逻辑
- // 收集所有被折叠节点的后代
- collapsedNodes.forEach(collapsedId => {
- const descendants = getDescendants(collapsedId);
- descendants.forEach(id => nodesToHide.add(id));
- });
- }
- // 添加用户手动隐藏的节点
- hiddenNodes.forEach(id => nodesToHide.add(id));
- const visibleNodes = initialNodes
- .filter(node => !nodesToHide.has(node.id))
- .map(node => ({
- ...node,
- data: {
- ...node.data,
- isCollapsed: collapsedNodes.has(node.id),
- hasChildren: initialEdges.some(e => e.source === node.id),
- onToggleCollapse: () => toggleNodeCollapse(node.id),
- onHideSelf: () => {
- setHiddenNodes(prev => {
- const newSet = new Set(prev);
- newSet.add(node.id);
- return newSet;
- });
- },
- onFocus: () => {
- // 切换聚焦状态
- if (focusedNodeId === node.id) {
- setFocusedNodeId(null); // 如果已经聚焦,则取消聚焦
- } else {
- // 先取消之前的聚焦,然后聚焦到当前节点
- setFocusedNodeId(node.id);
- // 延迟聚焦视图到该节点
- setTimeout(() => {
- fitView({
- nodes: [{ id: node.id }],
- duration: 800,
- padding: 0.3,
- });
- }, 100);
- }
- },
- isFocused: focusedNodeId === node.id,
- isHighlighted: selectedNodeId === node.id,
- }
- }));
- const visibleEdges = initialEdges.filter(
- edge => !nodesToHide.has(edge.source) && !nodesToHide.has(edge.target)
- );
- // 重新计算布局 - 只对可见节点
- if (typeof window !== 'undefined' && typeof window.dagre !== 'undefined') {
- try {
- const dagreGraph = new window.dagre.graphlib.Graph();
- dagreGraph.setDefaultEdgeLabel(() => ({}));
- dagreGraph.setGraph({
- rankdir: 'LR',
- nodesep: 180, // 垂直间距 - 增加以避免节点重叠
- ranksep: 360, // 水平间距 - 增加以容纳更宽的节点
- });
- visibleNodes.forEach((node) => {
- let nodeWidth = 320;
- let nodeHeight = 220;
- // note 节点有轮播图,需要更大的空间
- if (node.type === 'note') {
- nodeWidth = 360;
- nodeHeight = 380;
- }
- dagreGraph.setNode(node.id, { width: nodeWidth, height: nodeHeight });
- });
- visibleEdges.forEach((edge) => {
- dagreGraph.setEdge(edge.source, edge.target);
- });
- window.dagre.layout(dagreGraph);
- visibleNodes.forEach((node) => {
- const nodeWithPosition = dagreGraph.node(node.id);
- if (nodeWithPosition) {
- // 根据节点类型获取对应的尺寸
- let nodeWidth = 320;
- let nodeHeight = 220;
- if (node.type === 'note') {
- nodeWidth = 360;
- nodeHeight = 380;
- }
- node.position = {
- x: nodeWithPosition.x - nodeWidth / 2,
- y: nodeWithPosition.y - nodeHeight / 2,
- };
- node.targetPosition = 'left';
- node.sourcePosition = 'right';
- }
- });
- console.log('✅ Dynamic layout recalculated for', visibleNodes.length, 'visible nodes');
- } catch (error) {
- console.error('❌ Error in dynamic layout:', error);
- }
- }
- return { nodes: visibleNodes, edges: visibleEdges };
- }, [initialNodes, initialEdges, collapsedNodes, hiddenNodes, focusMode, focusedNodeId, getDescendants, toggleNodeCollapse, selectedNodeId]);
- // 构建树形结构 - 允许一个节点有多个父节点
- // 为目录构建树(使用完整数据)
- const buildTree = useCallback(() => {
- // 使用完整数据构建目录树
- const nodeMap = new Map();
- fullNodes.forEach(node => {
- nodeMap.set(node.id, node);
- });
- // 为每个节点创建树节点的副本(允许多次出现)
- const createTreeNode = (nodeId, pathKey) => {
- const node = nodeMap.get(nodeId);
- if (!node) return null;
- return {
- ...node,
- treeKey: pathKey, // 唯一的树路径key,用于React key
- children: []
- };
- };
- // 构建父子关系映射:记录每个节点的所有父节点,去重边
- const parentToChildren = new Map();
- const childToParents = new Map();
- fullEdges.forEach(edge => {
- // 记录父->子关系(去重:同一个父节点到同一个子节点只记录一次)
- if (!parentToChildren.has(edge.source)) {
- parentToChildren.set(edge.source, []);
- }
- const children = parentToChildren.get(edge.source);
- if (!children.includes(edge.target)) {
- children.push(edge.target);
- }
- // 记录子->父关系(用于判断是否有多个父节点,也去重)
- if (!childToParents.has(edge.target)) {
- childToParents.set(edge.target, []);
- }
- const parents = childToParents.get(edge.target);
- if (!parents.includes(edge.source)) {
- parents.push(edge.source);
- }
- });
- // 递归构建树
- const buildSubtree = (nodeId, pathKey, visitedInPath) => {
- // 避免循环引用:如果当前路径中已经访问过这个节点,跳过
- if (visitedInPath.has(nodeId)) {
- return null;
- }
- const treeNode = createTreeNode(nodeId, pathKey);
- if (!treeNode) return null;
- const newVisitedInPath = new Set(visitedInPath);
- newVisitedInPath.add(nodeId);
- const children = parentToChildren.get(nodeId) || [];
- treeNode.children = children
- .map((childId, index) => buildSubtree(childId, pathKey + '-' + childId + '-' + index, newVisitedInPath))
- .filter(child => child !== null);
- return treeNode;
- };
- // 找出所有根节点(没有入边的节点)
- const hasParent = new Set();
- fullEdges.forEach(edge => {
- hasParent.add(edge.target);
- });
- const roots = [];
- fullNodes.forEach((node, index) => {
- if (!hasParent.has(node.id)) {
- const treeNode = buildSubtree(node.id, 'root-' + node.id + '-' + index, new Set());
- if (treeNode) roots.push(treeNode);
- }
- });
- return roots;
- }, [fullNodes, fullEdges]);
- const treeRoots = useMemo(() => buildTree(), [buildTree]);
- // 生成树形文本结构(使用完整数据)
- const generateTreeText = useCallback(() => {
- const lines = [];
- // 递归生成树形文本
- const traverse = (nodes, prefix = '', isLast = true, depth = 0) => {
- nodes.forEach((node, index) => {
- const isLastNode = index === nodes.length - 1;
- const nodeData = fullNodes.find(n => n.id === node.id)?.data || {};
- const nodeType = nodeData.nodeType || node.data?.nodeType || 'unknown';
- const title = nodeData.title || node.data?.title || node.id;
- // 优先从node.data获取score,然后从nodeData获取
- let score = null;
- if (node.data?.score !== undefined && node.data?.score !== null) {
- score = node.data.score;
- } else if (node.data?.relevance_score !== undefined && node.data?.relevance_score !== null) {
- score = node.data.relevance_score;
- } else if (nodeData.score !== undefined && nodeData.score !== null) {
- score = nodeData.score;
- } else if (nodeData.relevance_score !== undefined && nodeData.relevance_score !== null) {
- score = nodeData.relevance_score;
- }
- const strategy = nodeData.strategy || node.data?.strategy || '';
- // 构建当前行 - score可能是数字或字符串,step/round节点不显示分数
- const connector = isLastNode ? '└─' : '├─';
- let scoreText = '';
- if (nodeType !== 'step' && nodeType !== 'round' && score !== null && score !== undefined) {
- // score可能已经是字符串格式(如 "0.05"),也可能是数字
- const scoreStr = typeof score === 'number' ? score.toFixed(2) : score;
- scoreText = \` (分数: \${scoreStr})\`;
- }
- const strategyText = strategy ? \` [\${strategy}]\` : '';
- lines.push(\`\${prefix}\${connector} \${title}\${scoreText}\${strategyText}\`);
- // 递归处理子节点
- if (node.children && node.children.length > 0) {
- const childPrefix = prefix + (isLastNode ? ' ' : '│ ');
- traverse(node.children, childPrefix, isLastNode, depth + 1);
- }
- });
- };
- // 添加标题
- const rootNode = fullNodes.find(n => n.data?.level === 0);
- if (rootNode) {
- lines.push(\`📊 查询扩展树形结构\`);
- lines.push(\`原始问题: \${rootNode.data.title || rootNode.data.query}\`);
- lines.push('');
- }
- traverse(treeRoots);
- return lines.join('\\n');
- }, [treeRoots, fullNodes]);
- // 复制树形结构到剪贴板
- const copyTreeToClipboard = useCallback(async () => {
- try {
- const treeText = generateTreeText();
- await navigator.clipboard.writeText(treeText);
- alert('✅ 树形结构已复制到剪贴板!');
- } catch (err) {
- console.error('复制失败:', err);
- alert('❌ 复制失败,请手动复制');
- }
- }, [generateTreeText]);
- // 初始化树节点折叠状态
- useEffect(() => {
- const getAllTreeKeys = (nodes) => {
- const keys = new Set();
- const traverse = (node) => {
- if (node.children && node.children.length > 0) {
- // 排除根节点
- if (node.data.level !== 0) {
- keys.add(node.treeKey);
- }
- node.children.forEach(traverse);
- }
- };
- nodes.forEach(traverse);
- return keys;
- };
- setCollapsedTreeNodes(getAllTreeKeys(treeRoots));
- }, [treeRoots]);
- // 映射完整节点ID到画布简化节点ID
- const mapTreeNodeToCanvasNode = useCallback((treeNodeId) => {
- // 如果是简化模式,需要映射
- if (data.fullData) {
- // 从完整数据中找到节点
- const fullNode = fullNodes.find(n => n.id === treeNodeId);
- if (!fullNode) return treeNodeId;
- // 根据节点类型和文本找到画布上的简化节点
- const nodeText = fullNode.data.title || fullNode.data.query;
- const nodeType = fullNode.data.nodeType || fullNode.type;
- // Query类节点:找 query_xxx
- if (['q', 'seg', 'sug', 'add_word', 'query'].includes(nodeType)) {
- const canvasNode = initialNodes.find(n =>
- (n.data.title === nodeText || n.data.query === nodeText) &&
- ['query'].includes(n.type)
- );
- return canvasNode ? canvasNode.id : treeNodeId;
- }
- // Post节点:按note_id查找
- if (nodeType === 'post' || nodeType === 'note') {
- const noteId = fullNode.data.note_id;
- if (noteId) {
- const canvasNode = initialNodes.find(n => n.data.note_id === noteId);
- return canvasNode ? canvasNode.id : treeNodeId;
- }
- }
- // 其他节点类型(Round/Step等):直接返回
- return treeNodeId;
- }
- // 非简化模式,直接返回
- return treeNodeId;
- }, [data.fullData, fullNodes, initialNodes]);
- const renderTree = useCallback((treeNodes, level = 0) => {
- return treeNodes.map(node => {
- // 使用 treeKey 来区分树中的不同实例
- const isCollapsed = collapsedTreeNodes.has(node.treeKey);
- const isSelected = selectedNodeId === node.id;
- return (
- <TreeNode
- key={node.treeKey}
- node={node}
- level={level}
- isCollapsed={isCollapsed}
- isSelected={isSelected}
- onToggle={() => {
- setCollapsedTreeNodes(prev => {
- const newSet = new Set(prev);
- if (newSet.has(node.treeKey)) {
- newSet.delete(node.treeKey);
- } else {
- newSet.add(node.treeKey);
- }
- return newSet;
- });
- }}
- onSelect={() => {
- // 将目录节点ID映射到画布节点ID
- const treeNodeId = node.id;
- const canvasNodeId = mapTreeNodeToCanvasNode(treeNodeId);
- // 检查画布上是否存在这个节点
- const canvasNodeExists = initialNodes.some(n => n.id === canvasNodeId);
- if (!canvasNodeExists) {
- console.warn(\`节点 \${canvasNodeId} 在画布上不存在(可能被简化了)\`);
- return;
- }
- const nodeId = canvasNodeId;
- // 展开所有祖先节点
- const ancestorIds = [nodeId];
- const findAncestors = (id) => {
- initialEdges.forEach(edge => {
- if (edge.target === id && !ancestorIds.includes(edge.source)) {
- ancestorIds.push(edge.source);
- findAncestors(edge.source);
- }
- });
- };
- findAncestors(nodeId);
- // 如果节点或其祖先被隐藏,先恢复它们
- setHiddenNodes(prev => {
- const newSet = new Set(prev);
- ancestorIds.forEach(id => newSet.delete(id));
- return newSet;
- });
- setSelectedNodeId(nodeId);
- // 获取选中节点的直接子节点
- const childrenIds = [];
- initialEdges.forEach(edge => {
- if (edge.source === nodeId) {
- childrenIds.push(edge.target);
- }
- });
- setCollapsedNodes(prev => {
- const newSet = new Set(prev);
- // 展开所有祖先节点
- ancestorIds.forEach(id => newSet.delete(id));
- // 展开选中节点本身
- newSet.delete(nodeId);
- // 展开选中节点的直接子节点
- childrenIds.forEach(id => newSet.delete(id));
- return newSet;
- });
- // 延迟聚焦,等待节点展开和布局重新计算
- setTimeout(() => {
- fitView({
- nodes: [{ id: nodeId }],
- duration: 800,
- padding: 0.3,
- });
- }, 300);
- }}
- >
- {node.children && node.children.length > 0 && renderTree(node.children, level + 1)}
- </TreeNode>
- );
- });
- }, [collapsedTreeNodes, selectedNodeId, nodes, setCenter, initialEdges, setCollapsedNodes, fitView, mapTreeNodeToCanvasNode, initialNodes, setHiddenNodes]);
- console.log('📊 Rendering with', nodes.length, 'visible nodes and', edges.length, 'visible edges');
- if (nodes.length === 0) {
- return (
- <div style={{ padding: 50, color: 'red', fontSize: 20 }}>
- ERROR: No nodes to display!
- </div>
- );
- }
- return (
- <div style={{ width: '100vw', height: '100vh', background: '#f9fafb', display: 'flex', flexDirection: 'column' }}>
- {/* 顶部面包屑导航栏 */}
- <div style={{
- minHeight: '48px',
- maxHeight: '120px',
- background: 'white',
- borderBottom: '1px solid #e5e7eb',
- display: 'flex',
- alignItems: 'flex-start',
- padding: '12px 24px',
- zIndex: 1000,
- boxShadow: '0 1px 3px rgba(0, 0, 0, 0.05)',
- flexShrink: 0,
- overflowY: 'auto',
- }}>
- <div style={{ width: '100%' }}>
- {selectedNodeId ? (
- <div style={{ fontSize: '12px', color: '#6b7280' }}>
- {/* 面包屑导航 - 显示所有路径 */}
- {(() => {
- const selectedNode = nodes.find(n => n.id === selectedNodeId);
- if (!selectedNode) return null;
- // 找到所有从根节点到当前节点的路径
- const findAllPaths = (targetId) => {
- const paths = [];
- const buildPath = (nodeId, currentPath) => {
- const node = initialNodes.find(n => n.id === nodeId);
- if (!node) return;
- const newPath = [node, ...currentPath];
- // 找到所有父节点
- const parents = initialEdges.filter(e => e.target === nodeId).map(e => e.source);
- if (parents.length === 0) {
- // 到达根节点
- paths.push(newPath);
- } else {
- // 递归处理所有父节点
- parents.forEach(parentId => {
- buildPath(parentId, newPath);
- });
- }
- };
- buildPath(targetId, []);
- return paths;
- };
- const allPaths = findAllPaths(selectedNodeId);
- // 去重:将路径转换为字符串进行比较
- const uniquePaths = [];
- const pathStrings = new Set();
- allPaths.forEach(path => {
- const pathString = path.map(n => n.id).join('->');
- if (!pathStrings.has(pathString)) {
- pathStrings.add(pathString);
- uniquePaths.push(path);
- }
- });
- return (
- <div style={{ display: 'flex', flexDirection: 'column', gap: '6px' }}>
- {uniquePaths.map((path, pathIndex) => (
- <div key={pathIndex} style={{ display: 'flex', alignItems: 'center', gap: '6px', flexWrap: 'wrap' }}>
- {pathIndex > 0 && <span style={{ color: '#d1d5db', marginRight: '4px' }}>或</span>}
- {path.map((node, index) => {
- // 获取节点的 score、strategy 和 isSelected
- const nodeScore = node.data.score ? parseFloat(node.data.score) : 0;
- const nodeStrategy = getPrimaryStrategy(node.data); // 使用智能提取函数
- const strategyColor = getStrategyColor(nodeStrategy);
- const nodeIsSelected = node.type === 'note' ? node.data.matchLevel !== 'unsatisfied' : node.data.isSelected !== false;
- const nodeActualType = node.data.nodeType || node.type; // 获取实际节点类型
- // 计算路径节点字体颜色:根据分数提升幅度判断
- let pathFontColor = '#374151'; // 默认颜色
- if (node.type === 'note') {
- pathFontColor = node.data.matchLevel === 'unsatisfied' ? '#ef4444' : '#374151';
- } else if (node.data.seed_score !== undefined) {
- const parentScore = parseFloat(node.data.seed_score);
- const gain = nodeScore - parentScore;
- pathFontColor = gain >= 0.05 ? '#16a34a' : '#ef4444';
- } else if (index > 0) {
- const prevNode = path[index - 1];
- const prevScore = prevNode.data.score ? parseFloat(prevNode.data.score) : 0;
- const gain = nodeScore - prevScore;
- pathFontColor = gain >= 0.05 ? '#16a34a' : '#ef4444';
- } else if (node.data.isSelected === false) {
- pathFontColor = '#ef4444';
- }
- return (
- <React.Fragment key={node.id + '-' + index}>
- <span
- onClick={() => {
- const nodeId = node.id;
- // 找到所有祖先节点
- const ancestorIds = [nodeId];
- const findAncestors = (id) => {
- initialEdges.forEach(edge => {
- if (edge.target === id && !ancestorIds.includes(edge.source)) {
- ancestorIds.push(edge.source);
- findAncestors(edge.source);
- }
- });
- };
- findAncestors(nodeId);
- // 如果节点或其祖先被隐藏,先恢复它们
- setHiddenNodes(prev => {
- const newSet = new Set(prev);
- ancestorIds.forEach(id => newSet.delete(id));
- return newSet;
- });
- // 展开目录树中到达该节点的路径
- // 需要找到所有包含该节点的树路径的 treeKey,并展开它们的父节点
- setCollapsedTreeNodes(prev => {
- const newSet = new Set(prev);
- // 清空所有折叠状态,让目录树完全展开到选中节点
- // 这样可以确保选中节点在目录中可见
- return new Set();
- });
- setSelectedNodeId(nodeId);
- setTimeout(() => {
- fitView({
- nodes: [{ id: nodeId }],
- duration: 800,
- padding: 0.3,
- });
- }, 100);
- }}
- style={{
- padding: '6px 8px',
- borderRadius: '4px',
- background: 'white',
- border: index === path.length - 1 ? '2px solid #3b82f6' : '1px solid #d1d5db',
- color: '#374151',
- fontWeight: index === path.length - 1 ? '600' : '400',
- width: '180px',
- cursor: 'pointer',
- transition: 'all 0.2s ease',
- position: 'relative',
- display: 'inline-flex',
- flexDirection: 'column',
- gap: '4px',
- }}
- onMouseEnter={(e) => {
- e.currentTarget.style.opacity = '0.8';
- }}
- onMouseLeave={(e) => {
- e.currentTarget.style.opacity = '1';
- }}
- title={\`\${node.data.title || node.id} (Score: \${nodeScore.toFixed(2)}, Strategy: \${nodeStrategy}, Selected: \${nodeIsSelected})\`}
- >
- {/* 上半部分:竖线 + 图标 + 文字 + 分数 */}
- <div style={{
- display: 'flex',
- alignItems: 'center',
- gap: '6px',
- }}>
- {/* 策略类型竖线 */}
- <div style={{
- width: '3px',
- height: '16px',
- background: strategyColor,
- borderRadius: '2px',
- flexShrink: 0,
- }} />
- {/* 节点文字 - 左侧 */}
- <span style={{
- flex: 1,
- fontSize: '12px',
- color: pathFontColor,
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- whiteSpace: 'nowrap',
- }}>
- {node.data.title || node.id}
- </span>
- {/* 域标识 - 右侧,挨着分数 */}
- {(node.data.domain_type || node.data.domains_str || (node.data.domain_index !== null && node.data.domain_index !== undefined)) && (
- <span style={{
- fontSize: '12px',
- color: '#fff',
- background: '#6366f1',
- padding: '2px 5px',
- borderRadius: '3px',
- flexShrink: 0,
- fontWeight: '600',
- marginLeft: '4px',
- }}
- title={
- node.data.domain_type ? '域: ' + node.data.domain_type + ' (D' + node.data.domain_index + ')' :
- node.data.domains_str ? '域: ' + node.data.domains_str :
- '域 D' + node.data.domain_index
- }
- >
- {node.data.domain_type || node.data.domains_str || ('D' + node.data.domain_index)}
- </span>
- )}
- {/* 分数显示 - 步骤和轮次节点不显示分数 */}
- {nodeActualType !== 'step' && nodeActualType !== 'round' && (
- <span style={{
- fontSize: '10px',
- color: '#6b7280',
- fontWeight: '500',
- flexShrink: 0,
- minWidth: '35px',
- textAlign: 'right',
- marginLeft: '4px',
- }}>
- {nodeScore.toFixed(2)}
- </span>
- )}
- </div>
- {/* 分数下划线 - 步骤和轮次节点不显示 */}
- {nodeActualType !== 'step' && nodeActualType !== 'round' && (
- <div style={{
- width: (nodeScore * 100) + '%',
- height: '2px',
- background: getScoreColor(nodeScore),
- borderRadius: '1px',
- marginLeft: '9px',
- }} />
- )}
- </span>
- {index < path.length - 1 && <span style={{ color: '#9ca3af' }}>›</span>}
- </React.Fragment>
- )})}
- </div>
- ))}
- </div>
- );
- })()}
- </div>
- ) : (
- <div style={{ fontSize: '13px', color: '#9ca3af', textAlign: 'center' }}>
- 选择一个节点查看路径
- </div>
- )}
- </div>
- </div>
- {/* 主内容区:目录 + 画布 */}
- <div style={{
- display: 'flex',
- flex: 1,
- overflow: 'hidden',
- cursor: isResizing ? 'col-resize' : 'default',
- userSelect: isResizing ? 'none' : 'auto',
- }}>
- {/* 左侧目录树 */}
- <div style={{
- width: \`\${sidebarWidth}px\`,
- background: 'white',
- borderRight: '1px solid #e5e7eb',
- display: 'flex',
- flexDirection: 'column',
- flexShrink: 0,
- }}>
- <div style={{
- padding: '12px 16px',
- borderBottom: '1px solid #e5e7eb',
- display: 'flex',
- justifyContent: 'space-between',
- alignItems: 'center',
- }}>
- <span style={{
- fontWeight: '600',
- fontSize: '14px',
- color: '#111827',
- }}>
- 节点目录
- </span>
- <div style={{ display: 'flex', gap: '6px' }}>
- <button
- onClick={() => {
- setCollapsedTreeNodes(new Set());
- }}
- style={{
- fontSize: '11px',
- padding: '4px 8px',
- borderRadius: '4px',
- border: '1px solid #d1d5db',
- background: 'white',
- color: '#6b7280',
- cursor: 'pointer',
- fontWeight: '500',
- }}
- title="展开全部节点"
- >
- 全部展开
- </button>
- <button
- onClick={() => {
- const getAllTreeKeys = (nodes) => {
- const keys = new Set();
- const traverse = (node) => {
- if (node.children && node.children.length > 0) {
- keys.add(node.treeKey);
- node.children.forEach(traverse);
- }
- };
- nodes.forEach(traverse);
- return keys;
- };
- setCollapsedTreeNodes(getAllTreeKeys(treeRoots));
- }}
- style={{
- fontSize: '11px',
- padding: '4px 8px',
- borderRadius: '4px',
- border: '1px solid #d1d5db',
- background: 'white',
- color: '#6b7280',
- cursor: 'pointer',
- fontWeight: '500',
- }}
- title="折叠全部节点"
- >
- 全部折叠
- </button>
- <button
- onClick={copyTreeToClipboard}
- style={{
- fontSize: '11px',
- padding: '4px 8px',
- borderRadius: '4px',
- border: '1px solid #3b82f6',
- background: '#3b82f6',
- color: 'white',
- cursor: 'pointer',
- fontWeight: '500',
- transition: 'all 0.2s',
- }}
- onMouseEnter={(e) => e.currentTarget.style.background = '#2563eb'}
- onMouseLeave={(e) => e.currentTarget.style.background = '#3b82f6'}
- title="复制树形结构为文本格式"
- >
- 📋 复制树形结构
- </button>
- </div>
- </div>
- <div style={{
- flex: 1,
- overflowX: 'auto',
- overflowY: 'auto',
- padding: '8px',
- }}>
- <div style={{ minWidth: 'fit-content' }}>
- {renderTree(treeRoots)}
- </div>
- </div>
- </div>
- {/* 可拖拽的分隔条 */}
- <div
- onMouseDown={handleMouseDown}
- style={{
- width: '4px',
- cursor: 'col-resize',
- background: isResizing ? '#3b82f6' : 'transparent',
- transition: isResizing ? 'none' : 'background 0.2s',
- flexShrink: 0,
- position: 'relative',
- }}
- onMouseEnter={(e) => e.currentTarget.style.background = '#e5e7eb'}
- onMouseLeave={(e) => {
- if (!isResizing) e.currentTarget.style.background = 'transparent';
- }}
- >
- {/* 拖拽提示线 */}
- <div style={{
- position: 'absolute',
- top: '50%',
- left: '50%',
- transform: 'translate(-50%, -50%)',
- width: '1px',
- height: '40px',
- background: '#9ca3af',
- opacity: isResizing ? 1 : 0.3,
- }} />
- </div>
- {/* 画布区域 */}
- <div style={{ flex: 1, position: 'relative' }}>
- {/* 右侧图例 */}
- <div style={{
- position: 'absolute',
- top: '20px',
- right: '20px',
- background: 'white',
- padding: '16px',
- borderRadius: '12px',
- boxShadow: '0 4px 12px rgba(0, 0, 0, 0.08)',
- zIndex: 1000,
- maxWidth: '260px',
- border: '1px solid #e5e7eb',
- }}>
- <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '12px' }}>
- <h3 style={{ fontSize: '14px', fontWeight: '600', color: '#111827', margin: 0 }}>图例</h3>
- <button
- onClick={() => setFocusMode(!focusMode)}
- style={{
- fontSize: '11px',
- padding: '4px 8px',
- borderRadius: '4px',
- border: '1px solid',
- borderColor: focusMode ? '#3b82f6' : '#d1d5db',
- background: focusMode ? '#3b82f6' : 'white',
- color: focusMode ? 'white' : '#6b7280',
- cursor: 'pointer',
- fontWeight: '500',
- }}
- title={focusMode ? '关闭聚焦模式' : '开启聚焦模式'}
- >
- {focusMode ? '🎯 聚焦' : '📊 全图'}
- </button>
- </div>
- <div style={{ fontSize: '12px' }}>
- {/* 画布节点展开/折叠控制 */}
- <div style={{ marginBottom: '12px', paddingBottom: '12px', borderBottom: '1px solid #f3f4f6' }}>
- <div style={{ fontSize: '12px', fontWeight: '500', marginBottom: '8px', color: '#374151' }}>节点控制</div>
- <div style={{ display: 'flex', gap: '6px' }}>
- <button
- onClick={() => {
- setCollapsedNodes(new Set());
- }}
- style={{
- fontSize: '11px',
- padding: '4px 8px',
- borderRadius: '4px',
- border: '1px solid #d1d5db',
- background: 'white',
- color: '#6b7280',
- cursor: 'pointer',
- fontWeight: '500',
- flex: 1,
- }}
- title="展开画布中所有节点的子节点"
- >
- 全部展开
- </button>
- <button
- onClick={() => {
- const allNodeIds = new Set(initialNodes.map(n => n.id));
- setCollapsedNodes(allNodeIds);
- }}
- style={{
- fontSize: '11px',
- padding: '4px 8px',
- borderRadius: '4px',
- border: '1px solid #d1d5db',
- background: 'white',
- color: '#6b7280',
- cursor: 'pointer',
- fontWeight: '500',
- flex: 1,
- }}
- title="折叠画布中所有节点的子节点"
- >
- 全部折叠
- </button>
- </div>
- </div>
- <div style={{ paddingTop: '12px', borderTop: '1px solid #f3f4f6' }}>
- <div style={{ fontSize: '12px', fontWeight: '500', marginBottom: '8px', color: '#374151' }}>策略类型</div>
- <div style={{ display: 'flex', alignItems: 'center', margin: '6px 0' }}>
- <div style={{ width: '20px', height: '2px', marginRight: '8px', background: '#10b981', opacity: 0.7 }}></div>
- <span style={{ color: '#6b7280', fontSize: '11px' }}>初始分词</span>
- </div>
- <div style={{ display: 'flex', alignItems: 'center', margin: '6px 0' }}>
- <div style={{ width: '20px', height: '2px', marginRight: '8px', background: '#06b6d4', opacity: 0.7 }}></div>
- <span style={{ color: '#6b7280', fontSize: '11px' }}>调用sug</span>
- </div>
- <div style={{ display: 'flex', alignItems: 'center', margin: '6px 0' }}>
- <div style={{ width: '20px', height: '2px', marginRight: '8px', background: '#f59e0b', opacity: 0.7 }}></div>
- <span style={{ color: '#6b7280', fontSize: '11px' }}>同义改写</span>
- </div>
- <div style={{ display: 'flex', alignItems: 'center', margin: '6px 0' }}>
- <div style={{ width: '20px', height: '2px', marginRight: '8px', background: '#3b82f6', opacity: 0.7 }}></div>
- <span style={{ color: '#6b7280', fontSize: '11px' }}>加词</span>
- </div>
- <div style={{ display: 'flex', alignItems: 'center', margin: '6px 0' }}>
- <div style={{ width: '20px', height: '2px', marginRight: '8px', background: '#8b5cf6', opacity: 0.7 }}></div>
- <span style={{ color: '#6b7280', fontSize: '11px' }}>抽象改写</span>
- </div>
- <div style={{ display: 'flex', alignItems: 'center', margin: '6px 0' }}>
- <div style={{ width: '20px', height: '2px', marginRight: '8px', background: '#ec4899', opacity: 0.7 }}></div>
- <span style={{ color: '#6b7280', fontSize: '11px' }}>基于部分匹配改进</span>
- </div>
- <div style={{ display: 'flex', alignItems: 'center', margin: '6px 0' }}>
- <div style={{ width: '20px', height: '2px', marginRight: '8px', background: '#a855f7', opacity: 0.7 }}></div>
- <span style={{ color: '#6b7280', fontSize: '11px' }}>结果分支-抽象改写</span>
- </div>
- <div style={{ display: 'flex', alignItems: 'center', margin: '6px 0' }}>
- <div style={{ width: '20px', height: '2px', marginRight: '8px', background: '#fb923c', opacity: 0.7 }}></div>
- <span style={{ color: '#6b7280', fontSize: '11px' }}>结果分支-同义改写</span>
- </div>
- </div>
- <div style={{
- marginTop: '12px',
- paddingTop: '12px',
- borderTop: '1px solid #f3f4f6',
- fontSize: '11px',
- color: '#9ca3af',
- lineHeight: '1.5',
- }}>
- 💡 点击节点左上角 × 隐藏节点
- </div>
- {/* 隐藏节点列表 - 在图例内部 */}
- {hiddenNodes.size > 0 && (
- <div style={{
- marginTop: '12px',
- paddingTop: '12px',
- borderTop: '1px solid #f3f4f6',
- }}>
- <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '8px' }}>
- <h4 style={{ fontSize: '12px', fontWeight: '600', color: '#111827' }}>已隐藏节点</h4>
- <button
- onClick={() => setHiddenNodes(new Set())}
- style={{
- fontSize: '10px',
- color: '#3b82f6',
- background: 'none',
- border: 'none',
- cursor: 'pointer',
- textDecoration: 'underline',
- }}
- >
- 全部恢复
- </button>
- </div>
- <div style={{ fontSize: '12px', maxHeight: '200px', overflow: 'auto' }}>
- {Array.from(hiddenNodes).map(nodeId => {
- const node = initialNodes.find(n => n.id === nodeId);
- if (!node) return null;
- return (
- <div
- key={nodeId}
- style={{
- display: 'flex',
- justifyContent: 'space-between',
- alignItems: 'center',
- padding: '6px 8px',
- margin: '4px 0',
- background: '#f9fafb',
- borderRadius: '6px',
- fontSize: '11px',
- }}
- >
- <span
- style={{
- flex: 1,
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- whiteSpace: 'nowrap',
- color: '#374151',
- }}
- title={node.data.title || nodeId}
- >
- {node.data.title || nodeId}
- </span>
- <button
- onClick={() => {
- setHiddenNodes(prev => {
- const newSet = new Set(prev);
- newSet.delete(nodeId);
- return newSet;
- });
- }}
- style={{
- marginLeft: '8px',
- fontSize: '10px',
- color: '#10b981',
- background: 'none',
- border: 'none',
- cursor: 'pointer',
- flexShrink: 0,
- }}
- >
- 恢复
- </button>
- </div>
- );
- })}
- </div>
- </div>
- )}
- </div>
- </div>
- {/* React Flow 画布 */}
- <ReactFlow
- nodes={nodes}
- edges={edges}
- nodeTypes={nodeTypes}
- fitView
- fitViewOptions={{ padding: 0.2, duration: 500 }}
- minZoom={0.1}
- maxZoom={1.5}
- nodesDraggable={true}
- nodesConnectable={false}
- elementsSelectable={true}
- defaultEdgeOptions={{
- type: 'smoothstep',
- }}
- proOptions={{ hideAttribution: true }}
- onNodeClick={(event, clickedNode) => {
- setSelectedNodeId(clickedNode.id);
- }}
- >
- <Controls style={{ bottom: '20px', left: 'auto', right: '20px' }} />
- <Background variant="dots" gap={20} size={1} color="#e5e7eb" />
- </ReactFlow>
- </div>
- </div>
- </div>
- );
- }
- function App() {
- return (
- <ReactFlowProvider>
- <FlowContent />
- </ReactFlowProvider>
- );
- }
- const root = createRoot(document.getElementById('root'));
- root.render(<App />);
- `;
- fs.writeFileSync(reactComponentPath, reactComponent);
- // 调试:保存临时组件副本用于检查
- fs.writeFileSync(path.join(__dirname, 'debug_component.jsx'), reactComponent);
- console.log('📝 已保存临时组件副本: debug_component.jsx');
- // 使用 esbuild 打包
- console.log('🎨 Building modern visualization...');
- build({
- entryPoints: [reactComponentPath],
- bundle: true,
- outfile: path.join(__dirname, 'bundle_v2.js'),
- format: 'iife',
- loader: {
- '.css': 'css',
- },
- minify: false,
- treeShaking: false, // 禁用tree shaking
- ignoreAnnotations: true, // 忽略所有注解,防止纯函数优化
- keepNames: true, // 保留函数和变量名
- sourcemap: 'inline',
- // 强制所有 React 引用指向同一个位置,避免多副本
- alias: {
- 'react': path.join(__dirname, 'node_modules/react'),
- 'react-dom': path.join(__dirname, 'node_modules/react-dom'),
- 'react/jsx-runtime': path.join(__dirname, 'node_modules/react/jsx-runtime'),
- 'react/jsx-dev-runtime': path.join(__dirname, 'node_modules/react/jsx-dev-runtime'),
- },
- define: {
- 'process.env.NODE_ENV': '"development"' // 使用开发模式,减少优化
- },
- }).then(() => {
- // 读取打包后的 JS
- const bundleJs = fs.readFileSync(path.join(__dirname, 'bundle_v2.js'), 'utf-8');
- // 调试:检查bundle中是否包含评估UI代码
- const hasEvalCode = bundleJs.includes('知识内容') || bundleJs.includes('is_knowledge');
- console.log('📝 Bundle调试: 包含评估代码 =', hasEvalCode);
- if (hasEvalCode) {
- console.log(' ✓ 评估UI代码在bundle中');
- } else {
- console.log(' ⚠️ 评估UI代码不在bundle中,检查临时组件文件...');
- const tempContent = fs.readFileSync(reactComponentPath, 'utf-8');
- const hasTempEvalCode = tempContent.includes('知识内容');
- console.log(' 临时组件文件包含评估代码 =', hasTempEvalCode);
- }
- // 读取 CSS
- const cssPath = path.join(__dirname, 'node_modules/@xyflow/react/dist/style.css');
- const css = fs.readFileSync(cssPath, 'utf-8');
- // 生成最终 HTML
- const html = `<!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>查询图可视化</title>
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
- <script src="https://unpkg.com/dagre@0.8.5/dist/dagre.min.js"></script>
- <script>
- // 过滤特定的 React 警告
- const originalError = console.error;
- console.error = (...args) => {
- if (typeof args[0] === 'string' && args[0].includes('Each child in a list should have a unique "key" prop')) {
- return;
- }
- originalError.apply(console, args);
- };
- </script>
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
- overflow: hidden;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- #root {
- width: 100vw;
- height: 100vh;
- }
- ${css}
- /* 自定义样式覆盖 */
- .react-flow__edge-path {
- stroke-linecap: round;
- }
- .react-flow__controls {
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
- border: 1px solid #e5e7eb;
- border-radius: 8px;
- }
- .react-flow__controls-button {
- border: none;
- border-bottom: 1px solid #e5e7eb;
- }
- .react-flow__controls-button:hover {
- background: #f9fafb;
- }
- </style>
- </head>
- <body>
- <div id="root"></div>
- <script>${bundleJs}</script>
- </body>
- </html>`;
- // 调试:详细检查bundle和HTML内容
- const bundleHas知识 = bundleJs.includes('知识内容');
- const bundleHasIsKnowledge = bundleJs.includes('is_knowledge');
- const bundleHasDataIsKnowledge = bundleJs.includes('data.is_knowledge');
- console.log('📝 Bundle内容检查:');
- console.log(' 包含 "知识内容":', bundleHas知识);
- console.log(' 包含 "is_knowledge":', bundleHasIsKnowledge);
- console.log(' 包含 "data.is_knowledge":', bundleHasDataIsKnowledge);
- console.log(' Bundle长度:', bundleJs.length);
- const htmlHas知识 = html.includes('知识内容');
- const htmlHasIsKnowledge = html.includes('is_knowledge');
- const htmlHasDataIsKnowledge = html.includes('data.is_knowledge');
- console.log('📝 HTML内容检查:');
- console.log(' 包含 "知识内容":', htmlHas知识);
- console.log(' 包含 "is_knowledge":', htmlHasIsKnowledge);
- console.log(' 包含 "data.is_knowledge":', htmlHasDataIsKnowledge);
- console.log(' HTML长度:', html.length);
- // 如果bundle有但HTML没有,保存用于调试
- if ((bundleHas知识 || bundleHasDataIsKnowledge) && !htmlHas知识 && !htmlHasDataIsKnowledge) {
- console.log(' ⚠️ Bundle中有评估代码但HTML中没有!');
- fs.writeFileSync(path.join(__dirname, 'debug_bundle.js'), bundleJs);
- console.log(' 已保存 debug_bundle.js 用于调试');
- }
- // 写入输出文件
- fs.writeFileSync(outputFile, html);
- // 调试:暂时保留bundle文件用于分析
- console.log('📝 保留 bundle_v2.js 和 temp_flow_component_v2.jsx 用于调试');
- // 清理临时文件(调试期间注释掉)
- // fs.unlinkSync(reactComponentPath);
- // fs.unlinkSync(path.join(__dirname, 'bundle_v2.js'));
- console.log('✅ Visualization generated: ' + outputFile);
- console.log('📊 Nodes: ' + Object.keys(data.nodes).length);
- console.log('🔗 Edges: ' + data.edges.length);
- }).catch(error => {
- console.error('❌ Build error:', error);
- process.exit(1);
- });
|