index.ts 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. /**
  2. * Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. * @author Joan Segura <joan.segura@rcsb.org>
  6. * @author Yana Rose <yana.rose@rcsb.org>
  7. * @author Sebastian Bittrich <sebastian.bittrich@rcsb.org>
  8. */
  9. import { BehaviorSubject } from 'rxjs';
  10. import { Plugin } from 'molstar/lib/mol-plugin-ui/plugin';
  11. import { PluginCommands } from 'molstar/lib/mol-plugin/commands';
  12. import { ViewerState, CollapsedState, ModelUrlProvider, LigandUrlProvider, LigandViewerState, LoadParams } from './types';
  13. import { PluginSpec } from 'molstar/lib/mol-plugin/spec';
  14. import { ColorNames } from 'molstar/lib/mol-util/color/names';
  15. import * as React from 'react';
  16. import { ModelLoader } from './helpers/model';
  17. import { PresetProps } from './helpers/preset';
  18. import { ControlsWrapper } from './ui/controls';
  19. import { PluginConfig } from 'molstar/lib/mol-plugin/config';
  20. import { RCSBAssemblySymmetry } from 'molstar/lib/extensions/rcsb/assembly-symmetry/behavior';
  21. import { RCSBValidationReport } from 'molstar/lib/extensions/rcsb/validation-report/behavior';
  22. import { Mat4 } from 'molstar/lib/mol-math/linear-algebra';
  23. import { PluginState } from 'molstar/lib/mol-plugin/state';
  24. import { BuiltInTrajectoryFormat } from 'molstar/lib/mol-plugin-state/formats/trajectory';
  25. import { ObjectKeys } from 'molstar/lib/mol-util/type-helpers';
  26. import { PluginLayoutControlsDisplay } from 'molstar/lib/mol-plugin/layout';
  27. import { SuperposeColorThemeProvider } from './helpers/superpose/color';
  28. import { NakbColorThemeProvider } from './helpers/nakb/color';
  29. import { setFocusFromRange, removeComponent, clearSelection, createComponent, select } from './helpers/viewer';
  30. import { SelectBase, SelectRange, SelectTarget, Target } from './helpers/selection';
  31. import { StructureRepresentationRegistry } from 'molstar/lib/mol-repr/structure/registry';
  32. import { DefaultPluginUISpec, PluginUISpec } from 'molstar/lib/mol-plugin-ui/spec';
  33. import { PluginUIContext } from 'molstar/lib/mol-plugin-ui/context';
  34. import { ANVILMembraneOrientation, MembraneOrientationPreset } from 'molstar/lib/extensions/anvil/behavior';
  35. import { MembraneOrientationRepresentationProvider } from 'molstar/lib/extensions/anvil/representation';
  36. import { PluginContext } from 'molstar/lib/mol-plugin/context';
  37. import { TrajectoryHierarchyPresetProvider } from 'molstar/lib/mol-plugin-state/builder/structure/hierarchy-preset';
  38. import { AnimateStateSnapshots } from 'molstar/lib/mol-plugin-state/animation/built-in/state-snapshots';
  39. import { PluginFeatureDetection } from 'molstar/lib/mol-plugin/features';
  40. import { PresetStructureRepresentations } from 'molstar/lib/mol-plugin-state/builder/structure/representation-preset';
  41. import { MAQualityAssessment } from 'molstar/lib/extensions/model-archive/quality-assessment/behavior';
  42. import { ModelExport } from 'molstar/lib/extensions/model-export';
  43. import { exportHierarchy } from 'molstar/lib/extensions/model-export/export';
  44. import { GeometryExport } from 'molstar/lib/extensions/geo-export';
  45. import { Mp4Export } from 'molstar/lib/extensions/mp4-export';
  46. import { PartialCanvas3DProps } from 'molstar/lib/mol-canvas3d/canvas3d';
  47. import { RSCCScore } from './helpers/rscc/behavior';
  48. import { createRoot } from 'react-dom/client';
  49. import { AssemblySymmetry } from 'molstar/lib/extensions/rcsb/assembly-symmetry/prop';
  50. import { wwPDBChemicalComponentDictionary } from 'molstar/lib/extensions/wwpdb/ccd/behavior';
  51. import { ChemicalCompontentTrajectoryHierarchyPreset } from 'molstar/lib/extensions/wwpdb/ccd/representation';
  52. import { StateTransforms } from 'molstar/lib/mol-plugin-state/transforms';
  53. /** package version, filled in at bundle build time */
  54. declare const __RCSB_MOLSTAR_VERSION__: string;
  55. export const RCSB_MOLSTAR_VERSION = typeof __RCSB_MOLSTAR_VERSION__ != 'undefined' ? __RCSB_MOLSTAR_VERSION__ : 'none';
  56. /** unix time stamp, to be filled in at bundle build time */
  57. declare const __BUILD_TIMESTAMP__: number;
  58. export const BUILD_TIMESTAMP = typeof __BUILD_TIMESTAMP__ != 'undefined' ? __BUILD_TIMESTAMP__ : 'none';
  59. export const BUILD_DATE = new Date(BUILD_TIMESTAMP);
  60. const Extensions = {
  61. 'rcsb-assembly-symmetry': PluginSpec.Behavior(RCSBAssemblySymmetry),
  62. 'rcsb-validation-report': PluginSpec.Behavior(RCSBValidationReport),
  63. 'rscc': PluginSpec.Behavior(RSCCScore),
  64. 'anvil-membrane-orientation': PluginSpec.Behavior(ANVILMembraneOrientation),
  65. 'ma-quality-assessment': PluginSpec.Behavior(MAQualityAssessment),
  66. 'model-export': PluginSpec.Behavior(ModelExport),
  67. 'mp4-export': PluginSpec.Behavior(Mp4Export),
  68. 'geo-export': PluginSpec.Behavior(GeometryExport),
  69. };
  70. const DefaultViewerProps = {
  71. showImportControls: false,
  72. showSessionControls: false,
  73. showStructureSourceControls: true,
  74. showMeasurementsControls: true,
  75. showStrucmotifSubmitControls: true,
  76. showSuperpositionControls: true,
  77. showQuickStylesControls: false,
  78. showStructureComponentControls: true,
  79. showVolumeStreamingControls: true,
  80. showAssemblySymmetryControls: true,
  81. showValidationReportControls: true,
  82. showMembraneOrientationPreset: false,
  83. showNakbColorTheme: false,
  84. /**
  85. * Needed when running outside of sierra. If set to true, the strucmotif UI will use an absolute URL to sierra-prod.
  86. * Otherwise, the link will be relative on the current host.
  87. */
  88. detachedFromSierra: false,
  89. modelUrlProviders: [
  90. (pdbId: string) => ({
  91. url: `https://models.rcsb.org/${pdbId.toLowerCase()}.bcif`,
  92. format: 'mmcif',
  93. isBinary: true
  94. }),
  95. (pdbId: string) => ({
  96. url: `https://files.rcsb.org/download/${pdbId.toLowerCase()}.cif`,
  97. format: 'mmcif',
  98. isBinary: false
  99. })
  100. ] as ModelUrlProvider[],
  101. extensions: ObjectKeys(Extensions),
  102. layoutIsExpanded: false,
  103. layoutShowControls: true,
  104. layoutControlsDisplay: 'reactive' as PluginLayoutControlsDisplay,
  105. layoutShowSequence: true,
  106. layoutShowLog: false,
  107. viewportShowExpand: true,
  108. viewportShowSelectionMode: true,
  109. volumeStreamingServer: 'https://maps.rcsb.org/',
  110. backgroundColor: ColorNames.white,
  111. manualReset: false, // switch to 'true' for 'motif' preset
  112. pickingAlphaThreshold: 0.5, // lower to 0.2 to accommodate 'motif' preset
  113. showWelcomeToast: true,
  114. };
  115. export type ViewerProps = typeof DefaultViewerProps & { canvas3d: PartialCanvas3DProps }
  116. const LigandExtensions = {
  117. 'wwpdb-chemical-component-dictionary': PluginSpec.Behavior(wwPDBChemicalComponentDictionary),
  118. };
  119. const DefaultLigandViewerProps = {
  120. ligandUrlProviders: [
  121. (id: string) => ({
  122. url: id.length <= 5 ? `https://files.rcsb.org/ligands/view/${id.toUpperCase()}.cif` : `https://files.rcsb.org/birds/view/${id.toUpperCase()}.cif`,
  123. format: 'mmcif',
  124. isBinary: false
  125. })
  126. ] as LigandUrlProvider[],
  127. extensions: ObjectKeys(LigandExtensions),
  128. layoutIsExpanded: false,
  129. layoutShowControls: false,
  130. layoutControlsDisplay: 'reactive' as PluginLayoutControlsDisplay,
  131. layoutShowLog: false,
  132. viewportShowExpand: true,
  133. viewportShowSelectionMode: true,
  134. backgroundColor: ColorNames.white,
  135. showWelcomeToast: true,
  136. ignoreHydrogens: true,
  137. showLabels: false,
  138. shownCoordinateType: 'ideal' as const
  139. };
  140. export type LigandViewerProps = typeof DefaultLigandViewerProps & { canvas3d: PartialCanvas3DProps }
  141. export class Viewer {
  142. private readonly _plugin: PluginUIContext;
  143. private readonly modelUrlProviders: ModelUrlProvider[];
  144. private prevExpanded: boolean;
  145. constructor(elementOrId: string | HTMLElement, props: Partial<ViewerProps> = {}) {
  146. const element = typeof elementOrId === 'string' ? document.getElementById(elementOrId)! : elementOrId;
  147. if (!element) throw new Error(`Could not get element with id '${elementOrId}'`);
  148. const o = { ...DefaultViewerProps, ...props };
  149. const defaultSpec = DefaultPluginUISpec();
  150. const spec: PluginUISpec = {
  151. ...defaultSpec,
  152. actions: defaultSpec.actions,
  153. behaviors: [
  154. ...defaultSpec.behaviors,
  155. ...o.extensions.map(e => Extensions[e]),
  156. ],
  157. animations: [...defaultSpec.animations?.filter(a => a.name !== AnimateStateSnapshots.name) || []],
  158. layout: {
  159. initial: {
  160. isExpanded: o.layoutIsExpanded,
  161. showControls: o.layoutShowControls,
  162. controlsDisplay: o.layoutControlsDisplay,
  163. },
  164. },
  165. canvas3d: {
  166. ...defaultSpec.canvas3d,
  167. ...o.canvas3d,
  168. renderer: {
  169. ...defaultSpec.canvas3d?.renderer,
  170. ...o.canvas3d?.renderer,
  171. backgroundColor: o.backgroundColor,
  172. pickingAlphaThreshold: o.pickingAlphaThreshold
  173. },
  174. camera: {
  175. // desirable for alignment view so that the display doesn't "jump around" as more structures get loaded
  176. manualReset: o.manualReset
  177. }
  178. },
  179. components: {
  180. ...defaultSpec.components,
  181. controls: {
  182. ...defaultSpec.components?.controls,
  183. top: o.layoutShowSequence ? undefined : 'none',
  184. bottom: o.layoutShowLog ? undefined : 'none',
  185. left: 'none',
  186. right: ControlsWrapper,
  187. },
  188. remoteState: 'none',
  189. },
  190. config: [
  191. [PluginConfig.Viewport.ShowExpand, o.viewportShowExpand],
  192. [PluginConfig.Viewport.ShowSelectionMode, o.viewportShowSelectionMode],
  193. [PluginConfig.Viewport.ShowAnimation, false],
  194. [PluginConfig.VolumeStreaming.DefaultServer, o.volumeStreamingServer],
  195. [PluginConfig.Download.DefaultPdbProvider, 'rcsb'],
  196. [PluginConfig.Download.DefaultEmdbProvider, 'rcsb'],
  197. [PluginConfig.Structure.DefaultRepresentationPreset, PresetStructureRepresentations.auto.id],
  198. // wboit & webgl1 checks are needed to work properly on recent Safari versions
  199. [PluginConfig.General.EnableWboit, PluginFeatureDetection.preferWebGl1],
  200. [PluginConfig.General.PreferWebGl1, PluginFeatureDetection.preferWebGl1]
  201. ]
  202. };
  203. this._plugin = new PluginUIContext(spec);
  204. this.modelUrlProviders = o.modelUrlProviders;
  205. (this._plugin.customState as ViewerState) = {
  206. showImportControls: o.showImportControls,
  207. showSessionControls: o.showSessionControls,
  208. showStructureSourceControls: o.showStructureSourceControls,
  209. showMeasurementsControls: o.showMeasurementsControls,
  210. showStrucmotifSubmitControls: o.showStrucmotifSubmitControls,
  211. showSuperpositionControls: o.showSuperpositionControls,
  212. showQuickStylesControls: o.showQuickStylesControls,
  213. showStructureComponentControls: o.showStructureComponentControls,
  214. showVolumeStreamingControls: o.showVolumeStreamingControls,
  215. showAssemblySymmetryControls: o.showAssemblySymmetryControls,
  216. showValidationReportControls: o.showValidationReportControls,
  217. modelLoader: new ModelLoader(this._plugin),
  218. collapsed: new BehaviorSubject<CollapsedState>({
  219. selection: true,
  220. measurements: true,
  221. strucmotifSubmit: true,
  222. superposition: true,
  223. quickStyles: false,
  224. component: false,
  225. volume: true,
  226. assemblySymmetry: true,
  227. validationReport: true,
  228. custom: true,
  229. }),
  230. detachedFromSierra: o.detachedFromSierra
  231. };
  232. this._plugin.init()
  233. .then(async () => {
  234. // hide 'Membrane Orientation' preset from UI - has to happen 'before' react render, apparently
  235. // the corresponding behavior must be registered either way, because the 3d-view uses it (even without appearing in the UI)
  236. if (!o.showMembraneOrientationPreset) {
  237. this._plugin.builders.structure.representation.unregisterPreset(MembraneOrientationPreset);
  238. this._plugin.representation.structure.registry.remove(MembraneOrientationRepresentationProvider);
  239. }
  240. // normally, this would be part of CustomStructureControls -- we want to manage its collapsed state individually though
  241. this._plugin.customStructureControls.delete(AssemblySymmetry.Tag.Representation);
  242. const root = createRoot(element);
  243. root.render(React.createElement(Plugin, { plugin: this._plugin }));
  244. this._plugin.representation.structure.themes.colorThemeRegistry.add(SuperposeColorThemeProvider);
  245. if (o.showNakbColorTheme) this._plugin.representation.structure.themes.colorThemeRegistry.add(NakbColorThemeProvider);
  246. if (o.showWelcomeToast) {
  247. await PluginCommands.Toast.Show(this._plugin, {
  248. title: 'Welcome',
  249. message: `RCSB PDB Mol* Viewer ${RCSB_MOLSTAR_VERSION} [${BUILD_DATE.toLocaleString()}]`,
  250. key: 'toast-welcome',
  251. timeoutMs: 5000
  252. });
  253. }
  254. this.prevExpanded = this._plugin.layout.state.isExpanded;
  255. this._plugin.layout.events.updated.subscribe(() => this.toggleControls());
  256. });
  257. }
  258. get plugin() {
  259. return this._plugin;
  260. }
  261. pluginCall(f: (plugin: PluginContext) => void) {
  262. f(this.plugin);
  263. }
  264. private get customState() {
  265. return this._plugin.customState as ViewerState;
  266. }
  267. private toggleControls(): void {
  268. const currExpanded = this._plugin.layout.state.isExpanded;
  269. const expandedChanged = (this.prevExpanded !== currExpanded);
  270. if (!expandedChanged) return;
  271. if (currExpanded && !this._plugin.layout.state.showControls) {
  272. this._plugin.layout.setProps({ showControls: true });
  273. } else if (!currExpanded && this._plugin.layout.state.showControls) {
  274. this._plugin.layout.setProps({ showControls: false });
  275. }
  276. this.prevExpanded = this._plugin.layout.state.isExpanded;
  277. }
  278. resetCamera(durationMs?: number) {
  279. this._plugin.managers.camera.reset(undefined, durationMs);
  280. }
  281. clear() {
  282. const state = this._plugin.state.data;
  283. return PluginCommands.State.RemoveObject(this._plugin, { state, ref: state.tree.root.ref });
  284. }
  285. async loadPdbId<P, S>(pdbId: string, config?: { props?: PresetProps; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P }) {
  286. for (const provider of this.modelUrlProviders) {
  287. try {
  288. const p = provider(pdbId);
  289. 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);
  290. } catch (e) {
  291. console.warn(`loading '${pdbId}' failed with '${e}', trying next model-loader-provider`);
  292. }
  293. }
  294. }
  295. async loadPdbIds<P, S>(args: { pdbId: string, config?: {props?: PresetProps; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P} }[]) {
  296. const out = [];
  297. for (const { pdbId, config } of args) {
  298. out.push(await this.loadPdbId(pdbId, config));
  299. }
  300. if (!this.plugin.spec.canvas3d?.camera?.manualReset) this.resetCamera(0);
  301. return out;
  302. }
  303. loadStructureFromUrl<P, S>(url: string, format: BuiltInTrajectoryFormat, isBinary: boolean, config?: {props?: PresetProps & { dataLabel?: string }; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P}) {
  304. return this.customState.modelLoader.load({ fileOrUrl: url, format, isBinary }, config?.props, config?.matrix, config?.reprProvider, config?.params);
  305. }
  306. loadSnapshotFromUrl(url: string, type: PluginState.SnapshotType) {
  307. return PluginCommands.State.Snapshots.OpenUrl(this._plugin, { url, type });
  308. }
  309. loadStructureFromData<P, S>(data: string | number[], format: BuiltInTrajectoryFormat, isBinary: boolean, config?: {props?: PresetProps & { dataLabel?: string }; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P}) {
  310. return this.customState.modelLoader.parse({ data, format, isBinary }, config?.props, config?.matrix, config?.reprProvider, config?.params);
  311. }
  312. handleResize() {
  313. this._plugin.layout.events.updated.next(void 0);
  314. }
  315. exportLoadedStructures(options?: { format?: 'cif' | 'bcif' }) {
  316. return exportHierarchy(this.plugin, options);
  317. }
  318. setFocus(target: SelectRange) {
  319. setFocusFromRange(this._plugin, target);
  320. }
  321. clearFocus(): void {
  322. this._plugin.managers.structure.focus.clear();
  323. }
  324. select(targets: SelectTarget | SelectTarget[], mode: 'select' | 'hover', modifier: 'add' | 'set') {
  325. select(this._plugin, targets, mode, modifier);
  326. }
  327. clearSelection(mode: 'select' | 'hover', target?: { modelId: string; } & Target) {
  328. clearSelection(this._plugin, mode, target);
  329. }
  330. async createComponent(label: string, targets: SelectBase | SelectTarget | SelectTarget[], representationType: StructureRepresentationRegistry.BuiltIn) {
  331. await createComponent(this._plugin, label, targets, representationType);
  332. }
  333. async removeComponent(componentLabel: string) {
  334. await removeComponent(this._plugin, componentLabel);
  335. }
  336. }
  337. export class LigandViewer {
  338. private readonly _plugin: PluginUIContext;
  339. private readonly ligandUrlProviders: LigandUrlProvider[];
  340. constructor(elementOrId: string | HTMLElement, props: Partial<LigandViewerProps> = {}) {
  341. const element = typeof elementOrId === 'string' ? document.getElementById(elementOrId)! : elementOrId;
  342. if (!element) throw new Error(`Could not get element with id '${elementOrId}'`);
  343. const o = { ...DefaultLigandViewerProps, ...props };
  344. const defaultSpec = DefaultPluginUISpec();
  345. const spec: PluginUISpec = {
  346. ...defaultSpec,
  347. actions: defaultSpec.actions,
  348. behaviors: [
  349. ...defaultSpec.behaviors,
  350. ...o.extensions.map(e => LigandExtensions[e]),
  351. ],
  352. animations: [...defaultSpec.animations?.filter(a => a.name !== AnimateStateSnapshots.name) || []],
  353. layout: {
  354. initial: {
  355. isExpanded: o.layoutIsExpanded,
  356. showControls: o.layoutShowControls,
  357. controlsDisplay: o.layoutControlsDisplay,
  358. },
  359. },
  360. canvas3d: {
  361. ...defaultSpec.canvas3d,
  362. ...o.canvas3d,
  363. renderer: {
  364. ...defaultSpec.canvas3d?.renderer,
  365. ...o.canvas3d?.renderer,
  366. backgroundColor: o.backgroundColor,
  367. },
  368. camera: {
  369. helper: {
  370. axes: {
  371. name: 'off', params: {}
  372. }
  373. }
  374. }
  375. },
  376. components: {
  377. ...defaultSpec.components,
  378. controls: {
  379. ...defaultSpec.components?.controls,
  380. top: 'none',
  381. bottom: o.layoutShowLog ? undefined : 'none',
  382. left: 'none',
  383. right: ControlsWrapper,
  384. },
  385. remoteState: 'none',
  386. },
  387. config: [
  388. [PluginConfig.VolumeStreaming.Enabled, false],
  389. [PluginConfig.Viewport.ShowExpand, o.viewportShowExpand],
  390. [PluginConfig.Viewport.ShowSelectionMode, o.viewportShowSelectionMode],
  391. [PluginConfig.Viewport.ShowAnimation, false],
  392. [PluginConfig.Download.DefaultPdbProvider, 'rcsb'],
  393. [PluginConfig.Download.DefaultEmdbProvider, 'rcsb'],
  394. [PluginConfig.Structure.DefaultRepresentationPreset, PresetStructureRepresentations.auto.id],
  395. // wboit & webgl1 checks are needed to work properly on recent Safari versions
  396. [PluginConfig.General.EnableWboit, PluginFeatureDetection.preferWebGl1],
  397. [PluginConfig.General.PreferWebGl1, PluginFeatureDetection.preferWebGl1]
  398. ]
  399. };
  400. this._plugin = new PluginUIContext(spec);
  401. this.ligandUrlProviders = o.ligandUrlProviders;
  402. (this._plugin.customState as LigandViewerState) = {
  403. showMeasurementsControls: true,
  404. showStructureComponentControls: true,
  405. modelLoader: new ModelLoader(this._plugin),
  406. collapsed: new BehaviorSubject<CollapsedState>({
  407. selection: true,
  408. measurements: true,
  409. strucmotifSubmit: true,
  410. superposition: true,
  411. quickStyles: true,
  412. component: false,
  413. volume: true,
  414. assemblySymmetry: true,
  415. validationReport: true,
  416. custom: true,
  417. }),
  418. ignoreHydrogens: o.ignoreHydrogens,
  419. showLabels: o.showLabels,
  420. shownCoordinateType: o.shownCoordinateType
  421. };
  422. this._plugin.init()
  423. .then(async () => {
  424. const root = createRoot(element);
  425. root.render(React.createElement(Plugin, { plugin: this._plugin }));
  426. if (o.showWelcomeToast) {
  427. await PluginCommands.Toast.Show(this._plugin, {
  428. title: 'Welcome',
  429. message: `RCSB PDB Mol* Ligand Viewer ${RCSB_MOLSTAR_VERSION} [${BUILD_DATE.toLocaleString()}]`,
  430. key: 'toast-welcome',
  431. timeoutMs: 5000
  432. });
  433. }
  434. // allow picking of individual atoms
  435. this._plugin.managers.interactivity.setProps({ granularity: 'element' });
  436. });
  437. }
  438. private get customState() {
  439. return this._plugin.customState as LigandViewerState;
  440. }
  441. clear() {
  442. const state = this._plugin.state.data;
  443. return PluginCommands.State.RemoveObject(this._plugin, { state, ref: state.tree.root.ref });
  444. }
  445. async loadLigandId(id: string) {
  446. for (const provider of this.ligandUrlProviders) {
  447. try {
  448. const p = provider(id);
  449. await this.load({ fileOrUrl: p.url, format: p.format, isBinary: p.isBinary });
  450. } catch (e) {
  451. console.warn(`loading '${id}' failed with '${e}', trying next ligand-loader-provider`);
  452. }
  453. }
  454. }
  455. private async load(p: LoadParams) {
  456. await this.customState.modelLoader.load<any, any>(p, undefined, undefined, ChemicalCompontentTrajectoryHierarchyPreset, { shownCoordinateType: this.customState.shownCoordinateType });
  457. await this.syncHydrogenState();
  458. for (const s of this._plugin.managers.structure.hierarchy.current.structures) {
  459. for (const c of s.components) {
  460. const isHidden = c.cell.state.isHidden === true || !this.customState.showLabels;
  461. 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 } });
  462. }
  463. }
  464. }
  465. async toggleHydrogens() {
  466. this.customState.ignoreHydrogens = !this.customState.ignoreHydrogens;
  467. await this.syncHydrogenState();
  468. }
  469. private async syncHydrogenState() {
  470. const update = this._plugin.build();
  471. for (const s of this._plugin.managers.structure.hierarchy.current.structures) {
  472. for (const c of s.components) {
  473. for (const r of c.representations) {
  474. update.to(r.cell).update(StateTransforms.Representation.StructureRepresentation3D, old => {
  475. old.type.params.ignoreHydrogens = this.customState.ignoreHydrogens;
  476. });
  477. }
  478. }
  479. }
  480. await update.commit();
  481. }
  482. async toggleLabels() {
  483. this.customState.showLabels = !this.customState.showLabels;
  484. await this.syncLabelState();
  485. }
  486. private async syncLabelState() {
  487. for (const s of this._plugin.managers.structure.hierarchy.current.structures) {
  488. for (const c of s.components) {
  489. if (c.cell.state.isHidden) continue;
  490. for (const r of c.representations) {
  491. if (r.cell.obj?.label !== 'Label') continue;
  492. this._plugin.managers.structure.hierarchy.toggleVisibility([r], this.customState.showLabels ? 'show' : 'hide');
  493. }
  494. }
  495. }
  496. }
  497. }