123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /**
- * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import * as React from 'react';
- import { CollapsableControls, CollapsableState } from '../base';
- import { StructureSelectionQueries, SelectionModifier } from '../../util/structure-selection-helper';
- import { ButtonSelect, Options } from '../controls/common';
- import { PluginCommands } from '../../command';
- import { ParamDefinition as PD } from '../../../mol-util/param-definition';
- import { Interactivity } from '../../util/interactivity';
- import { ParameterControls } from '../controls/parameters';
- import { camelCaseToWords } from '../../../mol-util/string';
- const StructureSelectionParams = {
- granularity: Interactivity.Params.granularity,
- }
- interface StructureSelectionControlsState extends CollapsableState {
- minRadius: number,
- extraRadius: number,
- durationMs: number
- }
- export class StructureSelectionControls<P, S extends StructureSelectionControlsState> extends CollapsableControls<P, S> {
- componentDidMount() {
- this.subscribe(this.plugin.events.interactivity.selectionUpdated, () => {
- this.forceUpdate()
- });
- this.subscribe(this.plugin.events.interactivity.propsUpdated, () => {
- this.forceUpdate()
- });
- }
- get stats() {
- const stats = this.plugin.helpers.structureSelectionManager.stats
- if (stats.structureCount === 0 || stats.elementCount === 0) {
- return 'Selected nothing'
- } else {
- return `Selected ${stats.label}`
- }
- }
- focus = () => {
- const { extraRadius, minRadius, durationMs } = this.state
- const { sphere } = this.plugin.helpers.structureSelectionManager.getBoundary();
- if (sphere.radius === 0) return
- const radius = Math.max(sphere.radius + extraRadius, minRadius);
- this.plugin.canvas3d.camera.focus(sphere.center, radius, durationMs);
- }
- setProps = (p: { param: PD.Base<any>, name: string, value: any }) => {
- if (p.name === 'granularity') {
- PluginCommands.Interactivity.SetProps.dispatch(this.plugin, { props: { granularity: p.value } });
- }
- }
- get values () {
- return {
- granularity: this.plugin.interactivity.props.granularity,
- }
- }
- set = (modifier: SelectionModifier, value: string) => {
- const query = StructureSelectionQueries[value as keyof typeof StructureSelectionQueries]
- this.plugin.helpers.structureSelection.set(modifier, query)
- }
- add = (value: string) => this.set('add', value)
- remove = (value: string) => this.set('remove', value)
- only = (value: string) => this.set('only', value)
- defaultState() {
- return {
- isCollapsed: false,
- header: 'Selection',
- minRadius: 8,
- extraRadius: 4,
- durationMs: 250
- } as S
- }
- renderControls() {
- const queries = Object.keys(StructureSelectionQueries).map(name => {
- return [name, camelCaseToWords(name)] as [string, string]
- })
- return <div>
- <div className='msp-control-row msp-row-text'>
- <button className='msp-btn msp-btn-block' onClick={this.focus}>
- <span className={`msp-icon msp-icon-focus-on-visual`} style={{ position: 'absolute', left: '10px' }} />
- {this.stats}
- </button>
- </div>
- <ParameterControls params={StructureSelectionParams} values={this.values} onChange={this.setProps} />
- <div className='msp-control-row'>
- <div className='msp-select-row'>
- <ButtonSelect label='Add' onChange={this.add}>
- <optgroup label='Add'>
- {Options(queries)}
- </optgroup>
- </ButtonSelect>
- <ButtonSelect label='Remove' onChange={this.remove}>
- <optgroup label='Remove'>
- {Options(queries)}
- </optgroup>
- </ButtonSelect>
- <ButtonSelect label='Only' onChange={this.only}>
- <optgroup label='Only'>
- {Options(queries)}
- </optgroup>
- </ButtonSelect>
- </div>
- </div>
- </div>
- }
- }
|