123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563 |
- /**
- * Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- * @author Joan Segura <joan.segura@rcsb.org>
- * @author Yana Rose <yana.rose@rcsb.org>
- * @author Sebastian Bittrich <sebastian.bittrich@rcsb.org>
- */
- import { BehaviorSubject } from 'rxjs';
- import { Plugin } from 'molstar/lib/mol-plugin-ui/plugin';
- import { PluginCommands } from 'molstar/lib/mol-plugin/commands';
- import { ViewerState, CollapsedState, ModelUrlProvider, LigandUrlProvider, LigandViewerState, LoadParams } from './types';
- import { PluginSpec } from 'molstar/lib/mol-plugin/spec';
- import { ColorNames } from 'molstar/lib/mol-util/color/names';
- import * as React from 'react';
- import { ModelLoader } from './helpers/model';
- import { PresetProps } from './helpers/preset';
- import { ControlsWrapper } from './ui/controls';
- import { PluginConfig } from 'molstar/lib/mol-plugin/config';
- import { RCSBAssemblySymmetry } from 'molstar/lib/extensions/rcsb/assembly-symmetry/behavior';
- import { RCSBValidationReport } from 'molstar/lib/extensions/rcsb/validation-report/behavior';
- import { Mat4 } from 'molstar/lib/mol-math/linear-algebra';
- import { PluginState } from 'molstar/lib/mol-plugin/state';
- import { BuiltInTrajectoryFormat } from 'molstar/lib/mol-plugin-state/formats/trajectory';
- import { ObjectKeys } from 'molstar/lib/mol-util/type-helpers';
- import { PluginLayoutControlsDisplay } from 'molstar/lib/mol-plugin/layout';
- import { SuperposeColorThemeProvider } from './helpers/superpose/color';
- import { NakbColorThemeProvider } from './helpers/nakb/color';
- import { setFocusFromRange, removeComponent, clearSelection, createComponent, select } from './helpers/viewer';
- import { SelectBase, SelectRange, SelectTarget, Target } from './helpers/selection';
- import { StructureRepresentationRegistry } from 'molstar/lib/mol-repr/structure/registry';
- import { DefaultPluginUISpec, PluginUISpec } from 'molstar/lib/mol-plugin-ui/spec';
- import { PluginUIContext } from 'molstar/lib/mol-plugin-ui/context';
- import { ANVILMembraneOrientation, MembraneOrientationPreset } from 'molstar/lib/extensions/anvil/behavior';
- import { MembraneOrientationRepresentationProvider } from 'molstar/lib/extensions/anvil/representation';
- import { PluginContext } from 'molstar/lib/mol-plugin/context';
- import { TrajectoryHierarchyPresetProvider } from 'molstar/lib/mol-plugin-state/builder/structure/hierarchy-preset';
- import { AnimateStateSnapshots } from 'molstar/lib/mol-plugin-state/animation/built-in/state-snapshots';
- import { PluginFeatureDetection } from 'molstar/lib/mol-plugin/features';
- import { PresetStructureRepresentations } from 'molstar/lib/mol-plugin-state/builder/structure/representation-preset';
- import { MAQualityAssessment } from 'molstar/lib/extensions/model-archive/quality-assessment/behavior';
- import { ModelExport } from 'molstar/lib/extensions/model-export';
- import { exportHierarchy } from 'molstar/lib/extensions/model-export/export';
- import { GeometryExport } from 'molstar/lib/extensions/geo-export';
- 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';
- import { wwPDBChemicalComponentDictionary } from 'molstar/lib/extensions/wwpdb/ccd/behavior';
- import { ChemicalCompontentTrajectoryHierarchyPreset } from 'molstar/lib/extensions/wwpdb/ccd/representation';
- import { StateTransforms } from 'molstar/lib/mol-plugin-state/transforms';
- /** package version, filled in at bundle build time */
- declare const __RCSB_MOLSTAR_VERSION__: string;
- export const RCSB_MOLSTAR_VERSION = typeof __RCSB_MOLSTAR_VERSION__ != 'undefined' ? __RCSB_MOLSTAR_VERSION__ : 'none';
- /** unix time stamp, to be filled in at bundle build time */
- declare const __BUILD_TIMESTAMP__: number;
- export const BUILD_TIMESTAMP = typeof __BUILD_TIMESTAMP__ != 'undefined' ? __BUILD_TIMESTAMP__ : 'none';
- export const BUILD_DATE = new Date(BUILD_TIMESTAMP);
- const Extensions = {
- 'rcsb-assembly-symmetry': PluginSpec.Behavior(RCSBAssemblySymmetry),
- 'rcsb-validation-report': PluginSpec.Behavior(RCSBValidationReport),
- 'rscc': PluginSpec.Behavior(RSCCScore),
- 'anvil-membrane-orientation': PluginSpec.Behavior(ANVILMembraneOrientation),
- 'ma-quality-assessment': PluginSpec.Behavior(MAQualityAssessment),
- 'model-export': PluginSpec.Behavior(ModelExport),
- 'mp4-export': PluginSpec.Behavior(Mp4Export),
- 'geo-export': PluginSpec.Behavior(GeometryExport),
- };
- const DefaultViewerProps = {
- showImportControls: false,
- showSessionControls: false,
- showStructureSourceControls: true,
- showMeasurementsControls: true,
- showStrucmotifSubmitControls: true,
- showSuperpositionControls: true,
- showQuickStylesControls: false,
- showStructureComponentControls: true,
- showVolumeStreamingControls: true,
- showAssemblySymmetryControls: true,
- showValidationReportControls: true,
- showMembraneOrientationPreset: false,
- showNakbColorTheme: false,
- /**
- * Needed when running outside of sierra. If set to true, the strucmotif UI will use an absolute URL to sierra-prod.
- * Otherwise, the link will be relative on the current host.
- */
- detachedFromSierra: false,
- modelUrlProviders: [
- (pdbId: string) => ({
- url: `https://models.rcsb.org/${pdbId.toLowerCase()}.bcif`,
- format: 'mmcif',
- isBinary: true
- }),
- (pdbId: string) => ({
- url: `https://files.rcsb.org/download/${pdbId.toLowerCase()}.cif`,
- format: 'mmcif',
- isBinary: false
- })
- ] as ModelUrlProvider[],
- extensions: ObjectKeys(Extensions),
- layoutIsExpanded: false,
- layoutShowControls: true,
- layoutControlsDisplay: 'reactive' as PluginLayoutControlsDisplay,
- layoutShowSequence: true,
- layoutShowLog: false,
- viewportShowExpand: true,
- viewportShowSelectionMode: true,
- volumeStreamingServer: 'https://maps.rcsb.org/',
- backgroundColor: ColorNames.white,
- manualReset: false, // switch to 'true' for 'motif' preset
- pickingAlphaThreshold: 0.5, // lower to 0.2 to accommodate 'motif' preset
- showWelcomeToast: true,
- };
- export type ViewerProps = typeof DefaultViewerProps & { canvas3d: PartialCanvas3DProps }
- const LigandExtensions = {
- 'wwpdb-chemical-component-dictionary': PluginSpec.Behavior(wwPDBChemicalComponentDictionary),
- };
- const DefaultLigandViewerProps = {
- ligandUrlProviders: [
- (id: string) => ({
- url: id.length <= 5 ? `https://files.rcsb.org/ligands/view/${id.toUpperCase()}.cif` : `https://files.rcsb.org/birds/view/${id.toUpperCase()}.cif`,
- format: 'mmcif',
- isBinary: false
- })
- ] as LigandUrlProvider[],
- extensions: ObjectKeys(LigandExtensions),
- layoutIsExpanded: false,
- layoutShowControls: false,
- layoutControlsDisplay: 'reactive' as PluginLayoutControlsDisplay,
- layoutShowLog: false,
- viewportShowExpand: true,
- viewportShowSelectionMode: true,
- backgroundColor: ColorNames.white,
- showWelcomeToast: true,
- ignoreHydrogens: true,
- showLabels: false,
- shownCoordinateType: 'ideal' as const
- };
- export type LigandViewerProps = typeof DefaultLigandViewerProps & { canvas3d: PartialCanvas3DProps }
- export class Viewer {
- private readonly _plugin: PluginUIContext;
- private readonly modelUrlProviders: ModelUrlProvider[];
- private prevExpanded: boolean;
- constructor(elementOrId: string | HTMLElement, props: Partial<ViewerProps> = {}) {
- const element = typeof elementOrId === 'string' ? document.getElementById(elementOrId)! : elementOrId;
- if (!element) throw new Error(`Could not get element with id '${elementOrId}'`);
- const o = { ...DefaultViewerProps, ...props };
- const defaultSpec = DefaultPluginUISpec();
- const spec: PluginUISpec = {
- ...defaultSpec,
- actions: defaultSpec.actions,
- behaviors: [
- ...defaultSpec.behaviors,
- ...o.extensions.map(e => Extensions[e]),
- ],
- animations: [...defaultSpec.animations?.filter(a => a.name !== AnimateStateSnapshots.name) || []],
- layout: {
- initial: {
- isExpanded: o.layoutIsExpanded,
- showControls: o.layoutShowControls,
- controlsDisplay: o.layoutControlsDisplay,
- },
- },
- canvas3d: {
- ...defaultSpec.canvas3d,
- ...o.canvas3d,
- renderer: {
- ...defaultSpec.canvas3d?.renderer,
- ...o.canvas3d?.renderer,
- backgroundColor: o.backgroundColor,
- pickingAlphaThreshold: o.pickingAlphaThreshold
- },
- camera: {
- // desirable for alignment view so that the display doesn't "jump around" as more structures get loaded
- manualReset: o.manualReset
- }
- },
- components: {
- ...defaultSpec.components,
- controls: {
- ...defaultSpec.components?.controls,
- top: o.layoutShowSequence ? undefined : 'none',
- bottom: o.layoutShowLog ? undefined : 'none',
- left: 'none',
- right: ControlsWrapper,
- },
- remoteState: 'none',
- },
- config: [
- [PluginConfig.Viewport.ShowExpand, o.viewportShowExpand],
- [PluginConfig.Viewport.ShowSelectionMode, o.viewportShowSelectionMode],
- [PluginConfig.Viewport.ShowAnimation, false],
- [PluginConfig.VolumeStreaming.DefaultServer, o.volumeStreamingServer],
- [PluginConfig.Download.DefaultPdbProvider, 'rcsb'],
- [PluginConfig.Download.DefaultEmdbProvider, 'rcsb'],
- [PluginConfig.Structure.DefaultRepresentationPreset, PresetStructureRepresentations.auto.id],
- // wboit & webgl1 checks are needed to work properly on recent Safari versions
- [PluginConfig.General.EnableWboit, PluginFeatureDetection.preferWebGl1],
- [PluginConfig.General.PreferWebGl1, PluginFeatureDetection.preferWebGl1]
- ]
- };
- this._plugin = new PluginUIContext(spec);
- this.modelUrlProviders = o.modelUrlProviders;
- (this._plugin.customState as ViewerState) = {
- showImportControls: o.showImportControls,
- showSessionControls: o.showSessionControls,
- showStructureSourceControls: o.showStructureSourceControls,
- showMeasurementsControls: o.showMeasurementsControls,
- showStrucmotifSubmitControls: o.showStrucmotifSubmitControls,
- showSuperpositionControls: o.showSuperpositionControls,
- showQuickStylesControls: o.showQuickStylesControls,
- showStructureComponentControls: o.showStructureComponentControls,
- showVolumeStreamingControls: o.showVolumeStreamingControls,
- showAssemblySymmetryControls: o.showAssemblySymmetryControls,
- showValidationReportControls: o.showValidationReportControls,
- modelLoader: new ModelLoader(this._plugin),
- collapsed: new BehaviorSubject<CollapsedState>({
- selection: true,
- measurements: true,
- strucmotifSubmit: true,
- superposition: true,
- quickStyles: false,
- component: false,
- volume: true,
- assemblySymmetry: true,
- validationReport: true,
- custom: true,
- }),
- detachedFromSierra: o.detachedFromSierra
- };
- this._plugin.init()
- .then(async () => {
- // hide 'Membrane Orientation' preset from UI - has to happen 'before' react render, apparently
- // the corresponding behavior must be registered either way, because the 3d-view uses it (even without appearing in the UI)
- if (!o.showMembraneOrientationPreset) {
- 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 }));
- this._plugin.representation.structure.themes.colorThemeRegistry.add(SuperposeColorThemeProvider);
- if (o.showNakbColorTheme) this._plugin.representation.structure.themes.colorThemeRegistry.add(NakbColorThemeProvider);
- if (o.showWelcomeToast) {
- await PluginCommands.Toast.Show(this._plugin, {
- title: 'Welcome',
- message: `RCSB PDB Mol* Viewer ${RCSB_MOLSTAR_VERSION} [${BUILD_DATE.toLocaleString()}]`,
- key: 'toast-welcome',
- timeoutMs: 5000
- });
- }
- this.prevExpanded = this._plugin.layout.state.isExpanded;
- this._plugin.layout.events.updated.subscribe(() => this.toggleControls());
- });
- }
- get plugin() {
- return this._plugin;
- }
- pluginCall(f: (plugin: PluginContext) => void) {
- f(this.plugin);
- }
- private get customState() {
- return this._plugin.customState as ViewerState;
- }
- private toggleControls(): void {
- const currExpanded = this._plugin.layout.state.isExpanded;
- const expandedChanged = (this.prevExpanded !== currExpanded);
- if (!expandedChanged) return;
- if (currExpanded && !this._plugin.layout.state.showControls) {
- this._plugin.layout.setProps({ showControls: true });
- } else if (!currExpanded && this._plugin.layout.state.showControls) {
- this._plugin.layout.setProps({ showControls: false });
- }
- this.prevExpanded = this._plugin.layout.state.isExpanded;
- }
- resetCamera(durationMs?: number) {
- this._plugin.managers.camera.reset(undefined, durationMs);
- }
- clear() {
- const state = this._plugin.state.data;
- return PluginCommands.State.RemoveObject(this._plugin, { state, ref: state.tree.root.ref });
- }
- async loadPdbId<P, S>(pdbId: string, config?: { props?: PresetProps; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P }) {
- for (const provider of this.modelUrlProviders) {
- try {
- const p = provider(pdbId);
- return await this.customState.modelLoader.load<P, S>({ fileOrUrl: p.url, format: p.format, isBinary: p.isBinary }, config?.props, config?.matrix, config?.reprProvider, config?.params);
- } catch (e) {
- console.warn(`loading '${pdbId}' failed with '${e}', trying next model-loader-provider`);
- }
- }
- }
- async loadPdbIds<P, S>(args: { pdbId: string, config?: {props?: PresetProps; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P} }[]) {
- const out = [];
- for (const { pdbId, config } of args) {
- out.push(await this.loadPdbId(pdbId, config));
- }
- if (!this.plugin.spec.canvas3d?.camera?.manualReset) this.resetCamera(0);
- return out;
- }
- loadStructureFromUrl<P, S>(url: string, format: BuiltInTrajectoryFormat, isBinary: boolean, config?: {props?: PresetProps & { dataLabel?: string }; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P}) {
- return this.customState.modelLoader.load({ fileOrUrl: url, format, isBinary }, config?.props, config?.matrix, config?.reprProvider, config?.params);
- }
- loadSnapshotFromUrl(url: string, type: PluginState.SnapshotType) {
- return PluginCommands.State.Snapshots.OpenUrl(this._plugin, { url, type });
- }
- loadStructureFromData<P, S>(data: string | number[], format: BuiltInTrajectoryFormat, isBinary: boolean, config?: {props?: PresetProps & { dataLabel?: string }; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P}) {
- return this.customState.modelLoader.parse({ data, format, isBinary }, config?.props, config?.matrix, config?.reprProvider, config?.params);
- }
- handleResize() {
- this._plugin.layout.events.updated.next(void 0);
- }
- exportLoadedStructures(options?: { format?: 'cif' | 'bcif' }) {
- return exportHierarchy(this.plugin, options);
- }
- setFocus(target: SelectRange) {
- setFocusFromRange(this._plugin, target);
- }
- clearFocus(): void {
- this._plugin.managers.structure.focus.clear();
- }
- select(targets: SelectTarget | SelectTarget[], mode: 'select' | 'hover', modifier: 'add' | 'set') {
- select(this._plugin, targets, mode, modifier);
- }
- clearSelection(mode: 'select' | 'hover', target?: { modelId: string; } & Target) {
- clearSelection(this._plugin, mode, target);
- }
- async createComponent(label: string, targets: SelectBase | SelectTarget | SelectTarget[], representationType: StructureRepresentationRegistry.BuiltIn) {
- await createComponent(this._plugin, label, targets, representationType);
- }
- async removeComponent(componentLabel: string) {
- await removeComponent(this._plugin, componentLabel);
- }
- }
- export class LigandViewer {
- private readonly _plugin: PluginUIContext;
- private readonly ligandUrlProviders: LigandUrlProvider[];
- constructor(elementOrId: string | HTMLElement, props: Partial<LigandViewerProps> = {}) {
- const element = typeof elementOrId === 'string' ? document.getElementById(elementOrId)! : elementOrId;
- if (!element) throw new Error(`Could not get element with id '${elementOrId}'`);
- const o = { ...DefaultLigandViewerProps, ...props };
- const defaultSpec = DefaultPluginUISpec();
- const spec: PluginUISpec = {
- ...defaultSpec,
- actions: defaultSpec.actions,
- behaviors: [
- ...defaultSpec.behaviors,
- ...o.extensions.map(e => LigandExtensions[e]),
- ],
- animations: [...defaultSpec.animations?.filter(a => a.name !== AnimateStateSnapshots.name) || []],
- layout: {
- initial: {
- isExpanded: o.layoutIsExpanded,
- showControls: o.layoutShowControls,
- controlsDisplay: o.layoutControlsDisplay,
- },
- },
- canvas3d: {
- ...defaultSpec.canvas3d,
- ...o.canvas3d,
- renderer: {
- ...defaultSpec.canvas3d?.renderer,
- ...o.canvas3d?.renderer,
- backgroundColor: o.backgroundColor,
- },
- camera: {
- helper: {
- axes: {
- name: 'off', params: {}
- }
- }
- }
- },
- components: {
- ...defaultSpec.components,
- controls: {
- ...defaultSpec.components?.controls,
- top: 'none',
- bottom: o.layoutShowLog ? undefined : 'none',
- left: 'none',
- right: ControlsWrapper,
- },
- remoteState: 'none',
- },
- config: [
- [PluginConfig.VolumeStreaming.Enabled, false],
- [PluginConfig.Viewport.ShowExpand, o.viewportShowExpand],
- [PluginConfig.Viewport.ShowSelectionMode, o.viewportShowSelectionMode],
- [PluginConfig.Viewport.ShowAnimation, false],
- [PluginConfig.Download.DefaultPdbProvider, 'rcsb'],
- [PluginConfig.Download.DefaultEmdbProvider, 'rcsb'],
- [PluginConfig.Structure.DefaultRepresentationPreset, PresetStructureRepresentations.auto.id],
- // wboit & webgl1 checks are needed to work properly on recent Safari versions
- [PluginConfig.General.EnableWboit, PluginFeatureDetection.preferWebGl1],
- [PluginConfig.General.PreferWebGl1, PluginFeatureDetection.preferWebGl1]
- ]
- };
- this._plugin = new PluginUIContext(spec);
- this.ligandUrlProviders = o.ligandUrlProviders;
- (this._plugin.customState as LigandViewerState) = {
- showMeasurementsControls: true,
- showStructureComponentControls: true,
- modelLoader: new ModelLoader(this._plugin),
- collapsed: new BehaviorSubject<CollapsedState>({
- selection: true,
- measurements: true,
- strucmotifSubmit: true,
- superposition: true,
- quickStyles: true,
- component: false,
- volume: true,
- assemblySymmetry: true,
- validationReport: true,
- custom: true,
- }),
- ignoreHydrogens: o.ignoreHydrogens,
- showLabels: o.showLabels,
- shownCoordinateType: o.shownCoordinateType
- };
- this._plugin.init()
- .then(async () => {
- const root = createRoot(element);
- root.render(React.createElement(Plugin, { plugin: this._plugin }));
- if (o.showWelcomeToast) {
- await PluginCommands.Toast.Show(this._plugin, {
- title: 'Welcome',
- message: `RCSB PDB Mol* Ligand Viewer ${RCSB_MOLSTAR_VERSION} [${BUILD_DATE.toLocaleString()}]`,
- key: 'toast-welcome',
- timeoutMs: 5000
- });
- }
- // allow picking of individual atoms
- this._plugin.managers.interactivity.setProps({ granularity: 'element' });
- });
- }
- private get customState() {
- return this._plugin.customState as LigandViewerState;
- }
- clear() {
- const state = this._plugin.state.data;
- return PluginCommands.State.RemoveObject(this._plugin, { state, ref: state.tree.root.ref });
- }
- async loadLigandId(id: string) {
- for (const provider of this.ligandUrlProviders) {
- try {
- const p = provider(id);
- await this.load({ fileOrUrl: p.url, format: p.format, isBinary: p.isBinary });
- } catch (e) {
- console.warn(`loading '${id}' failed with '${e}', trying next ligand-loader-provider`);
- }
- }
- }
- private async load(p: LoadParams) {
- await this.customState.modelLoader.load<any, any>(p, undefined, undefined, ChemicalCompontentTrajectoryHierarchyPreset, { shownCoordinateType: this.customState.shownCoordinateType });
- await this.syncHydrogenState();
- for (const s of this._plugin.managers.structure.hierarchy.current.structures) {
- for (const c of s.components) {
- const isHidden = c.cell.state.isHidden === true || !this.customState.showLabels;
- await this._plugin.builders.structure.representation.addRepresentation(c.cell, { type: 'label', typeParams: { level: 'element', fontQuality: 4, borderColor: ColorNames.black, attachment: 'bottom-left', ignoreHydrogens: this.customState.ignoreHydrogens } }, { initialState: { isHidden } });
- }
- }
- }
- async toggleHydrogens() {
- this.customState.ignoreHydrogens = !this.customState.ignoreHydrogens;
- await this.syncHydrogenState();
- }
- private async syncHydrogenState() {
- const update = this._plugin.build();
- for (const s of this._plugin.managers.structure.hierarchy.current.structures) {
- for (const c of s.components) {
- for (const r of c.representations) {
- update.to(r.cell).update(StateTransforms.Representation.StructureRepresentation3D, old => {
- old.type.params.ignoreHydrogens = this.customState.ignoreHydrogens;
- });
- }
- }
- }
- await update.commit();
- }
- async toggleLabels() {
- this.customState.showLabels = !this.customState.showLabels;
- await this.syncLabelState();
- }
- private async syncLabelState() {
- for (const s of this._plugin.managers.structure.hierarchy.current.structures) {
- for (const c of s.components) {
- if (c.cell.state.isHidden) continue;
- for (const r of c.representations) {
- if (r.cell.obj?.label !== 'Label') continue;
- this._plugin.managers.structure.hierarchy.toggleVisibility([r], this.customState.showLabels ? 'show' : 'hide');
- }
- }
- }
- }
- }
|