|
@@ -1,5 +1,5 @@
|
|
import React from 'react';
|
|
import React from 'react';
|
|
-import { createRoot } from 'react-dom/client';
|
|
|
|
|
|
+import { Root, createRoot } from 'react-dom/client';
|
|
import { updateSiteColors } from '../tmdet-extension/tmdet-color-theme';
|
|
import { updateSiteColors } from '../tmdet-extension/tmdet-color-theme';
|
|
import { RcsbFv, RcsbFvBoardConfigInterface } from '@rcsb/rcsb-saguaro';
|
|
import { RcsbFv, RcsbFvBoardConfigInterface } from '@rcsb/rcsb-saguaro';
|
|
import { fetchDescriptor } from '../UniTmpHelper';
|
|
import { fetchDescriptor } from '../UniTmpHelper';
|
|
@@ -33,8 +33,6 @@ export class TmFv1D extends React.Component<TmFv1DParams, TmFv1DState> {
|
|
}
|
|
}
|
|
|
|
|
|
public async componentDidMount(): Promise<void> {
|
|
public async componentDidMount(): Promise<void> {
|
|
- console.log('PROPS', this.props);
|
|
|
|
-
|
|
|
|
await createRcsbFeatureViewer({
|
|
await createRcsbFeatureViewer({
|
|
elementId: this.props.elementId,
|
|
elementId: this.props.elementId,
|
|
url: this.props.url,
|
|
url: this.props.url,
|
|
@@ -50,13 +48,12 @@ export class TmFv1D extends React.Component<TmFv1DParams, TmFv1DState> {
|
|
}
|
|
}
|
|
|
|
|
|
resize(entries: ResizeObserverEntry[], observer: ResizeObserver) {
|
|
resize(entries: ResizeObserverEntry[], observer: ResizeObserver) {
|
|
- console.log('Observer params', [ entries, observer ]);
|
|
|
|
const currentId = entries[0].target.id;
|
|
const currentId = entries[0].target.id;
|
|
const observerEntry = entries[0];
|
|
const observerEntry = entries[0];
|
|
const featureViewer = featureViewerRegistry.get(currentId) as RcsbFv;
|
|
const featureViewer = featureViewerRegistry.get(currentId) as RcsbFv;
|
|
const boardConfig = featureViewer.getBoardConfig();
|
|
const boardConfig = featureViewer.getBoardConfig();
|
|
boardConfig.trackWidth = observerEntry.contentRect.width - boardConfig.rowTitleWidth!;
|
|
boardConfig.trackWidth = observerEntry.contentRect.width - boardConfig.rowTitleWidth!;
|
|
- resizeBoardConfigTrackWidth(boardConfig, observerEntry);
|
|
|
|
|
|
+ resizeBoardConfigTrackWidth(boardConfig, observerEntry.contentRect.width);
|
|
|
|
|
|
featureViewer.updateBoardConfig({ boardConfigData: boardConfig });
|
|
featureViewer.updateBoardConfig({ boardConfigData: boardConfig });
|
|
}
|
|
}
|
|
@@ -76,6 +73,16 @@ export class TmFv1DElement extends HTMLElement {
|
|
|
|
|
|
connectedCallback() {
|
|
connectedCallback() {
|
|
const root = createRoot(this);
|
|
const root = createRoot(this);
|
|
|
|
+ setTimeout(() => this.render(root), 1000);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ render(root: Root) {
|
|
|
|
+
|
|
|
|
+ let autoResize = true;
|
|
|
|
+ if (this.hasAttribute("autoResize")) {
|
|
|
|
+ const value = this.getAttribute("autoResize");
|
|
|
|
+ autoResize = (value == "true");
|
|
|
|
+ }
|
|
|
|
|
|
const elementId = this.getAttribute("elementId")!;
|
|
const elementId = this.getAttribute("elementId")!;
|
|
const url = this.getAttribute("url")!;
|
|
const url = this.getAttribute("url")!;
|
|
@@ -83,16 +90,12 @@ export class TmFv1DElement extends HTMLElement {
|
|
const calculatedWidth = calculateViewerWidth(this.parentElement);
|
|
const calculatedWidth = calculateViewerWidth(this.parentElement);
|
|
const rowTitleWidth = parseInt(this.getAttribute("rowTitleWidth")!)
|
|
const rowTitleWidth = parseInt(this.getAttribute("rowTitleWidth")!)
|
|
|| defaultRowTitleWidth;
|
|
|| defaultRowTitleWidth;
|
|
- const trackWidth = (parseInt(this.getAttribute("trackWidth")!)
|
|
|
|
- || calculatedWidth) - rowTitleWidth;
|
|
|
|
|
|
+ let trackWidth = !autoResize
|
|
|
|
+ ? parseInt(this.getAttribute("trackWidth")!) || (defaultViewerWidth - ULTIMATE_GAP_CONSTANT)
|
|
|
|
+ : calculatedWidth;
|
|
|
|
+ trackWidth -= rowTitleWidth;
|
|
console.log('Widths:', [ rowTitleWidth, trackWidth ]);
|
|
console.log('Widths:', [ rowTitleWidth, trackWidth ]);
|
|
|
|
|
|
- let autoResize = true;
|
|
|
|
- if (this.hasAttribute("autoResize")) {
|
|
|
|
- const value = this.getAttribute("autoResize");
|
|
|
|
- autoResize = (value == "true");
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
root.render(
|
|
root.render(
|
|
<TmFv1D
|
|
<TmFv1D
|
|
elementId={ elementId }
|
|
elementId={ elementId }
|
|
@@ -153,7 +156,7 @@ export async function createRcsbFeatureViewer(params: {
|
|
return pfv;
|
|
return pfv;
|
|
}
|
|
}
|
|
|
|
|
|
-function resizeBoardConfigTrackWidth(boardConfig: RcsbFvBoardConfigInterface, entry: ResizeObserverEntry) {
|
|
|
|
- const fullWidth = entry.contentRect.width - ULTIMATE_GAP_CONSTANT;
|
|
|
|
|
|
+function resizeBoardConfigTrackWidth(boardConfig: RcsbFvBoardConfigInterface, width: number) {
|
|
|
|
+ const fullWidth = width - ULTIMATE_GAP_CONSTANT;
|
|
boardConfig.trackWidth = fullWidth - boardConfig.rowTitleWidth!;
|
|
boardConfig.trackWidth = fullWidth - boardConfig.rowTitleWidth!;
|
|
}
|
|
}
|