|
@@ -5,6 +5,7 @@ import { fetchDescriptor, registerRegionDescriptorData } from "./UniTmpHelper";
|
|
|
import { TmFv3DCustom } from "./tmdet-viewer/TmFv3DCustom";
|
|
|
import { updateSiteColors } from "./tmdet-extension/tmdet-color-theme";
|
|
|
import { createRcsbFeatureViewer, TmFv1DElement } from "./tmdet-viewer/TmFv1DComponent";
|
|
|
+import { RcsbFvDOMConstants } from "../RcsbFvConstants/RcsbFvConstants";
|
|
|
|
|
|
customElements.define("tm-saguaro-1d", TmFv1DElement);
|
|
|
|
|
@@ -22,10 +23,45 @@ function createRcsb3DViewer(configParams: any) {
|
|
|
const panel3d = new TmFv3DCustom(panel3dConfig);
|
|
|
panel3d.render();
|
|
|
|
|
|
+ const sequenceViewerContainerId = panel3dConfig.sequencePanelConfig.config.customViewContainerId;
|
|
|
+ if (sequenceViewerContainerId) {
|
|
|
+ const destinationContainer = `${configParams.elementId}_${RcsbFvDOMConstants.PFV_APP_ID}`;
|
|
|
+ console.log(sequenceViewerContainerId, destinationContainer);
|
|
|
+ watchNodeChanges(destinationContainer, () => arrange(sequenceViewerContainerId, destinationContainer));
|
|
|
+ }
|
|
|
+
|
|
|
})();
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+export function arrange(childId: string, parentId: string) {
|
|
|
+ const child = document.getElementById(childId);
|
|
|
+ if (!child) {
|
|
|
+ console.warn(`DOM node '${childId}' not found`);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ document.getElementById(parentId)?.appendChild(child);
|
|
|
+ child.style.visibility = "visible";
|
|
|
+}
|
|
|
+
|
|
|
+async function watchNodeChanges(elementId: string, action: () => void, retryCount: number = 5) {
|
|
|
+
|
|
|
+ const targetNode = document.getElementById(elementId);
|
|
|
+ if (!targetNode) {
|
|
|
+ console.warn(`DOM node not found with id '${elementId}'`);
|
|
|
+ if (retryCount > 0) {
|
|
|
+ console.warn("Retrying later");
|
|
|
+ setTimeout(() => {
|
|
|
+ console.log(`Running watchNodeChanges again with '${elementId}'`);
|
|
|
+ watchNodeChanges(elementId, action, retryCount - 1);
|
|
|
+ }, 500);
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ action();
|
|
|
+}
|
|
|
+
|
|
|
async function createConfig(configParams: any): Promise<RcsbFv3DCustomInterface> {
|
|
|
const pdbEntry = configParams.pdbEntry;
|
|
|
const labelAsymId = configParams.labelAsymId;
|
|
@@ -55,6 +91,8 @@ async function createConfig(configParams: any): Promise<RcsbFv3DCustomInterface>
|
|
|
sequencePanelConfig: sequenceConfig,
|
|
|
structurePanelConfig: molstarConfig
|
|
|
};
|
|
|
+ panel3dConfig.sequencePanelConfig.config.customViewContainerId = configParams.customViewContainerId;
|
|
|
+
|
|
|
molstarConfig.structureViewerConfig.viewerProps.layoutShowSequence = true;
|
|
|
(molstarConfig as any).loadConfig.loadParams.params = {
|
|
|
preset: { modelIndex: 0 }
|