123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- /**
- * Copyright (c) 2020-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- import * as React from 'react';
- import { Loci } from '../../mol-model/loci';
- import { StructureElement } from '../../mol-model/structure';
- import { StructureMeasurementCell, StructureMeasurementOptions, StructureMeasurementParams } from '../../mol-plugin-state/manager/structure/measurement';
- import { StructureSelectionHistoryEntry } from '../../mol-plugin-state/manager/structure/selection';
- import { PluginCommands } from '../../mol-plugin/commands';
- import { AngleData } from '../../mol-repr/shape/loci/angle';
- import { DihedralData } from '../../mol-repr/shape/loci/dihedral';
- import { DistanceData } from '../../mol-repr/shape/loci/distance';
- import { LabelData } from '../../mol-repr/shape/loci/label';
- import { OrientationData } from '../../mol-repr/shape/loci/orientation';
- import { angleLabel, dihedralLabel, distanceLabel, lociLabel, structureElementLociLabelMany } from '../../mol-theme/label';
- import { FiniteArray } from '../../mol-util/type-helpers';
- import { CollapsableControls, PurePluginUIComponent } from '../base';
- import { ActionMenu } from '../controls/action-menu';
- import { Button, ExpandGroup, IconButton, ToggleButton } from '../controls/common';
- import { AddSvg, ArrowDownwardSvg, ArrowUpwardSvg, DeleteOutlinedSvg, HelpOutlineSvg, Icon, MoreHorizSvg, PencilRulerSvg, SetSvg, TuneSvg, VisibilityOffOutlinedSvg, VisibilityOutlinedSvg } from '../controls/icons';
- import { ParameterControls } from '../controls/parameters';
- import { UpdateTransformControl } from '../state/update-transform';
- import { ToggleSelectionModeButton } from './selection';
- // TODO details, options (e.g. change text for labels)
- export class StructureMeasurementsControls extends CollapsableControls {
- defaultState() {
- return {
- isCollapsed: false,
- header: 'Measurements',
- brand: { accent: 'gray' as const, svg: PencilRulerSvg }
- };
- }
- renderControls() {
- return <>
- <MeasurementControls />
- <MeasurementList />
- </>;
- }
- }
- export class MeasurementList extends PurePluginUIComponent {
- componentDidMount() {
- this.subscribe(this.plugin.managers.structure.measurement.behaviors.state, () => {
- this.forceUpdate();
- });
- }
- renderGroup(cells: ReadonlyArray<StructureMeasurementCell>, header: string) {
- const group: JSX.Element[] = [];
- for (const cell of cells) {
- if (cell.obj) group.push(<MeasurementEntry key={cell.obj.id} cell={cell} />);
- }
- return group.length ? <ExpandGroup header={header} initiallyExpanded={true}>{group}</ExpandGroup> : null;
- }
- render() {
- const measurements = this.plugin.managers.structure.measurement.state;
- return <div style={{ marginTop: '6px' }}>
- {this.renderGroup(measurements.labels, 'Labels')}
- {this.renderGroup(measurements.distances, 'Distances')}
- {this.renderGroup(measurements.angles, 'Angles')}
- {this.renderGroup(measurements.dihedrals, 'Dihedrals')}
- {this.renderGroup(measurements.orientations, 'Orientations')}
- {this.renderGroup(measurements.planes, 'Planes')}
- </div>;
- }
- }
- export class MeasurementControls extends PurePluginUIComponent<{}, { isBusy: boolean, action?: 'add' | 'options' }> {
- state = { isBusy: false, action: void 0 as 'add' | 'options' | undefined };
- componentDidMount() {
- this.subscribe(this.selection.events.additionsHistoryUpdated, () => {
- this.forceUpdate();
- this.updateOrderLabels();
- });
- this.subscribe(this.plugin.behaviors.state.isBusy, v => {
- this.setState({ isBusy: v });
- });
- }
- componentWillUnmount() {
- this.clearOrderLabels();
- super.componentWillUnmount();
- }
- componentDidUpdate(prevProps: {}, prevState: { isBusy: boolean, action?: 'add' | 'options' }) {
- if (this.state.action !== prevState.action)
- this.updateOrderLabels();
- }
- clearOrderLabels() {
- this.plugin.managers.structure.measurement.addOrderLabels([]);
- }
- updateOrderLabels() {
- if (this.state.action !== 'add') {
- this.clearOrderLabels();
- return;
- }
- const locis = [];
- const history = this.selection.additionsHistory;
- for (let idx = 0; idx < history.length && idx < 4; idx++)
- locis.push(history[idx].loci);
- this.plugin.managers.structure.measurement.addOrderLabels(locis);
- }
- get selection() {
- return this.plugin.managers.structure.selection;
- }
- measureDistance = () => {
- const loci = this.plugin.managers.structure.selection.additionsHistory;
- this.plugin.managers.structure.measurement.addDistance(loci[0].loci, loci[1].loci);
- };
- measureAngle = () => {
- const loci = this.plugin.managers.structure.selection.additionsHistory;
- this.plugin.managers.structure.measurement.addAngle(loci[0].loci, loci[1].loci, loci[2].loci);
- };
- measureDihedral = () => {
- const loci = this.plugin.managers.structure.selection.additionsHistory;
- this.plugin.managers.structure.measurement.addDihedral(loci[0].loci, loci[1].loci, loci[2].loci, loci[3].loci);
- };
- addLabel = () => {
- const loci = this.plugin.managers.structure.selection.additionsHistory;
- this.plugin.managers.structure.measurement.addLabel(loci[0].loci);
- };
- addOrientation = () => {
- const locis: StructureElement.Loci[] = [];
- this.plugin.managers.structure.selection.entries.forEach(v => {
- locis.push(v.selection);
- });
- this.plugin.managers.structure.measurement.addOrientation(locis);
- };
- addPlane = () => {
- const locis: StructureElement.Loci[] = [];
- this.plugin.managers.structure.selection.entries.forEach(v => {
- locis.push(v.selection);
- });
- this.plugin.managers.structure.measurement.addPlane(locis);
- };
- get actions(): ActionMenu.Items {
- const history = this.selection.additionsHistory;
- const ret: ActionMenu.Item[] = [
- { kind: 'item', label: `Label ${history.length === 0 ? ' (1 selection item required)' : ' (1st selection item)'}`, value: this.addLabel, disabled: history.length === 0 },
- { kind: 'item', label: `Distance ${history.length < 2 ? ' (2 selection items required)' : ' (top 2 selection items)'}`, value: this.measureDistance, disabled: history.length < 2 },
- { kind: 'item', label: `Angle ${history.length < 3 ? ' (3 selection items required)' : ' (top 3 items)'}`, value: this.measureAngle, disabled: history.length < 3 },
- { kind: 'item', label: `Dihedral ${history.length < 4 ? ' (4 selection items required)' : ' (top 4 selection items)'}`, value: this.measureDihedral, disabled: history.length < 4 },
- { kind: 'item', label: `Orientation ${history.length === 0 ? ' (selection required)' : ' (current selection)'}`, value: this.addOrientation, disabled: history.length === 0 },
- { kind: 'item', label: `Plane ${history.length === 0 ? ' (selection required)' : ' (current selection)'}`, value: this.addPlane, disabled: history.length === 0 },
- ];
- return ret;
- }
- selectAction: ActionMenu.OnSelect = item => {
- this.toggleAdd();
- if (!item) return;
- (item?.value as any)();
- };
- toggleAdd = () => this.setState({ action: this.state.action === 'add' ? void 0 : 'add' });
- toggleOptions = () => this.setState({ action: this.state.action === 'options' ? void 0 : 'options' });
- highlight(loci: StructureElement.Loci) {
- this.plugin.managers.interactivity.lociHighlights.highlightOnly({ loci }, false);
- }
- moveHistory(e: StructureSelectionHistoryEntry, direction: 'up' | 'down') {
- this.plugin.managers.structure.selection.modifyHistory(e, direction, 4);
- }
- focusLoci(loci: StructureElement.Loci) {
- this.plugin.managers.camera.focusLoci(loci);
- }
- historyEntry(e: StructureSelectionHistoryEntry, idx: number) {
- const history = this.plugin.managers.structure.selection.additionsHistory;
- return <div className='msp-flex-row' key={e.id} onMouseEnter={() => this.highlight(e.loci)} onMouseLeave={() => this.plugin.managers.interactivity.lociHighlights.clearHighlights()}>
- <Button noOverflow title='Click to focus. Hover to highlight.' onClick={() => this.focusLoci(e.loci)} style={{ width: 'auto', textAlign: 'left' }}>
- {idx}. <span dangerouslySetInnerHTML={{ __html: e.label }} />
- </Button>
- {history.length > 1 && <IconButton svg={ArrowUpwardSvg} small={true} className='msp-form-control' onClick={() => this.moveHistory(e, 'up')} flex='20px' title={'Move up'} />}
- {history.length > 1 && <IconButton svg={ArrowDownwardSvg} small={true} className='msp-form-control' onClick={() => this.moveHistory(e, 'down')} flex='20px' title={'Move down'} />}
- <IconButton svg={DeleteOutlinedSvg} small={true} className='msp-form-control' onClick={() => this.plugin.managers.structure.selection.modifyHistory(e, 'remove')} flex title={'Remove'} />
- </div>;
- }
- add() {
- const history = this.plugin.managers.structure.selection.additionsHistory;
- const entries: JSX.Element[] = [];
- for (let i = 0, _i = Math.min(history.length, 4); i < _i; i++) {
- entries.push(this.historyEntry(history[i], i + 1));
- }
- return <>
- <ActionMenu items={this.actions} onSelect={this.selectAction} />
- {entries.length > 0 && <div className='msp-control-offset'>
- {entries}
- </div>}
- {entries.length === 0 && <div className='msp-control-offset msp-help-text'>
- <div className='msp-help-description'><Icon svg={HelpOutlineSvg} inline />Add one or more selections (toggle <ToggleSelectionModeButton inline /> mode)</div>
- </div>}
- </>;
- }
- render() {
- return <>
- <div className='msp-flex-row'>
- <ToggleButton icon={AddSvg} label='Add' toggle={this.toggleAdd} isSelected={this.state.action === 'add'} disabled={this.state.isBusy} className='msp-btn-apply-simple' />
- <ToggleButton icon={TuneSvg} label='' title='Options' toggle={this.toggleOptions} isSelected={this.state.action === 'options'} disabled={this.state.isBusy} style={{ flex: '0 0 40px', padding: 0 }} />
- </div>
- {this.state.action === 'add' && this.add()}
- {this.state.action === 'options' && <MeasurementsOptions />}
- </>;
- }
- }
- class MeasurementsOptions extends PurePluginUIComponent<{}, { isDisabled: boolean }> {
- state = { isDisabled: false };
- componentDidMount() {
- this.subscribe(this.plugin.managers.structure.measurement.behaviors.state, () => {
- this.forceUpdate();
- });
- this.subscribe(this.plugin.behaviors.state.isBusy, v => {
- this.setState({ isDisabled: v });
- });
- }
- changed = (options: StructureMeasurementOptions) => {
- this.plugin.managers.structure.measurement.setOptions(options);
- };
- render() {
- const measurements = this.plugin.managers.structure.measurement.state;
- return <div className='msp-control-offset'>
- <ParameterControls params={StructureMeasurementParams} values={measurements.options} onChangeValues={this.changed} isDisabled={this.state.isDisabled} />
- </div>;
- }
- }
- class MeasurementEntry extends PurePluginUIComponent<{ cell: StructureMeasurementCell }, { showUpdate: boolean }> {
- state = { showUpdate: false };
- componentDidMount() {
- this.subscribe(this.plugin.state.events.cell.stateUpdated, e => {
- this.forceUpdate();
- });
- }
- get selections() {
- return this.props.cell.obj?.data.sourceData as Partial<DistanceData & AngleData & DihedralData & LabelData & OrientationData> | undefined;
- }
- delete = () => {
- PluginCommands.State.RemoveObject(this.plugin, { state: this.props.cell.parent!, ref: this.props.cell.transform.parent, removeParentGhosts: true });
- };
- toggleVisibility = (e: React.MouseEvent<HTMLElement>) => {
- e.preventDefault();
- PluginCommands.State.ToggleVisibility(this.plugin, { state: this.props.cell.parent!, ref: this.props.cell.transform.parent });
- e.currentTarget.blur();
- };
- highlight = () => {
- const selections = this.selections;
- if (!selections) return;
- this.plugin.managers.interactivity.lociHighlights.clearHighlights();
- for (const loci of this.lociArray) {
- this.plugin.managers.interactivity.lociHighlights.highlight({ loci }, false);
- }
- const reprLocis = this.props.cell.obj?.data.repr.getAllLoci();
- if (reprLocis) {
- for (const loci of reprLocis) {
- this.plugin.managers.interactivity.lociHighlights.highlight({ loci }, false);
- }
- }
- };
- clearHighlight = () => {
- this.plugin.managers.interactivity.lociHighlights.clearHighlights();
- };
- toggleUpdate = () => this.setState({ showUpdate: !this.state.showUpdate });
- focus = () => {
- const selections = this.selections;
- if (!selections) return;
- const sphere = Loci.getBundleBoundingSphere({ loci: this.lociArray });
- if (sphere) {
- this.plugin.managers.camera.focusSphere(sphere);
- }
- };
- private get lociArray(): FiniteArray<Loci> {
- const selections = this.selections;
- if (!selections) return [];
- if (selections.infos) return [selections.infos[0].loci];
- if (selections.pairs) return selections.pairs[0].loci;
- if (selections.triples) return selections.triples[0].loci;
- if (selections.quads) return selections.quads[0].loci;
- if (selections.locis) return selections.locis;
- return [];
- }
- get label() {
- const selections = this.selections;
- if (!selections) return '<empty>';
- if (selections.infos) return lociLabel(selections.infos[0].loci, { condensed: true });
- if (selections.pairs) return distanceLabel(selections.pairs[0], { condensed: true, unitLabel: this.plugin.managers.structure.measurement.state.options.distanceUnitLabel });
- if (selections.triples) return angleLabel(selections.triples[0], { condensed: true });
- if (selections.quads) return dihedralLabel(selections.quads[0], { condensed: true });
- if (selections.locis) return structureElementLociLabelMany(selections.locis, { countsOnly: true });
- return '<empty>';
- }
- get actions(): ActionMenu.Items {
- this.props.cell.sourceRef;
- return [ActionMenu.Item('Select This', () => this.plugin.managers.structure.selection.fromSelections(this.props.cell.sourceRef!), { icon: SetSvg })];
- }
- selectAction: ActionMenu.OnSelect = item => {
- if (!item) return;
- this.setState({ showUpdate: false });
- (item?.value as any)();
- };
- render() {
- const { cell } = this.props;
- const { obj } = cell;
- if (!obj) return null;
- return <>
- <div className='msp-flex-row' key={obj.id} onMouseEnter={this.highlight} onMouseLeave={this.clearHighlight}>
- <button className='msp-form-control msp-control-button-label msp-no-overflow' title='Click to focus. Hover to highlight.' onClick={this.focus} style={{ width: 'auto', textAlign: 'left' }}>
- <span dangerouslySetInnerHTML={{ __html: this.label }} />
- </button>
- <IconButton svg={cell.state.isHidden ? VisibilityOffOutlinedSvg : VisibilityOutlinedSvg} toggleState={false} small className='msp-form-control' onClick={this.toggleVisibility} flex title={cell.state.isHidden ? 'Show' : 'Hide'} />
- <IconButton svg={DeleteOutlinedSvg} small className='msp-form-control' onClick={this.delete} flex title='Delete' toggleState={false} />
- <IconButton svg={MoreHorizSvg} className='msp-form-control' onClick={this.toggleUpdate} flex title='Actions' toggleState={this.state.showUpdate} />
- </div>
- {this.state.showUpdate && cell.parent && <>
- <div className='msp-accent-offset'>
- <ActionMenu items={this.actions} onSelect={this.selectAction} noOffset />
- <ExpandGroup header='Options' noOffset>
- <UpdateTransformControl state={cell.parent} transform={cell.transform} customHeader='none' autoHideApply />
- </ExpandGroup>
- </div>
- </>}
- </>;
- }
- }
|