feat:add CollectionView

This commit is contained in:
pengfei.zhou
2019-11-28 13:59:55 +08:00
parent c0c908fa36
commit 0fbabd39d2
8 changed files with 221 additions and 12 deletions

View File

@@ -0,0 +1,79 @@
/*
* Copyright [2019] [Doric.Pub]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Stack } from './layouts'
import { Property, IView, Superview } from '../ui/view'
export class CollectionItem extends Stack {
/**
* Set to reuse native view
*/
@Property
identifier?: string
}
export interface ICollection extends IView {
renderItem: (index: number) => CollectionItem
itemCount: number
batchCount?: number
}
export class Collection extends Superview implements ICollection {
private cachedViews: Map<string, CollectionItem> = new Map
private ignoreDirtyCallOnce = false
allSubviews() {
return this.cachedViews.values()
}
@Property
itemCount = 0
@Property
renderItem!: (index: number) => CollectionItem
@Property
batchCount = 15
reset() {
this.cachedViews.clear()
this.itemCount = 0
}
private getItem(itemIdx: number) {
let view = this.cachedViews.get(`${itemIdx}`)
if (view === undefined) {
view = this.renderItem(itemIdx)
view.superview = this
this.cachedViews.set(`${itemIdx}`, view)
}
return view
}
isDirty() {
if (this.ignoreDirtyCallOnce) {
this.ignoreDirtyCallOnce = false
//Ignore the dirty call once.
return false
}
return super.isDirty()
}
private renderBunchedItems(start: number, length: number) {
this.ignoreDirtyCallOnce = true;
return new Array(Math.min(length, this.itemCount - start)).fill(0).map((_, idx) => {
const listItem = this.getItem(start + idx)
return listItem.toModel()
})
}
}

View File

@@ -19,4 +19,5 @@ export * from './image'
export * from './list'
export * from './slider'
export * from './scroller'
export * from './refreshable'
export * from './refreshable'
export * from './collection'