Browse Source

handle `collapsed` state of assembly symmetry UI

Sebastian Bittrich 2 years ago
parent
commit
acd25f5496
4 changed files with 11 additions and 1 deletions
  1. 1 1
      src/viewer/helpers/preset.ts
  2. 6 0
      src/viewer/index.ts
  3. 2 0
      src/viewer/types.ts
  4. 2 0
      src/viewer/ui/controls.tsx

+ 1 - 1
src/viewer/helpers/preset.ts

@@ -253,7 +253,7 @@ export const RcsbPreset = TrajectoryHierarchyPresetProvider({
 
             ViewerState(plugin).collapsed.next({
                 ...ViewerState(plugin).collapsed.value,
-                custom: false
+                assemblySymmetry: false
             });
         } else if (p.kind === 'empty') {
             console.warn('Using empty representation');

+ 6 - 0
src/viewer/index.ts

@@ -49,6 +49,7 @@ import { Mp4Export } from 'molstar/lib/extensions/mp4-export';
 import { PartialCanvas3DProps } from 'molstar/lib/mol-canvas3d/canvas3d';
 import { RSCCScore } from './helpers/rscc/behavior';
 import { createRoot } from 'react-dom/client';
+import { AssemblySymmetry } from 'molstar/lib/extensions/rcsb/assembly-symmetry/prop';
 
 /** package version, filled in at bundle build time */
 declare const __RCSB_MOLSTAR_VERSION__: string;
@@ -80,6 +81,7 @@ const DefaultViewerProps = {
     showQuickStylesControls: false,
     showStructureComponentControls: true,
     showVolumeStreamingControls: true,
+    showAssemblySymmetryControls: true,
     showValidationReportControls: true,
 
     showMembraneOrientationPreset: false,
@@ -192,6 +194,7 @@ export class Viewer {
             showQuickStylesControls: o.showQuickStylesControls,
             showStructureComponentControls: o.showStructureComponentControls,
             showVolumeStreamingControls: o.showVolumeStreamingControls,
+            showAssemblySymmetryControls: o.showAssemblySymmetryControls,
             showValidationReportControls: o.showValidationReportControls,
             modelLoader: new ModelLoader(this._plugin),
             collapsed: new BehaviorSubject<CollapsedState>({
@@ -202,6 +205,7 @@ export class Viewer {
                 quickStyles: false,
                 component: false,
                 volume: true,
+                assemblySymmetry: true,
                 validationReport: true,
                 custom: true,
             }),
@@ -216,6 +220,8 @@ export class Viewer {
                     this._plugin.builders.structure.representation.unregisterPreset(MembraneOrientationPreset);
                     this._plugin.representation.structure.registry.remove(MembraneOrientationRepresentationProvider);
                 }
+                // normally, this would be part of CustomStructureControls -- we want to manage its collapsed state individually though
+                this._plugin.customStructureControls.delete(AssemblySymmetry.Tag.Representation);
 
                 const root = createRoot(element);
                 root.render(React.createElement(Plugin, { plugin: this._plugin }));

+ 2 - 0
src/viewer/types.ts

@@ -40,6 +40,7 @@ export type CollapsedState = {
     quickStyles: boolean
     component: boolean
     volume: boolean
+    assemblySymmetry: boolean
     validationReport: boolean
     custom: boolean
 }
@@ -54,6 +55,7 @@ export interface ViewerState {
     showQuickStylesControls: boolean
     showStructureComponentControls: boolean
     showVolumeStreamingControls: boolean
+    showAssemblySymmetryControls: boolean
     showValidationReportControls: boolean
 
     modelLoader: ModelLoader

+ 2 - 0
src/viewer/ui/controls.tsx

@@ -17,6 +17,7 @@ import { SessionControls } from './session';
 import { StrucmotifSubmitControls } from './strucmotif';
 import { ValidationReportControls } from './validation';
 import { StructureQuickStylesControls } from 'molstar/lib/mol-plugin-ui/structure/quick-styles';
+import { AssemblySymmetryControls } from 'molstar/lib/extensions/rcsb/assembly-symmetry/ui';
 
 export class StructureTools extends PluginUIComponent {
     get customState() {
@@ -38,6 +39,7 @@ export class StructureTools extends PluginUIComponent {
             {this.customState.showStructureComponentControls && <StructureComponentControls initiallyCollapsed={collapsed.component} />}
             {this.customState.showVolumeStreamingControls && <VolumeStreamingControls header='Density' initiallyCollapsed={collapsed.volume} />}
             {this.customState.showValidationReportControls && <ValidationReportControls initiallyCollapsed={collapsed.validationReport} />}
+            {this.customState.showAssemblySymmetryControls && <AssemblySymmetryControls initiallyCollapsed={collapsed.assemblySymmetry} />}
             <CustomStructureControls initiallyCollapsed={collapsed.custom} />
         </>;
     }