|
@@ -14,11 +14,23 @@ import {RcsbFv3DCustomAbstract} from "../../RcsbFv3D/RcsbFv3DCustomAbstract";
|
|
|
import { TmMolstarManagerFactory } from "./TmMolstarManagerFactory";
|
|
|
import { RcsbFv3DCustomInterface } from "../../RcsbFv3D/RcsbFv3DCustom";
|
|
|
|
|
|
+type ViewerPropertiesType = {viewerElement:string|HTMLElement,viewerProps:Partial<ViewerProps>};
|
|
|
+type StructureViewerType = StructureViewer<LoadMolstarInterface<unknown,unknown>,LoadMolstarReturnType,ViewerPropertiesType>;
|
|
|
+
|
|
|
export class TmFv3DCustom extends RcsbFv3DCustomAbstract<LoadMolstarInterface<unknown,unknown>,LoadMolstarReturnType,{viewerElement:string|HTMLElement,viewerProps:Partial<ViewerProps>}> {
|
|
|
|
|
|
+ protected viewer: StructureViewerType;
|
|
|
+ protected currentLoadConfig: any;
|
|
|
+
|
|
|
constructor(params: RcsbFv3DCustomInterface) {
|
|
|
+
|
|
|
const elementId: string = params.elementId ?? uniqid("TmDetFv3D_");
|
|
|
- super({
|
|
|
+ const viewer = new StructureViewer<
|
|
|
+ LoadMolstarInterface<unknown,unknown>,
|
|
|
+ LoadMolstarReturnType,
|
|
|
+ ViewerPropertiesType
|
|
|
+ >( new TmMolstarManagerFactory(getModelIdFromTrajectory) );
|
|
|
+ const config = {
|
|
|
elementId: elementId,
|
|
|
structureConfig: {
|
|
|
loadConfig: params.structurePanelConfig.loadConfig,
|
|
@@ -30,14 +42,23 @@ export class TmFv3DCustom extends RcsbFv3DCustomAbstract<LoadMolstarInterface<un
|
|
|
sequenceConfig:{
|
|
|
...params.sequencePanelConfig,
|
|
|
},
|
|
|
- structureViewer:new StructureViewer<
|
|
|
- LoadMolstarInterface<unknown,unknown>,
|
|
|
- LoadMolstarReturnType,
|
|
|
- {viewerElement:string|HTMLElement,viewerProps:Partial<ViewerProps>}
|
|
|
- >( new TmMolstarManagerFactory(getModelIdFromTrajectory) ),
|
|
|
+ structureViewer: viewer,
|
|
|
structureViewerBehaviourObserver: new NullBehaviourObserver<LoadMolstarInterface<unknown,unknown>,LoadMolstarReturnType>(),
|
|
|
cssConfig: params.cssConfig
|
|
|
- });
|
|
|
+ };
|
|
|
+
|
|
|
+ super(config);
|
|
|
+
|
|
|
+ this.viewer = viewer;
|
|
|
+ this.currentLoadConfig = config.structureConfig.loadConfig;
|
|
|
}
|
|
|
|
|
|
-}
|
|
|
+ public async updateConfig(config: { structurePanelConfig?: { loadConfig: any }; sequencePanelConfig?: Partial<any> }) {
|
|
|
+ super.updateConfig(config);
|
|
|
+
|
|
|
+ // TODO: something is wrong around clear/reset/load: shaking camera after update config
|
|
|
+ await this.viewer.clear();
|
|
|
+ this.viewer.resetCamera();
|
|
|
+ await this.viewer.load(config.structurePanelConfig?.loadConfig);
|
|
|
+ }
|
|
|
+}
|