123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- /**
- * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- import { State, StateTransform, StateTransformer, StateAction, StateObject } from '../../mol-state';
- import * as React from 'react';
- import { PurePluginUIComponent } from '../base';
- import { ParameterControls, ParamOnChange } from '../controls/parameters';
- import { PluginContext } from '../../mol-plugin/context';
- import { ParamDefinition as PD } from '../../mol-util/param-definition';
- import { Subject } from 'rxjs';
- import { Icon } from '../controls/icons';
- import { ExpandGroup } from '../controls/common';
- export { StateTransformParameters, TransformControlBase };
- class StateTransformParameters extends PurePluginUIComponent<StateTransformParameters.Props> {
- validate(params: any) {
- // TODO
- return void 0;
- }
- areInitial(params: any) {
- return PD.areEqual(this.props.info.params, params, this.props.info.initialValues);
- }
- onChange: ParamOnChange = ({ name, value }) => {
- const params = { ...this.props.params, [name]: value };
- this.props.events.onChange(params, this.areInitial(params), this.validate(params));
- };
- render() {
- return <ParameterControls params={this.props.info.params} values={this.props.params} onChange={this.onChange} onEnter={this.props.events.onEnter} isDisabled={this.props.isDisabled} />;
- }
- }
- namespace StateTransformParameters {
- export interface Props {
- info: {
- params: PD.Params,
- initialValues: any,
- isEmpty: boolean
- },
- events: {
- onChange: (params: any, areInitial: boolean, errors?: string[]) => void,
- onEnter: () => void,
- }
- params: any,
- isDisabled?: boolean,
- a?: StateObject,
- b?: StateObject
- }
- export type Class = React.ComponentClass<Props>
- function areParamsEmpty(params: PD.Params) {
- const keys = Object.keys(params);
- for (const k of keys) {
- if (!params[k].isHidden) return false;
- }
- return true;
- }
- export function infoFromAction(plugin: PluginContext, state: State, action: StateAction, nodeRef: StateTransform.Ref): Props['info'] {
- const source = state.cells.get(nodeRef)!.obj!;
- const params = action.definition.params ? action.definition.params(source, plugin) : { };
- const initialValues = PD.getDefaultValues(params);
- return {
- initialValues,
- params,
- isEmpty: areParamsEmpty(params)
- };
- }
- export function infoFromTransform(plugin: PluginContext, state: State, transform: StateTransform): Props['info'] {
- const cell = state.cells.get(transform.ref)!;
- // const source: StateObjectCell | undefined = (cell.sourceRef && state.cells.get(cell.sourceRef)!) || void 0;
- // const create = transform.transformer.definition.params;
- // const params = create ? create((source && source.obj) as any, plugin) : { };
- const params = (cell.params && cell.params.definition) || { };
- const initialValues = (cell.params && cell.params.values) || { };
- return {
- initialValues,
- params,
- isEmpty: areParamsEmpty(params)
- }
- }
- }
- namespace TransformControlBase {
- export interface ComponentState {
- params: any,
- error?: string,
- busy: boolean,
- isInitial: boolean,
- simpleOnly?: boolean,
- isCollapsed?: boolean
- }
- }
- abstract class TransformControlBase<P, S extends TransformControlBase.ComponentState> extends PurePluginUIComponent<P & { noMargin?: boolean, applyLabel?: string, onApply?: () => void, wrapInExpander?: boolean }, S> {
- abstract applyAction(): Promise<void>;
- abstract getInfo(): StateTransformParameters.Props['info'];
- abstract getHeader(): StateTransformer.Definition['display'] | 'none';
- abstract canApply(): boolean;
- abstract getTransformerId(): string;
- abstract canAutoApply(newParams: any): boolean;
- abstract applyText(): string;
- abstract isUpdate(): boolean;
- abstract getSourceAndTarget(): { a?: StateObject, b?: StateObject };
- abstract state: S;
- private busy: Subject<boolean>;
- private onEnter = () => {
- if (this.state.error) return;
- this.apply();
- }
- private autoApplyHandle: number | undefined = void 0;
- private clearAutoApply() {
- if (this.autoApplyHandle !== void 0) {
- clearTimeout(this.autoApplyHandle);
- this.autoApplyHandle = void 0;
- }
- }
- events: StateTransformParameters.Props['events'] = {
- onEnter: this.onEnter,
- onChange: (params, isInitial, errors) => {
- this.clearAutoApply();
- this.setState({ params, isInitial, error: errors && errors[0] }, () => {
- if (!isInitial && !this.state.error && this.canAutoApply(params)) {
- this.clearAutoApply();
- this.autoApplyHandle = setTimeout(this.apply, 50) as any as number;
- }
- });
- }
- }
- apply = async () => {
- this.clearAutoApply();
- this.setState({ busy: true });
- try {
- await this.applyAction();
- } catch {
- // eat errors because they should be handled elsewhere
- } finally {
- this.props.onApply?.();
- this.busy.next(false);
- }
- }
- init() {
- this.busy = new Subject();
- this.subscribe(this.busy, busy => this.setState({ busy }));
- }
- refresh = () => {
- this.setState({ params: this.getInfo().initialValues, isInitial: true, error: void 0 });
- }
- setDefault = () => {
- const info = this.getInfo();
- const params = PD.getDefaultValues(info.params);
- this.setState({ params, isInitial: PD.areEqual(info.params, params, info.initialValues), error: void 0 });
- }
- toggleExpanded = () => {
- this.setState({ isCollapsed: !this.state.isCollapsed });
- }
- render() {
- const info = this.getInfo();
- const isEmpty = info.isEmpty && this.isUpdate();
- const display = this.getHeader();
- const tId = this.getTransformerId();
- const ParamEditor: StateTransformParameters.Class = this.plugin.customParamEditors.has(tId)
- ? this.plugin.customParamEditors.get(tId)!
- : StateTransformParameters;
- const wrapClass = this.state.isCollapsed
- ? 'msp-transform-wrapper msp-transform-wrapper-collapsed'
- : 'msp-transform-wrapper';
- const { a, b } = this.getSourceAndTarget();
- const showBack = this.isUpdate() && !(this.state.busy || this.state.isInitial);
- const ctrl = <div className={wrapClass} style={{ marginBottom: this.props.noMargin ? 0 : void 0 }}>
- {display !== 'none' && !this.props.wrapInExpander && <div className='msp-transform-header'>
- <button className={`msp-btn msp-btn-block${isEmpty ? '' : ' msp-btn-collapse'}`} onClick={this.toggleExpanded} title={display.description}>
- {!isEmpty && <Icon name={this.state.isCollapsed ? 'expand' : 'collapse'} />}
- {display.name}
- </button>
- </div>}
- {!isEmpty && !this.state.isCollapsed && <>
- <ParamEditor info={info} a={a} b={b} events={this.events} params={this.state.params} isDisabled={this.state.busy} />
- <div className='msp-transform-apply-wrap'>
- <button className='msp-btn msp-btn-block msp-transform-default-params' onClick={this.setDefault} disabled={this.state.busy} title='Set default params'><Icon name='cw' /></button>
- {showBack && <button className='msp-btn msp-btn-block msp-transform-refresh msp-form-control' title='Refresh params' onClick={this.refresh} disabled={this.state.busy || this.state.isInitial}>
- <Icon name='back' /> Back
- </button>}
- <div className={`msp-transform-apply${!showBack ? ' msp-transform-apply-wider' : ''}`}>
- <button className={`msp-btn msp-btn-block msp-btn-commit msp-btn-commit-${this.canApply() ? 'on' : 'off'}`} onClick={this.apply} disabled={!this.canApply()}>
- {this.canApply() && <Icon name='ok' />}
- {this.props.applyLabel || this.applyText()}
- </button>
- </div>
- </div>
- </>}
- </div>;
- if (isEmpty || !this.props.wrapInExpander) return ctrl;
- return <ExpandGroup header={this.isUpdate() ? `Update ${display === 'none' ? '' : display.name}` : `Apply ${display === 'none' ? '' : display.name}` }>
- {ctrl}
- </ExpandGroup>;
- }
- }
|