-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: 新增treeLineShow配置和usePolyline,给树形表头扩展配置线性功能 #2995
Changes from 1 commit
4873ede
a8363ee
d4bac48
812823b
82c81ef
9aa3ba0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,166 @@ | ||||||||||||||||
import { Polyline } from '@antv/g'; | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 线的逻辑为什么是做在 react 这一层, 而不是 |
||||||||||||||||
import { Node, PivotSheet, SpreadSheet, TableSheet } from '@antv/s2'; | ||||||||||||||||
import { get } from 'lodash'; | ||||||||||||||||
|
||||||||||||||||
// 存储已绘制的连接线,用于销毁 | ||||||||||||||||
const dottedLines: Polyline[] = []; | ||||||||||||||||
|
||||||||||||||||
export const usePolyline = () => { | ||||||||||||||||
/** | ||||||||||||||||
* 销毁已存在的虚线 | ||||||||||||||||
*/ | ||||||||||||||||
const destroyDottedLines = (lines: Polyline[] = []) => { | ||||||||||||||||
while (lines.length) { | ||||||||||||||||
lines?.pop()?.destroy(); | ||||||||||||||||
} | ||||||||||||||||
}; | ||||||||||||||||
|
||||||||||||||||
/** | ||||||||||||||||
* 获取列头的高度 | ||||||||||||||||
*/ | ||||||||||||||||
const getColHeaderHeight = (chart: SpreadSheet | TableSheet | PivotSheet) => { | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 下同
Suggested change
|
||||||||||||||||
return chart.facet.getColNodes(0)?.[0]?.hierarchy?.height; | ||||||||||||||||
}; | ||||||||||||||||
|
||||||||||||||||
/** | ||||||||||||||||
* 获取滚动高度 | ||||||||||||||||
*/ | ||||||||||||||||
const getOffsetHeight = (chart: SpreadSheet | TableSheet | PivotSheet) => { | ||||||||||||||||
return chart.facet.getScrollOffset().scrollY; | ||||||||||||||||
}; | ||||||||||||||||
/** | ||||||||||||||||
* 获取树级行头嵌套深度 | ||||||||||||||||
*/ | ||||||||||||||||
const getRowHeaderTreeDepth = ( | ||||||||||||||||
chart: SpreadSheet | TableSheet | PivotSheet, | ||||||||||||||||
) => { | ||||||||||||||||
return chart.facet.getRowNodes(0)?.[0]?.hierarchy?.maxLevel; | ||||||||||||||||
}; | ||||||||||||||||
/** | ||||||||||||||||
* 获取视口高度(列头 + 数值区域) | ||||||||||||||||
*/ | ||||||||||||||||
const getViewportHeight = (chart: SpreadSheet | TableSheet | PivotSheet) => { | ||||||||||||||||
return chart.facet.panelBBox.viewportHeight + getColHeaderHeight(chart); | ||||||||||||||||
}; | ||||||||||||||||
|
||||||||||||||||
/** | ||||||||||||||||
* 获取 tree icon 的信息 | ||||||||||||||||
*/ | ||||||||||||||||
const getTreeIconCfg = (node: Node) => { | ||||||||||||||||
if ( | ||||||||||||||||
get(node, 'belongsCell.treeIcon.cfg') && | ||||||||||||||||
!get(node, 'belongsCell.treeIcon.cfg.destroyed') | ||||||||||||||||
) { | ||||||||||||||||
return get(node, 'belongsCell.treeIcon.cfg'); | ||||||||||||||||
} | ||||||||||||||||
|
||||||||||||||||
return { | ||||||||||||||||
x: 8 + node.level * 14, | ||||||||||||||||
y: node.y + node.height / 2 - 10 / 2, | ||||||||||||||||
width: 10, | ||||||||||||||||
height: 10, | ||||||||||||||||
}; | ||||||||||||||||
}; | ||||||||||||||||
|
||||||||||||||||
const drawDottedLines = (chart: SpreadSheet | TableSheet | PivotSheet) => { | ||||||||||||||||
if (chart?.options?.treeLineShow) { | ||||||||||||||||
destroyDottedLines(dottedLines); | ||||||||||||||||
const canvas = chart.container; | ||||||||||||||||
const colHeaderHeight = getColHeaderHeight(chart); | ||||||||||||||||
const viewportHeight = getViewportHeight(chart); | ||||||||||||||||
const offsetHeight = getOffsetHeight(chart); | ||||||||||||||||
|
||||||||||||||||
const rowHeaderTreeDepth = getRowHeaderTreeDepth(chart); | ||||||||||||||||
|
||||||||||||||||
for (let i = 0; i <= rowHeaderTreeDepth; i++) { | ||||||||||||||||
// 获取当前层级的节点 | ||||||||||||||||
const rowNodes = chart.facet.getRowNodes(i); | ||||||||||||||||
|
||||||||||||||||
rowNodes.forEach((rowNode) => { | ||||||||||||||||
// && | ||||||||||||||||
// 如果当前行头是叶子节点,那么就不需要画 | ||||||||||||||||
// rowNode.children.some((child) => _.get(child, 'belongsCell.treeIcon')) | ||||||||||||||||
if (rowNode.children.length) { | ||||||||||||||||
// 避免重复画线导致的颜色过深 | ||||||||||||||||
const childs: Node[] = []; | ||||||||||||||||
|
||||||||||||||||
rowNode.children.forEach((child) => { | ||||||||||||||||
const rowNodeTreeIconCfg = getTreeIconCfg(rowNode); | ||||||||||||||||
const childTreeIconCfg = getTreeIconCfg(child); | ||||||||||||||||
|
||||||||||||||||
if (rowNodeTreeIconCfg && childTreeIconCfg) { | ||||||||||||||||
const x1 = | ||||||||||||||||
rowNode.x + | ||||||||||||||||
rowNodeTreeIconCfg.x + | ||||||||||||||||
rowNodeTreeIconCfg.width / 2; | ||||||||||||||||
let y1 = | ||||||||||||||||
colHeaderHeight + | ||||||||||||||||
rowNodeTreeIconCfg.y + | ||||||||||||||||
rowNodeTreeIconCfg.height; | ||||||||||||||||
|
||||||||||||||||
if (childs?.length > 0) { | ||||||||||||||||
const preChild = childs?.pop()!; | ||||||||||||||||
const preChildTreeIconCfg = getTreeIconCfg(preChild); | ||||||||||||||||
|
||||||||||||||||
y1 = | ||||||||||||||||
colHeaderHeight + | ||||||||||||||||
preChildTreeIconCfg.y + | ||||||||||||||||
preChildTreeIconCfg.height / 2; | ||||||||||||||||
} | ||||||||||||||||
|
||||||||||||||||
childs.push(child); | ||||||||||||||||
const x2 = child.x + childTreeIconCfg.x; | ||||||||||||||||
const y2 = | ||||||||||||||||
colHeaderHeight + | ||||||||||||||||
childTreeIconCfg.y + | ||||||||||||||||
childTreeIconCfg.height / 2; | ||||||||||||||||
const points = [ | ||||||||||||||||
[ | ||||||||||||||||
x1, | ||||||||||||||||
Math.min( | ||||||||||||||||
Math.max(y1 - offsetHeight, colHeaderHeight), | ||||||||||||||||
viewportHeight, | ||||||||||||||||
), | ||||||||||||||||
], | ||||||||||||||||
[ | ||||||||||||||||
x1, | ||||||||||||||||
Math.min( | ||||||||||||||||
Math.max(y2 - offsetHeight, colHeaderHeight), | ||||||||||||||||
viewportHeight, | ||||||||||||||||
), | ||||||||||||||||
], | ||||||||||||||||
]; | ||||||||||||||||
|
||||||||||||||||
if ( | ||||||||||||||||
y2 - offsetHeight >= colHeaderHeight && | ||||||||||||||||
y2 - offsetHeight <= viewportHeight | ||||||||||||||||
) { | ||||||||||||||||
points.push([x2, y2 - offsetHeight]); | ||||||||||||||||
} | ||||||||||||||||
|
||||||||||||||||
const dottedLine = canvas.appendChild( | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 相关绘制逻辑建议放在 RowHeader (packages/s2-core/src/facet/header/row.ts) 或者 PivotFacet (packages/s2-core/src/facet/pivot-facet.ts) 里, 而不是直接在 canvas 上添加 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 之所以在canvas添加,是因为只有表格绘制完成之后,即S2Event.LAYOUT_AFTER_RENDER,才能更好的根据整个树形图的位置、层级、宽高等因素来计算绘制polyLine,而且在处理展开、收起、滚动操作时,polyLine的计算也更加准确和方便。 |
||||||||||||||||
new Polyline({ | ||||||||||||||||
style: { | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 建议主题里面增加相关配置能力, 满足个性化诉求: packages/s2-core/src/theme/index.ts S2/packages/s2-core/src/theme/index.ts Lines 531 to 537 in 598f68a
|
||||||||||||||||
points: points as any, | ||||||||||||||||
stroke: '#000', | ||||||||||||||||
lineDash: [2, 3], | ||||||||||||||||
lineWidth: 1, | ||||||||||||||||
lineJoin: 'round', | ||||||||||||||||
zIndex: 999, | ||||||||||||||||
}, | ||||||||||||||||
}), | ||||||||||||||||
); | ||||||||||||||||
|
||||||||||||||||
dottedLines.push(dottedLine); | ||||||||||||||||
} | ||||||||||||||||
}); | ||||||||||||||||
} | ||||||||||||||||
}); | ||||||||||||||||
} | ||||||||||||||||
} | ||||||||||||||||
}; | ||||||||||||||||
|
||||||||||||||||
return { | ||||||||||||||||
drawDottedLines, | ||||||||||||||||
}; | ||||||||||||||||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
另外连接线属于行头的能力, 建议放在
s2Options.style.rowCell.showTreeLine