70 lines
2.9 KiB
JavaScript
70 lines
2.9 KiB
JavaScript
|
|
function $parcel$export(e, n, v, s) {
|
|
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
}
|
|
|
|
$parcel$export(module.exports, "ReusableView", function () { return $c7afcf057887556c$export$1a5223887c560441; });
|
|
$parcel$export(module.exports, "RootView", function () { return $c7afcf057887556c$export$e21886a4eef6b29a; });
|
|
/*
|
|
* Copyright 2020 Adobe. All rights reserved.
|
|
* This file is licensed to you 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 REPRESENTATIONS
|
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
* governing permissions and limitations under the License.
|
|
*/ let $c7afcf057887556c$var$KEY = 0;
|
|
class $c7afcf057887556c$export$1a5223887c560441 {
|
|
constructor(virtualizer, viewType){
|
|
this.virtualizer = virtualizer;
|
|
this.key = ++$c7afcf057887556c$var$KEY;
|
|
this.viewType = viewType;
|
|
this.children = new Set();
|
|
this.reusableViews = new Map();
|
|
this.layoutInfo = null;
|
|
this.content = null;
|
|
this.rendered = null;
|
|
}
|
|
/**
|
|
* Prepares the view for reuse. Called just before the view is removed from the DOM.
|
|
*/ prepareForReuse() {
|
|
this.content = null;
|
|
this.rendered = null;
|
|
this.layoutInfo = null;
|
|
}
|
|
getReusableView(reuseType) {
|
|
// Reusable view queue should be FIFO so that DOM order remains consistent during scrolling.
|
|
// For example, cells within a row should remain in the same order even if the row changes contents.
|
|
// The cells within a row are removed from their parent in order. If the row is reused, the cells
|
|
// should be reused in the new row in the same order they were before.
|
|
let reusable = this.reusableViews.get(reuseType);
|
|
let view = reusable && reusable.length > 0 ? reusable.shift() : new $c7afcf057887556c$export$7a41b6f219e61634(this.virtualizer, this, reuseType);
|
|
return view;
|
|
}
|
|
reuseChild(child) {
|
|
child.prepareForReuse();
|
|
let reusable = this.reusableViews.get(child.viewType);
|
|
if (!reusable) {
|
|
reusable = [];
|
|
this.reusableViews.set(child.viewType, reusable);
|
|
}
|
|
reusable.push(child);
|
|
}
|
|
}
|
|
class $c7afcf057887556c$export$e21886a4eef6b29a extends $c7afcf057887556c$export$1a5223887c560441 {
|
|
constructor(virtualizer){
|
|
super(virtualizer, 'root');
|
|
}
|
|
}
|
|
class $c7afcf057887556c$export$7a41b6f219e61634 extends $c7afcf057887556c$export$1a5223887c560441 {
|
|
constructor(virtualizer, parent, viewType){
|
|
super(virtualizer, viewType);
|
|
this.parent = parent;
|
|
}
|
|
}
|
|
|
|
|
|
//# sourceMappingURL=ReusableView.cjs.map
|