mirror of
https://github.com/568071718/creator-collection-view
synced 2025-04-18 15:18:40 +00:00
87 lines
2.8 KiB
Markdown
87 lines
2.8 KiB
Markdown
|
|
使 table-layout 支持不同高度的节点
|
|
|
|
```ts
|
|
export class YXTableLayout extends YXLayout {
|
|
|
|
/**
|
|
* 行高
|
|
*/
|
|
rowHeight: number | ((indexPath: YXIndexPath) => number) = 100
|
|
|
|
/**
|
|
* 内容上边距
|
|
*/
|
|
top: number = 0
|
|
|
|
/**
|
|
* 内容下边距
|
|
*/
|
|
bottom: number = 0
|
|
|
|
/**
|
|
* 节点之间间距
|
|
*/
|
|
spacing: number = 0
|
|
|
|
prepare(collectionView: YXCollectionView): void {
|
|
// 设置列表的滚动方向(这套布局固定为垂直方向滚动)
|
|
collectionView.scrollView.horizontal = false
|
|
collectionView.scrollView.vertical = true
|
|
if (collectionView.scrollDirection === YXCollectionView.ScrollDirection.HORIZONTAL) {
|
|
// 由于这套布局规则只支持垂直方向布局,当外部配置了水平方向滚动时这里可以给个警告
|
|
warn(`YXTableLayout 仅支持垂直方向排列`)
|
|
}
|
|
|
|
// 获取列表内一共多少数据,这里传的这个 0 表示的区,在目前不支持分区的情况可以先不用考虑这个,后面会说到
|
|
let numberOfItems = collectionView.getNumberOfItems(0)
|
|
|
|
// 清空一下布局属性数组
|
|
this.attributes = []
|
|
|
|
// 获取列表宽度
|
|
const contentWidth = collectionView.node.getComponent(UITransform).width
|
|
|
|
// 声明一个临时变量,用来记录当前所有内容的总高度
|
|
let contentHeight = this.top
|
|
|
|
// 为每条数据对应的生成一个布局属性
|
|
for (let item = 0; item < numberOfItems; item++) {
|
|
|
|
// 创建索引
|
|
let indexPath = new YXIndexPath(0, item)
|
|
|
|
// 通过索引创建一个 cell 节点的布局属性
|
|
let attr = YXLayoutAttributes.layoutAttributesForCell(indexPath)
|
|
|
|
// 通过索引获取这个节点的高度
|
|
let rowHeight = this.rowHeight instanceof Function ? this.rowHeight(indexPath) : this.rowHeight
|
|
|
|
// 确定这个节点的位置
|
|
attr.frame.x = 0
|
|
attr.frame.width = contentWidth
|
|
attr.frame.height = rowHeight
|
|
attr.frame.y = contentHeight + (item > 0 ? this.spacing : 0)
|
|
|
|
// 重要: 保存布局属性
|
|
this.attributes.push(attr)
|
|
|
|
// 更新当前内容高度
|
|
contentHeight = attr.frame.yMax
|
|
}
|
|
|
|
// 高度补一个底部间距
|
|
contentHeight = contentHeight + this.bottom
|
|
|
|
// 重要: 设置内容区域总大小,只有确定了滚动区域的大小列表才能滚动
|
|
this.contentSize = new math.Size(contentWidth, contentHeight)
|
|
}
|
|
|
|
initOffset(collectionView: YXCollectionView): void {
|
|
// 列表首次刷新时,调整一下列表的偏移位置
|
|
collectionView.scrollView.scrollToTop()
|
|
}
|
|
}
|
|
```
|
|
|