|
@@ -9,15 +9,8 @@
|
|
|
|
|
|
import { Viewer, ViewerProps } from '@rcsb/rcsb-molstar/build/src/viewer';
|
|
|
import { TmDetColorThemeProvider } from '../tmdet-extension/tmdet-color-theme';
|
|
|
-import { PluginBehavior } from 'molstar/lib/mol-plugin/behavior';
|
|
|
-import { PluginSpec } from 'molstar/lib/mol-plugin/spec';
|
|
|
-import { MembraneOrientationPreset, TMDETMembraneOrientation } from '../tmdet-extension/behavior';
|
|
|
-import { SyncBehaviors } from 'molstar/lib/mol-plugin/behavior/static/state';
|
|
|
-import { PluginStateObject } from 'molstar/lib/mol-plugin-state/objects';
|
|
|
-import { MembraneOrientationProvider, TmDetDescriptorCache } from '../tmdet-extension/prop';
|
|
|
-import { MembraneOrientationRepresentationProvider } from '../tmdet-extension/representation';
|
|
|
+import { MembraneOrientationPreset } from '../tmdet-extension/behavior';
|
|
|
import { TmDetLabelProvider } from '../tmdet-extension/labeling';
|
|
|
-import { registerTmDetSymmetry } from '../tmdet-extension/symmetry';
|
|
|
|
|
|
|
|
|
/** package version, filled in at bundle build time */
|
|
@@ -34,7 +27,7 @@ export class TmViewer extends Viewer {
|
|
|
constructor(elementOrId: string | HTMLElement, props: Partial<ViewerProps> = {}) {
|
|
|
console.log("TmViewer constructor");
|
|
|
super(elementOrId, props);
|
|
|
- //this.plugin.representation.structure.themes.colorThemeRegistry.add(TmDetColorThemeProvider);
|
|
|
+
|
|
|
this.initBehavior();
|
|
|
}
|
|
|
|
|
@@ -46,35 +39,6 @@ export class TmViewer extends Viewer {
|
|
|
this.plugin.representation.structure.themes.colorThemeRegistry.add(TmDetColorThemeProvider);
|
|
|
this.plugin.managers.lociLabels.addProvider(TmDetLabelProvider);
|
|
|
|
|
|
- // const behavior = PluginSpec.Behavior(TMDETMembraneOrientation);
|
|
|
- // this.plugin.customStructureProperties.register(MembraneOrientationProvider, false);
|
|
|
- // this.plugin.representation.structure.registry.add(MembraneOrientationRepresentationProvider);
|
|
|
-
|
|
|
-
|
|
|
- // // // Init custom properties 1st
|
|
|
- // let cat = PluginBehavior.getCategoryId(behavior.transformer);
|
|
|
- // console.log('Behavior', behavior);
|
|
|
- // console.log('Transformer', behavior.transformer);
|
|
|
- // if (cat === 'custom-props') {
|
|
|
- // tree.to(PluginBehavior.getCategoryId(behavior.transformer)).apply(behavior.transformer, behavior.defaultParams, { ref: behavior.transformer.id });
|
|
|
- // }
|
|
|
- // // this.plugin.state.events.object.created.subscribe(o => {
|
|
|
- // // if (!PluginStateObject.isBehavior(o.obj)) return;
|
|
|
- // // console.log({ o });
|
|
|
- // // });
|
|
|
- // //o.obj.data.register(o.ref);
|
|
|
- // //behavior.re
|
|
|
- // console.log('behavior', behavior);
|
|
|
- // console.log(PluginBehavior.Categories);
|
|
|
-
|
|
|
- // // await this.plugin.runTask(this.plugin.state.behaviors.updateTree(tree, { doNotUpdateCurrent: true, doNotLogTiming: true }));
|
|
|
-
|
|
|
- // tree = this.plugin.state.behaviors.build();
|
|
|
- // //const cat = PluginBehavior.getCategoryId(behavior.transformer);
|
|
|
- // if (cat !== 'custom-props') {
|
|
|
- // tree.to(PluginBehavior.getCategoryId(behavior.transformer)).apply(behavior.transformer, behavior.defaultParams, { ref: behavior.transformer.id });
|
|
|
- // }
|
|
|
-
|
|
|
await this.plugin.runTask(this.plugin.state.behaviors.updateTree(tree, { doNotUpdateCurrent: true, doNotLogTiming: true }));
|
|
|
}
|
|
|
|