123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- /**
- * Copyright (c) 2018 - 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- import * as React from 'react';
- import { PluginStateObject } from 'mol-plugin/state/objects';
- import { State, StateObject, StateTransform, StateObjectCell } from 'mol-state'
- import { PluginCommands } from 'mol-plugin/command';
- import { PluginUIComponent, _Props, _State } from '../base';
- import { StateObjectActions } from './actions';
- export class StateTree extends PluginUIComponent<{ state: State }, { showActions: boolean }> {
- state = { showActions: true };
- componentDidMount() {
- this.subscribe(this.plugin.events.state.cell.created, e => {
- if (e.cell.transform.parent === StateTransform.RootRef) this.forceUpdate();
- });
- this.subscribe(this.plugin.events.state.cell.removed, e => {
- if (e.parent === StateTransform.RootRef) this.forceUpdate();
- });
- }
- static getDerivedStateFromProps(props: { state: State }, state: { showActions: boolean }) {
- const n = props.state.tree.root.ref;
- const children = props.state.tree.children.get(n);
- const showActions = children.size === 0;
- if (state.showActions === showActions) return null;
- return { showActions };
- }
- render() {
- const ref = this.props.state.tree.root.ref;
- if (this.state.showActions) {
- return <StateObjectActions state={this.props.state} nodeRef={ref} hideHeader={true} />
- }
- return <StateTreeNode cell={this.props.state.cells.get(ref)!} depth={0} />;
- }
- }
- class StateTreeNode extends PluginUIComponent<{ cell: StateObjectCell, depth: number }, { isCollapsed: boolean }> {
- is(e: State.ObjectEvent) {
- return e.ref === this.ref && e.state === this.props.cell.parent;
- }
- get ref() {
- return this.props.cell.transform.ref;
- }
- componentDidMount() {
- this.subscribe(this.plugin.events.state.cell.stateUpdated, e => {
- if (this.props.cell === e.cell && this.is(e) && e.state.cells.has(this.ref)) {
- this.forceUpdate();
- // if (!!this.props.cell.transform.state.isCollapsed !== this.state.isCollapsed) {
- // this.setState({ isCollapsed: !!e.cell.transform.state.isCollapsed });
- // }
- }
- });
- this.subscribe(this.plugin.events.state.cell.created, e => {
- if (this.props.cell.parent === e.state && this.ref === e.cell.transform.parent) {
- this.forceUpdate();
- }
- });
- this.subscribe(this.plugin.events.state.cell.removed, e => {
- if (this.props.cell.parent === e.state && this.ref === e.parent) {
- this.forceUpdate();
- }
- });
- }
- state = {
- isCollapsed: !!this.props.cell.transform.state.isCollapsed
- }
- static getDerivedStateFromProps(props: _Props<StateTreeNode>, state: _State<StateTreeNode>): _State<StateTreeNode> | null {
- if (!!props.cell.transform.state.isCollapsed === state.isCollapsed) return null;
- return { isCollapsed: !!props.cell.transform.state.isCollapsed };
- }
- render() {
- const cell = this.props.cell;
- if (!cell || cell.obj === StateObject.Null || !cell.parent.tree.transforms.has(cell.transform.ref)) {
- return null;
- }
- const cellState = cell.transform.state;
- const showLabel = cell.status !== 'ok' || !cell.transform.state.isGhost;
- const children = cell.parent.tree.children.get(this.ref);
- const newDepth = showLabel ? this.props.depth + 1 : this.props.depth;
- if (!showLabel) {
- if (children.size === 0) return null;
- return <div style={{ display: cellState.isCollapsed ? 'none' : 'block' }}>
- {children.map(c => <StateTreeNode cell={cell.parent.cells.get(c!)!} key={c} depth={newDepth} />)}
- </div>;
- }
- return <>
- <StateTreeNodeLabel cell={cell} depth={this.props.depth} />
- {children.size === 0
- ? void 0
- : <div style={{ display: cellState.isCollapsed ? 'none' : 'block' }}>
- {children.map(c => <StateTreeNode cell={cell.parent.cells.get(c!)!} key={c} depth={newDepth} />)}
- </div>
- }
- </>;
- }
- }
- class StateTreeNodeLabel extends PluginUIComponent<
- { cell: StateObjectCell, depth: number },
- { isCurrent: boolean, isCollapsed: boolean }> {
- is(e: State.ObjectEvent) {
- return e.ref === this.ref && e.state === this.props.cell.parent;
- }
- get ref() {
- return this.props.cell.transform.ref;
- }
- componentDidMount() {
- this.subscribe(this.plugin.events.state.cell.stateUpdated, e => {
- if (this.is(e)) this.forceUpdate();
- });
- this.subscribe(this.plugin.state.behavior.currentObject, e => {
- if (!this.is(e)) {
- if (this.state.isCurrent && e.state.transforms.has(this.ref)) {
- this.setState({ isCurrent: this.props.cell.parent.current === this.ref });
- }
- return;
- }
- if (e.state.transforms.has(this.ref)) {
- this.setState({
- isCurrent: this.props.cell.parent.current === this.ref,
- isCollapsed: !!this.props.cell.transform.state.isCollapsed
- });
- }
- });
- }
- state = {
- isCurrent: this.props.cell.parent.current === this.ref,
- isCollapsed: !!this.props.cell.transform.state.isCollapsed
- }
- static getDerivedStateFromProps(props: _Props<StateTreeNodeLabel>, state: _State<StateTreeNodeLabel>): _State<StateTreeNodeLabel> | null {
- const isCurrent = props.cell.parent.current === props.cell.transform.ref;
- const isCollapsed = !!props.cell.transform.state.isCollapsed;
- if (state.isCollapsed === isCollapsed && state.isCurrent === isCurrent) return null;
- return { isCurrent, isCollapsed };
- }
- setCurrent = (e: React.MouseEvent<HTMLElement>) => {
- e.preventDefault();
- e.currentTarget.blur();
- PluginCommands.State.SetCurrentObject.dispatch(this.plugin, { state: this.props.cell.parent, ref: this.ref });
- }
- remove = (e: React.MouseEvent<HTMLElement>) => {
- e.preventDefault();
- PluginCommands.State.RemoveObject.dispatch(this.plugin, { state: this.props.cell.parent, ref: this.ref, removeParentGhosts: true });
- }
- toggleVisible = (e: React.MouseEvent<HTMLElement>) => {
- e.preventDefault();
- PluginCommands.State.ToggleVisibility.dispatch(this.plugin, { state: this.props.cell.parent, ref: this.ref });
- e.currentTarget.blur();
- }
- toggleExpanded = (e: React.MouseEvent<HTMLElement>) => {
- e.preventDefault();
- PluginCommands.State.ToggleExpanded.dispatch(this.plugin, { state: this.props.cell.parent, ref: this.ref });
- e.currentTarget.blur();
- }
- highlight = (e: React.MouseEvent<HTMLElement>) => {
- e.preventDefault();
- PluginCommands.State.Highlight.dispatch(this.plugin, { state: this.props.cell.parent, ref: this.ref });
- e.currentTarget.blur();
- }
- clearHighlight = (e: React.MouseEvent<HTMLElement>) => {
- e.preventDefault();
- PluginCommands.State.ClearHighlight.dispatch(this.plugin, { state: this.props.cell.parent, ref: this.ref });
- e.currentTarget.blur();
- }
- // private toggleUpdaterObs = new Subject();
- // toggleUpdater = (e: React.MouseEvent<HTMLAnchorElement>) => {
- // e.preventDefault();
- // e.currentTarget.blur();
- // this.toggleUpdaterObs.next();
- // }
- render() {
- const cell = this.props.cell;
- const n = cell.transform;
- if (!cell) return null;
- const isCurrent = this.state.isCurrent; // this.is(cell.parent.behaviors.currentObject.value);
- let label: any;
- if (cell.status === 'pending' || cell.status === 'processing') {
- const name = n.transformer.definition.display.name;
- label = <><b>[{cell.status}]</b> <span title={name}>{name}</span></>;
- } else if (cell.status !== 'ok' || !cell.obj) {
- const name = n.transformer.definition.display.name;
- const title = `${cell.errorText}`;
- label = <><a title={title} href='#' onClick={this.setCurrent}><b>[{cell.status}]</b> {name}: <i>{cell.errorText}</i> </a></>;
- } else {
- const obj = cell.obj as PluginStateObject.Any;
- const title = `${obj.label} ${obj.description ? obj.description : ''}`
- if (this.state.isCurrent) {
- label = <><a title={title} href='#'><b>{obj.label}</b> {obj.description ? <small>{obj.description}</small> : void 0}</a></>;
- } else {
- label = <><a title={title} href='#' onClick={this.setCurrent}>{obj.label} {obj.description ? <small>{obj.description}</small> : void 0}</a></>;
- }
- }
- const children = cell.parent.tree.children.get(this.ref);
- const cellState = cell.transform.state;
- const visibility = <button onClick={this.toggleVisible} className={`msp-btn msp-btn-link msp-tree-visibility${cellState.isHidden ? ' msp-tree-visibility-hidden' : ''}`}>
- <span className='msp-icon msp-icon-visual-visibility' />
- </button>;
- const style: React.HTMLAttributes<HTMLDivElement>['style'] = {
- marginLeft: /* this.state.isCurrent ? void 0 :*/ `${this.props.depth * 10}px`,
- // paddingLeft: !this.state.isCurrent ? void 0 : `${this.props.depth * 10}px`,
- borderLeft: /* isCurrent || */ this.props.depth === 0 ? 'none' : void 0
- }
- const row = <div className={`msp-tree-row${isCurrent ? ' msp-tree-row-current' : ''}`} onMouseEnter={this.highlight} onMouseLeave={this.clearHighlight} style={style}>
- {label}
- {children.size > 0 && <button onClick={this.toggleExpanded} className='msp-btn msp-btn-link msp-tree-toggle-exp-button'>
- <span className={`msp-icon msp-icon-${cellState.isCollapsed ? 'expand' : 'collapse'}`} />
- </button>}
- {!cell.transform.state.isLocked && <button onClick={this.remove} className='msp-btn msp-btn-link msp-tree-remove-button'>
- <span className='msp-icon msp-icon-remove' />
- </button>}{visibility}
- </div>;
- // if (this.state.isCurrent) {
- // return <>
- // {row}
- // <StateTreeNodeTransform {...this.props} toggleCollapsed={this.toggleUpdaterObs} />
- // </>
- // }
- return row;
- }
- }
- // class StateTreeNodeTransform extends PluginUIComponent<{ nodeRef: string, state: State, depth: number, toggleCollapsed?: Observable<any> }> {
- // componentDidMount() {
- // // this.subscribe(this.plugin.events.state.object.updated, ({ ref, state }) => {
- // // if (this.props.nodeRef !== ref || this.props.state !== state) return;
- // // this.forceUpdate();
- // // });
- // }
- // render() {
- // const ref = this.props.nodeRef;
- // const cell = this.props.state.cells.get(ref)!;
- // const parent: StateObjectCell | undefined = (cell.sourceRef && this.props.state.cells.get(cell.sourceRef)!) || void 0;
- // if (!parent || parent.status !== 'ok') return null;
- // const transform = cell.transform;
- // return <UpdateTransformContol state={this.props.state} transform={transform} initiallyCollapsed={true} toggleCollapsed={this.props.toggleCollapsed} />;
- // }
- // }
|