controls.tsx 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. /**
  2. * Copyright (c) 2018-2024 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  6. */
  7. import * as React from 'react';
  8. import Markdown from 'react-markdown';
  9. import { UpdateTrajectory } from '../mol-plugin-state/actions/structure';
  10. import { LociLabel } from '../mol-plugin-state/manager/loci-label';
  11. import { PluginStateObject } from '../mol-plugin-state/objects';
  12. import { StateTransforms } from '../mol-plugin-state/transforms';
  13. import { ModelFromTrajectory } from '../mol-plugin-state/transforms/model';
  14. import { PluginCommands } from '../mol-plugin/commands';
  15. import { StateTransformer } from '../mol-state';
  16. import { PluginReactContext, PluginUIComponent } from './base';
  17. import { IconButton } from './controls/common';
  18. import { Icon, NavigateBeforeSvg, NavigateNextSvg, SkipPreviousSvg, StopSvg, PlayArrowSvg, SubscriptionsOutlinedSvg, BuildSvg } from './controls/icons';
  19. import { AnimationControls } from './state/animation';
  20. import { StructureComponentControls } from './structure/components';
  21. import { StructureMeasurementsControls } from './structure/measurements';
  22. import { StructureSelectionActionsControls } from './structure/selection';
  23. import { StructureSourceControls } from './structure/source';
  24. import { VolumeStreamingControls, VolumeSourceControls } from './structure/volume';
  25. import { PluginConfig } from '../mol-plugin/config';
  26. import { StructureSuperpositionControls } from './structure/superposition';
  27. import { StructureQuickStylesControls } from './structure/quick-styles';
  28. export class TrajectoryViewportControls extends PluginUIComponent<{}, { show: boolean, label: string }> {
  29. state = { show: false, label: '' };
  30. private update = () => {
  31. const state = this.plugin.state.data;
  32. const models = state.selectQ(q => q.ofTransformer(StateTransforms.Model.ModelFromTrajectory));
  33. if (models.length === 0) {
  34. this.setState({ show: false });
  35. return;
  36. }
  37. let label = '', count = 0;
  38. const parents = new Set<string>();
  39. for (const m of models) {
  40. if (!m.sourceRef) continue;
  41. const parent = state.cells.get(m.sourceRef)!.obj as PluginStateObject.Molecule.Trajectory;
  42. if (!parent) continue;
  43. if (parent.data.frameCount > 1) {
  44. if (parents.has(m.sourceRef)) {
  45. // do not show the controls if there are 2 models of the same trajectory present
  46. this.setState({ show: false });
  47. return;
  48. }
  49. parents.add(m.sourceRef);
  50. count++;
  51. if (!label) {
  52. const idx = (m.transform.params! as StateTransformer.Params<ModelFromTrajectory>).modelIndex;
  53. label = `Model ${idx + 1} / ${parent.data.frameCount}`;
  54. }
  55. }
  56. }
  57. if (count > 1) label = '';
  58. this.setState({ show: count > 0, label });
  59. };
  60. componentDidMount() {
  61. this.subscribe(this.plugin.state.data.events.changed, this.update);
  62. this.subscribe(this.plugin.behaviors.state.isAnimating, this.update);
  63. }
  64. reset = () => PluginCommands.State.ApplyAction(this.plugin, {
  65. state: this.plugin.state.data,
  66. action: UpdateTrajectory.create({ action: 'reset' })
  67. });
  68. prev = () => PluginCommands.State.ApplyAction(this.plugin, {
  69. state: this.plugin.state.data,
  70. action: UpdateTrajectory.create({ action: 'advance', by: -1 })
  71. });
  72. next = () => PluginCommands.State.ApplyAction(this.plugin, {
  73. state: this.plugin.state.data,
  74. action: UpdateTrajectory.create({ action: 'advance', by: 1 })
  75. });
  76. render() {
  77. const isAnimating = this.plugin.behaviors.state.isAnimating.value;
  78. if (!this.state.show || (isAnimating && !this.state.label) || !this.plugin.config.get(PluginConfig.Viewport.ShowTrajectoryControls)) return null;
  79. return <div className='msp-traj-controls'>
  80. {!isAnimating && <IconButton svg={SkipPreviousSvg} title='First Model' onClick={this.reset} disabled={isAnimating} />}
  81. {!isAnimating && <IconButton svg={NavigateBeforeSvg} title='Previous Model' onClick={this.prev} disabled={isAnimating} />}
  82. {!isAnimating && <IconButton svg={NavigateNextSvg} title='Next Model' onClick={this.next} disabled={isAnimating} />}
  83. {!!this.state.label && <span>{this.state.label}</span> }
  84. </div>;
  85. }
  86. }
  87. export class StateSnapshotViewportControls extends PluginUIComponent<{}, { isBusy: boolean, show: boolean }> {
  88. state = { isBusy: false, show: true };
  89. componentDidMount() {
  90. // TODO: this needs to be diabled when the state is updating!
  91. this.subscribe(this.plugin.managers.snapshot.events.changed, () => this.forceUpdate());
  92. this.subscribe(this.plugin.behaviors.state.isBusy, isBusy => this.setState({ isBusy }));
  93. this.subscribe(this.plugin.behaviors.state.isAnimating, isBusy => this.setState({ isBusy }));
  94. window.addEventListener('keyup', this.keyUp, false);
  95. }
  96. componentWillUnmount() {
  97. super.componentWillUnmount();
  98. window.removeEventListener('keyup', this.keyUp, false);
  99. }
  100. keyUp = (e: KeyboardEvent) => {
  101. if (!e.ctrlKey || this.state.isBusy || e.target !== document.body) return;
  102. const snapshots = this.plugin.managers.snapshot;
  103. if (e.keyCode === 37 || e.key === 'ArrowLeft') {
  104. if (snapshots.state.isPlaying) snapshots.stop();
  105. this.prev();
  106. } else if (e.keyCode === 38 || e.key === 'ArrowUp') {
  107. if (snapshots.state.isPlaying) snapshots.stop();
  108. if (snapshots.state.entries.size === 0) return;
  109. const e = snapshots.state.entries.get(0)!;
  110. this.update(e.snapshot.id);
  111. } else if (e.keyCode === 39 || e.key === 'ArrowRight') {
  112. if (snapshots.state.isPlaying) snapshots.stop();
  113. this.next();
  114. } else if (e.keyCode === 40 || e.key === 'ArrowDown') {
  115. if (snapshots.state.isPlaying) snapshots.stop();
  116. if (snapshots.state.entries.size === 0) return;
  117. const e = snapshots.state.entries.get(snapshots.state.entries.size - 1)!;
  118. this.update(e.snapshot.id);
  119. }
  120. };
  121. async update(id: string) {
  122. this.setState({ isBusy: true });
  123. await PluginCommands.State.Snapshots.Apply(this.plugin, { id });
  124. this.setState({ isBusy: false });
  125. }
  126. change = (e: React.ChangeEvent<HTMLSelectElement>) => {
  127. if (e.target.value === 'none') return;
  128. this.update(e.target.value);
  129. };
  130. prev = () => {
  131. const s = this.plugin.managers.snapshot;
  132. const id = s.getNextId(s.state.current, -1);
  133. if (id) this.update(id);
  134. };
  135. next = () => {
  136. const s = this.plugin.managers.snapshot;
  137. const id = s.getNextId(s.state.current, 1);
  138. if (id) this.update(id);
  139. };
  140. togglePlay = () => {
  141. this.plugin.managers.snapshot.togglePlay();
  142. };
  143. render() {
  144. const snapshots = this.plugin.managers.snapshot;
  145. const count = snapshots.state.entries.size;
  146. if (count < 2 || !this.state.show) {
  147. return null;
  148. }
  149. const current = snapshots.state.current;
  150. const isPlaying = snapshots.state.isPlaying;
  151. return <div className='msp-state-snapshot-viewport-controls'>
  152. <select className='msp-form-control' value={current || 'none'} onChange={this.change} disabled={this.state.isBusy || isPlaying}>
  153. {!current && <option key='none' value='none'></option>}
  154. {snapshots.state.entries.valueSeq().map((e, i) => <option key={e!.snapshot.id} value={e!.snapshot.id}>{`[${i! + 1}/${count}]`} {e!.name || new Date(e!.timestamp).toLocaleString()}</option>)}
  155. </select>
  156. <IconButton svg={isPlaying ? StopSvg : PlayArrowSvg} title={isPlaying ? 'Pause' : 'Cycle States'} onClick={this.togglePlay}
  157. disabled={isPlaying ? false : this.state.isBusy} />
  158. {!isPlaying && <>
  159. <IconButton svg={NavigateBeforeSvg} title='Previous State' onClick={this.prev} disabled={this.state.isBusy || isPlaying} />
  160. <IconButton svg={NavigateNextSvg} title='Next State' onClick={this.next} disabled={this.state.isBusy || isPlaying} />
  161. </>}
  162. </div>;
  163. }
  164. }
  165. export function ViewportSnapshotDescription() {
  166. const plugin = React.useContext(PluginReactContext);
  167. const [_, setV] = React.useState(0);
  168. React.useEffect(() => {
  169. const sub = plugin.managers.snapshot.events.changed.subscribe(() => setV(v => v + 1));
  170. return () => sub.unsubscribe();
  171. }, [plugin]);
  172. const current = plugin.managers.snapshot.state.current;
  173. if (!current) return null;
  174. const e = plugin.managers.snapshot.getEntry(current)!;
  175. if (!e?.description?.trim()) return null;
  176. return <div className='msp-snapshot-description-wrapper'>
  177. <Markdown skipHtml components={{ a: MarkdownAnchor }}>{e.description}</Markdown>
  178. </div>;
  179. }
  180. function MarkdownAnchor({ href, children, element }: { href?: string, children?: any, element?: any }) {
  181. const plugin = React.useContext(PluginReactContext);
  182. if (!href) return element;
  183. if (href[0] === '#') {
  184. return <a href='#' onClick={(e) => {
  185. e.preventDefault();
  186. plugin.managers.snapshot.applyKey(href.substring(1));
  187. }}>{children}</a>;
  188. }
  189. // TODO: consider adding more "commands", for example !reset-camera
  190. return element;
  191. }
  192. export class AnimationViewportControls extends PluginUIComponent<{}, { isEmpty: boolean, isExpanded: boolean, isBusy: boolean, isAnimating: boolean, isPlaying: boolean }> {
  193. state = { isEmpty: true, isExpanded: false, isBusy: false, isAnimating: false, isPlaying: false };
  194. componentDidMount() {
  195. this.subscribe(this.plugin.managers.snapshot.events.changed, () => {
  196. if (this.plugin.managers.snapshot.state.isPlaying) this.setState({ isPlaying: true, isExpanded: false });
  197. else this.setState({ isPlaying: false });
  198. });
  199. this.subscribe(this.plugin.behaviors.state.isBusy, isBusy => {
  200. if (isBusy) this.setState({ isBusy: true, isExpanded: false, isEmpty: this.plugin.state.data.tree.transforms.size < 2 });
  201. else this.setState({ isBusy: false, isEmpty: this.plugin.state.data.tree.transforms.size < 2 });
  202. });
  203. this.subscribe(this.plugin.behaviors.state.isAnimating, isAnimating => {
  204. if (isAnimating) this.setState({ isAnimating: true, isExpanded: false });
  205. else this.setState({ isAnimating: false });
  206. });
  207. }
  208. toggleExpanded = () => this.setState({ isExpanded: !this.state.isExpanded });
  209. stop = () => {
  210. this.plugin.managers.animation.stop();
  211. this.plugin.managers.snapshot.stop();
  212. };
  213. render() {
  214. const isPlaying = this.plugin.managers.snapshot.state.isPlaying;
  215. if (isPlaying || this.state.isEmpty || this.plugin.managers.animation.isEmpty || !this.plugin.config.get(PluginConfig.Viewport.ShowAnimation)) return null;
  216. const isAnimating = this.state.isAnimating;
  217. return <div className='msp-animation-viewport-controls'>
  218. <div>
  219. <div className='msp-semi-transparent-background' />
  220. <IconButton svg={isAnimating || isPlaying ? StopSvg : SubscriptionsOutlinedSvg} transparent title={isAnimating ? 'Stop' : 'Select Animation'}
  221. onClick={isAnimating || isPlaying ? this.stop : this.toggleExpanded} toggleState={this.state.isExpanded}
  222. disabled={isAnimating || isPlaying ? false : this.state.isBusy || this.state.isPlaying || this.state.isEmpty} />
  223. </div>
  224. {(this.state.isExpanded && !this.state.isBusy) && <div className='msp-animation-viewport-controls-select'>
  225. <AnimationControls onStart={this.toggleExpanded} />
  226. </div>}
  227. </div>;
  228. }
  229. }
  230. export class SelectionViewportControls extends PluginUIComponent {
  231. componentDidMount() {
  232. this.subscribe(this.plugin.behaviors.interaction.selectionMode, () => this.forceUpdate());
  233. }
  234. render() {
  235. if (!this.plugin.selectionMode) return null;
  236. return <div className='msp-selection-viewport-controls'>
  237. <StructureSelectionActionsControls />
  238. </div>;
  239. }
  240. }
  241. export class LociLabels extends PluginUIComponent<{}, { labels: ReadonlyArray<LociLabel> }> {
  242. state = { labels: [] as string[] };
  243. componentDidMount() {
  244. this.subscribe(this.plugin.behaviors.labels.highlight, e => this.setState({ labels: e.labels }));
  245. }
  246. render() {
  247. if (this.state.labels.length === 0) {
  248. return null;
  249. }
  250. return <div className='msp-highlight-info'>
  251. {this.state.labels.map((e, i) => {
  252. if (e.indexOf('\n') > 0) {
  253. return <div className='msp-highlight-markdown-row' key={'' + i}>
  254. <Markdown skipHtml>{e}</Markdown>
  255. </div>;
  256. }
  257. return <div className='msp-highlight-simple-row' key={'' + i} dangerouslySetInnerHTML={{ __html: e }} />;
  258. })}
  259. </div>;
  260. }
  261. }
  262. export class CustomStructureControls extends PluginUIComponent<{ initiallyCollapsed?: boolean }> {
  263. componentDidMount() {
  264. this.subscribe(this.plugin.state.behaviors.events.changed, () => this.forceUpdate());
  265. }
  266. render() {
  267. const controls: JSX.Element[] = [];
  268. this.plugin.customStructureControls.forEach((Controls, key) => {
  269. controls.push(<Controls initiallyCollapsed={this.props.initiallyCollapsed} key={key} />);
  270. });
  271. return controls.length > 0 ? <>{controls}</> : null;
  272. }
  273. }
  274. export class DefaultStructureTools extends PluginUIComponent {
  275. render() {
  276. return <>
  277. <div className='msp-section-header'><Icon svg={BuildSvg} />Structure Tools</div>
  278. <StructureSourceControls />
  279. <StructureMeasurementsControls />
  280. <StructureSuperpositionControls />
  281. <StructureQuickStylesControls />
  282. <StructureComponentControls />
  283. {this.plugin.config.get(PluginConfig.VolumeStreaming.Enabled) && <VolumeStreamingControls />}
  284. <VolumeSourceControls />
  285. <CustomStructureControls />
  286. </>;
  287. }
  288. }