mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 21:33:16 +08:00
e65a5f712c
* Virtualize output lines * Remove unused dependency * Remove VirtualizedLinesComponent * Pass lines as HTML nodes and use as template * Validate hook children * Refactor markup
79 lines
2.2 KiB
JavaScript
79 lines
2.2 KiB
JavaScript
import HyperList from "hyperlist";
|
|
import { getAttributeOrThrow, parseInteger } from "../lib/attribute";
|
|
|
|
/**
|
|
* A hook used to render text lines as a virtual list,
|
|
* so that only the visible lines are actually in the DOM.
|
|
*
|
|
* Configuration:
|
|
*
|
|
* * `data-max-height` - the maximum height of the element, exceeding this height enables scrolling
|
|
*
|
|
* The element should have two children:
|
|
*
|
|
* * one annotated with `data-template` attribute, it should be hidden
|
|
* and contain all the line elements as its children
|
|
*
|
|
* * one annotated with `data-content` where the visible elements are rendered,
|
|
* it should contain any styling relevant for the container
|
|
*/
|
|
const VirtualizedLines = {
|
|
mounted() {
|
|
this.props = getProps(this);
|
|
|
|
const computedStyle = window.getComputedStyle(this.el);
|
|
this.lineHeight = parseInt(computedStyle.lineHeight, 10);
|
|
|
|
this.templateElement = this.el.querySelector('[data-template]');
|
|
|
|
if (!this.templateElement) {
|
|
throw new Error('VirtualizedLines must have a child with data-template attribute');
|
|
}
|
|
|
|
this.contentElement = this.el.querySelector('[data-content]');
|
|
|
|
if (!this.templateElement) {
|
|
throw new Error('VirtualizedLines must have a child with data-content');
|
|
}
|
|
|
|
const config = hyperListConfig(
|
|
this.templateElement,
|
|
this.props.maxHeight,
|
|
this.lineHeight
|
|
);
|
|
this.virtualizedList = new HyperList(this.contentElement, config);
|
|
},
|
|
|
|
updated() {
|
|
this.props = getProps(this);
|
|
|
|
const config = hyperListConfig(
|
|
this.templateElement,
|
|
this.props.maxHeight,
|
|
this.lineHeight
|
|
);
|
|
this.virtualizedList.refresh(this.contentElement, config);
|
|
},
|
|
};
|
|
|
|
function hyperListConfig(templateElement, maxHeight, lineHeight) {
|
|
const numberOfLines = templateElement.childElementCount;
|
|
|
|
return {
|
|
height: Math.min(maxHeight, lineHeight * numberOfLines),
|
|
total: numberOfLines,
|
|
itemHeight: lineHeight,
|
|
generate: (index) => {
|
|
// Clone n-th child of the template container.
|
|
return templateElement.children.item(index).cloneNode(true);
|
|
},
|
|
};
|
|
}
|
|
|
|
function getProps(hook) {
|
|
return {
|
|
maxHeight: getAttributeOrThrow(hook.el, "data-max-height", parseInteger),
|
|
};
|
|
}
|
|
|
|
export default VirtualizedLines;
|