WaterFlow容器组件是否能够提供half sticky模式?

瀑布流中会需要支持half sticky的模式,当瀑布流下滑的时候搜索框和带有“综合,销量等”的排序条会快速隐藏,当瀑布流上滑的时候,搜索框和排序条不用等到滑倒顶部就可以展示。

阅读 482
1 个回答
// index.ets
import { WaterFlowDataSource } from './WaterFlowDataSource';

@Entry
@Component
struct WaterFlowHalfSticky {
  private datasource: WaterFlowDataSource = new WaterFlowDataSource();
  private itemWidthArray: number[] = [];
  private itemHeightArray: number[] = [];
  @State colors: number[] = [0xFFC0CB, 0xDA70D6, 0x6B8E23, 0x6A5ACD, 0x00FFFF, 0x00FF7F];
  @State minSize: number = 80;
  @State maxSize: number = 180;

  aboutToAppear() {
    // 设置随机瀑布流卡片随机大小和颜色
    this.getItemSizeArray()
  }

  build() {
    Scroll() {
      Column() {
        // 搜索框
        Search()
          .width('100%')
          .height(40)
        Scroll() {
          Column() {
            // 店铺分类
            Row({ space: 10 }) {
              Text('销量')
              Text('天猫')
              Text('店铺')
            }
            .width('100%')
            .height(40)
            .backgroundColor('#60adadad')
            // 商品分类
            Tabs() {
              TabContent() {
                Column() {
                  WaterFlow() {
                    LazyForEach(this.datasource, (item: number) => {
                      FlowItem() {
                        Column() {
                          Text("N" + item).fontSize(12).height('16')
                          Image('res/waterFlowTest(' + item % 5 + ').jpg')
                            .objectFit(ImageFit.Fill)
                            .width('100%')
                            .layoutWeight(1)
                        }
                      }
                      .onAppear(() => {
                        // 即将触底时提前增加数据
                        if (item + 20 == this.datasource.totalCount()) {
                          for (let i = 0; i < 100; i++) {
                            this.datasource.AddLastItem()
                          }
                        }
                      })
                      .width('100%')
                      .height(this.itemHeightArray[item % 100])
                      .backgroundColor(this.colors[item % 5])
                    }, (item:

                  }, (item: string) => item)
                }
                .columnsTemplate("1fr 1fr")
                .columnsGap(6)
                .rowsGap(5)
                .backgroundColor(0xFAEEE0)
                .width('100%')
                .height('100%')
                .nestedScroll({
                  scrollForward: NestedScrollMode.PARENT_FIRST,
                  scrollBackward: NestedScrollMode.SELF_FIRST
                })
              }
            }
            .tabBar('综合')
            TabContent().tabBar('品牌')
            TabContent().tabBar('加厚')
          }
          .width('100%')
          .height('100%')
        }
      }
      .width('100%')
      .height('100%')
      .nestedScroll({
        scrollForward: NestedScrollMode.PARENT_FIRST,
        scrollBackward: NestedScrollMode.PARENT_FIRST
      })
    }
  }
  .width('100%')
  .height('100%')
}

// 计算flow item宽/高
getSize() {
  let ret = Math.floor(Math.random() * this.maxSize)
  return (ret > this.minSize ? ret : this.minSize)
}

// 保存flow item宽/高
getItemSizeArray() {
  for (let i = 0; i < 100; i++) {
    this.itemWidthArray.push(this.getSize())
    this.itemHeightArray.push(this.getSize())
  }
}
}

// WaterFlowDataSource.ets
// 实现IDataSource接口的对象,用于瀑布流组件加载数据
export class WaterFlowDataSource implements IDataSource {
  private dataArray: number[] = []
  private listeners: DataChangeListener[] = []

  constructor() {
    for (let i = 0; i < 100; i++) {
      this.dataArray.push(i)
    }
  }

  // 获取索引对应的数据
  public getData(index: number): number {
    return this.dataArray[index]
  }

  // 通知控制器数据重新加载
  notifyDataReload(): void {
    this.listeners.forEach(listener => {
      listener.onDataReloaded()
    })
  }

  // 通知控制器数据增加
  notifyDataAdd(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataAdd(index);
    })
  }

  // 通知控制器数据变化
  notifyDataChange(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataChange(index)
    })
  }

  // 通知控制器数据删除
  notifyDataDelete(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataDelete(index)
    })
  }

  // 通知控制器数据位置变化
  notifyDataMove(from: number, to: number): void {
    this.listeners.forEach(listener => {
      listener.onDataMove(from, to)
    })
  }

  // 获取数据总数
  public totalCount(): number {
    return this.dataArray.length
  }

  // 注册改变数据的控制器
  registerDataChangeListener(listener: DataChangeListener): void {
    if (this.listeners.indexOf(listener) < 0) {
      this.listeners.push(listener)
    }
  }

  // 注销改变数据的控制器
  unregisterDataChangeListener(listener: DataChangeListener): void {
    const pos = this.listeners.indexOf(listener)
    if (pos >= 0) {
      this.listeners.splice(pos, 1)
    }
  }

  // 增加数据
  public Add1stItem(): void {
    this.dataArray.splice(0, 0, this.dataArray.length)
    this.notifyDataAdd(0)
  }

  // 在数据尾部增加一个元素
  public AddLastItem(): void {
    this.dataArray.splice(this.dataArray.length, 0, this.dataArray.length)
    this.notifyDataAdd(this.dataArray.length - 1)
  }

  // 在指定索引位置增加一个元素
  public AddItem(index: number): void {
    this.dataArray.splice(index, 0, this.dataArray.length)
    this.notifyDataAdd(index)
  }

  // 删除第一个元素
  public Delete1stItem(): void {
    this.dataArray.splice(0, 1)
    this.notifyDataDelete(0)
  }

  // 删除第二个元素
  public Delete2ndItem(): void {
    this.dataArray.splice(1, 1)
    this.notifyDataDelete(1)
  }

  // 删除最后一个元素
  public DeleteLastItem(): void {
    this.dataArray.splice(-1, 1)
    this.notifyDataDelete(this.dataArray.length)
  }

  // 重新加载数据
  public Reload(): void {
    this.dataArray.splice(1, 1)
    this.dataArray.splice(3, 2)
    this.notifyDataReload()
  }
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进