diff options
| author | bobzel <zzzman@gmail.com> | 2022-02-22 18:05:36 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-02-22 18:05:36 -0500 |
| commit | 2ec32aee559749e1978d779705c84a8343615bfe (patch) | |
| tree | 8ed6152ed19d602b2e95fd1272dae55a82a96001 /src/client/views/collections/CollectionCarouselView.tsx | |
| parent | 8e48615d332da20b07abe8b1fa37762f665fa003 (diff) | |
improve efficiency for scenes with lots of documents by using computed functions to avoid invalidations. moved grid renderer to its own component to avoid invalidations when panning/zooming.
Diffstat (limited to 'src/client/views/collections/CollectionCarouselView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionCarouselView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionCarouselView.tsx b/src/client/views/collections/CollectionCarouselView.tsx index 6c2c27e8e..733c07031 100644 --- a/src/client/views/collections/CollectionCarouselView.tsx +++ b/src/client/views/collections/CollectionCarouselView.tsx @@ -23,7 +23,7 @@ export class CollectionCarouselView extends CollectionSubView(CarouselDocument) componentWillUnmount() { this._dropDisposer?.(); } - protected createDashEventsTarget = (ele: HTMLDivElement) => { //used for stacking and masonry view + protected createDashEventsTarget = (ele: HTMLDivElement | null) => { //used for stacking and masonry view this._dropDisposer?.(); if (ele) { this._dropDisposer = DragManager.MakeDropTarget(ele, this.onInternalDrop.bind(this), this.layoutDoc); |
