|
@@ -19,7 +19,6 @@ import { Viewer, ViewerProps } from '@rcsb/rcsb-molstar/build/src/viewer';
|
|
|
import { TmDetColorThemeProvider } from '../tmdet-extension/tmdet-color-theme';
|
|
|
import { MembraneOrientationPreset } from '../tmdet-extension/behavior';
|
|
|
import { TmDetLabelProvider } from '../tmdet-extension/labeling';
|
|
|
-import { loadInitialSnapshot, rotateCamera, storeCameraSnapshot } from '../tmdet-extension/camera';
|
|
|
import { BuiltInTrajectoryFormat } from 'molstar/lib/mol-plugin-state/formats/trajectory';
|
|
|
import { PresetProps } from '@rcsb/rcsb-molstar/build/src/viewer/helpers/preset';
|
|
|
import { Mat4 } from 'molstar/lib/commonjs/mol-math/linear-algebra';
|
|
@@ -53,21 +52,7 @@ export class TmViewer extends Viewer {
|
|
|
reprProvider?: TrajectoryHierarchyPresetProvider<P, S>;
|
|
|
params?: P;
|
|
|
}): Promise<any> {
|
|
|
- this.plugin.canvas3dInitialized.then(() => {
|
|
|
- console.log('Camera initialization started', this.plugin.canvas3d?.camera)
|
|
|
- storeCameraSnapshot(this.plugin); // store if it is not stored yet
|
|
|
- loadInitialSnapshot(this.plugin); // load if there is a stored one
|
|
|
-
|
|
|
- // INVALID DATA CELL: setTimeout(() => { this.plugin.clear(); }, 100); // clear scene after some delay
|
|
|
-
|
|
|
- setTimeout(() => { (async () => {
|
|
|
- await rotateCamera(this.plugin);
|
|
|
- })(); }, 500);
|
|
|
- });
|
|
|
-
|
|
|
- const result = super.loadStructureFromUrl(url, format, isBinary, config);
|
|
|
-
|
|
|
- return result;
|
|
|
+ return super.loadStructureFromUrl(url, format, isBinary, config);
|
|
|
}
|
|
|
|
|
|
}
|