|
@@ -14,7 +14,8 @@ type TmFv1DParams = {
|
|
|
url: string,
|
|
|
side1: string,
|
|
|
trackWidth?: number,
|
|
|
- rowTitleWidth?: number
|
|
|
+ rowTitleWidth?: number,
|
|
|
+ autoResize?: boolean
|
|
|
};
|
|
|
|
|
|
type TmFv1DState = {
|
|
@@ -42,8 +43,10 @@ export class TmFv1D extends React.Component<TmFv1DParams, TmFv1DState> {
|
|
|
trackWidth: this.props.trackWidth
|
|
|
});
|
|
|
|
|
|
- new ResizeObserver(this.resize)
|
|
|
- .observe(this.containerRef.current as Element);
|
|
|
+ if (this.props.autoResize) {
|
|
|
+ new ResizeObserver(this.resize)
|
|
|
+ .observe(this.containerRef.current as Element);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
resize(entries: ResizeObserverEntry[], observer: ResizeObserver) {
|
|
@@ -84,6 +87,12 @@ export class TmFv1DElement extends HTMLElement {
|
|
|
|| calculatedWidth) - rowTitleWidth;
|
|
|
console.log('Widths:', [ rowTitleWidth, trackWidth ]);
|
|
|
|
|
|
+ let autoResize = true;
|
|
|
+ if (this.hasAttribute("autoResize")) {
|
|
|
+ const value = this.getAttribute("autoResize");
|
|
|
+ autoResize = (value == "true");
|
|
|
+ }
|
|
|
+
|
|
|
root.render(
|
|
|
<TmFv1D
|
|
|
elementId={ elementId }
|
|
@@ -91,6 +100,7 @@ export class TmFv1DElement extends HTMLElement {
|
|
|
side1={ side1 }
|
|
|
trackWidth={ trackWidth }
|
|
|
rowTitleWidth={ rowTitleWidth }
|
|
|
+ autoResize={ autoResize }
|
|
|
/>
|
|
|
);
|
|
|
}
|