/** * Copyright (c) 2018 - 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import ArrowDropDown from '@material-ui/icons/ArrowDropDown'; import ArrowRight from '@material-ui/icons/ArrowRight'; import Close from '@material-ui/icons/Close'; import DeleteOutlined from '@material-ui/icons/DeleteOutlined'; import HomeOutlined from '@material-ui/icons/HomeOutlined'; import VisibilityOffOutlined from '@material-ui/icons/VisibilityOffOutlined'; import VisibilityOutlined from '@material-ui/icons/VisibilityOutlined'; import * as React from 'react'; import { debounceTime, filter } from 'rxjs/operators'; import { PluginStateObject } from '../../mol-plugin-state/objects'; import { PluginCommands } from '../../mol-plugin/commands'; import { State, StateAction, StateObject, StateObjectCell, StateTransform } from '../../mol-state'; import { StateTreeSpine } from '../../mol-state/tree/spine'; import { PluginUIComponent, _Props, _State } from '../base'; import { ActionMenu } from '../controls/action-menu'; import { Button, ControlGroup, IconButton } from '../controls/common'; import { Icon } from '../controls/icons'; import { ApplyActionControl } from './apply-action'; import { UpdateTransformControl } from './update-transform'; export class StateTree extends PluginUIComponent<{ state: State }, { showActions: boolean }> { state = { showActions: true }; componentDidMount() { this.subscribe(this.plugin.state.events.cell.created, e => { if (e.cell.transform.parent === StateTransform.RootRef) this.forceUpdate(); }); this.subscribe(this.plugin.state.events.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

Nothing to see here yet.

Structures and Volumes can be loaded from the tab.

; } return ; } } class StateTreeNode extends PluginUIComponent<{ cell: StateObjectCell, depth: number }, { isCollapsed: boolean, isNull: boolean, showLabel: 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.state.events.cell.stateUpdated, e => { if (this.props.cell === e.cell && this.is(e) && e.state.cells.has(this.ref)) { if (this.state.isCollapsed !== !!e.cell.state.isCollapsed || this.state.isNull !== StateTreeNode.isNull(e.cell) || this.state.showLabel !== StateTreeNode.showLabel(e.cell)) { this.forceUpdate(); } } }); this.subscribe(this.plugin.state.events.cell.created, e => { if (this.props.cell.parent === e.state && this.ref === e.cell.transform.parent) { this.forceUpdate(); } }); this.subscribe(this.plugin.state.events.cell.removed, e => { if (this.props.cell.parent === e.state && this.ref === e.parent) { this.forceUpdate(); } }); } state = { isCollapsed: !!this.props.cell.state.isCollapsed, isNull: StateTreeNode.isNull(this.props.cell), showLabel: StateTreeNode.showLabel(this.props.cell) } static getDerivedStateFromProps(props: _Props, state: _State): _State | null { const isNull = StateTreeNode.isNull(props.cell); const showLabel = StateTreeNode.showLabel(props.cell); if (!!props.cell.state.isCollapsed === state.isCollapsed && state.isNull === isNull && state.showLabel === showLabel) return null; return { isCollapsed: !!props.cell.state.isCollapsed, isNull, showLabel }; } private static hasDecorator(cell: StateObjectCell) { const children = cell.parent!.tree.children.get(cell.transform.ref); if (children.size !== 1) return false; return !!cell.parent?.tree.transforms.get(children.first()).transformer.definition.isDecorator; } private static isNull(cell?: StateObjectCell) { return !cell || !cell.parent || cell.obj === StateObject.Null || !cell.parent.tree.transforms.has(cell.transform.ref); } private static showLabel(cell: StateObjectCell) { return (cell.transform.ref !== StateTransform.RootRef) && (cell.status !== 'ok' || (!cell.state.isGhost && !StateTreeNode.hasDecorator(cell))); } render() { if (this.state.isNull) { return null; } const cell = this.props.cell!; const children = cell.parent!.tree.children.get(this.ref); if (!this.state.showLabel) { if (children.size === 0) return null; return <> {children.map(c => )} ; } const newDepth = this.props.depth + 1; return <> {children.size === 0 ? void 0 :
{children.map(c => )}
} ; } } interface StateTreeNodeLabelState { isCurrent: boolean, isCollapsed: boolean, action?: 'options' | 'apply', currentAction?: StateAction } class StateTreeNodeLabel extends PluginUIComponent<{ cell: StateObjectCell, depth: number }, StateTreeNodeLabelState> { 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.state.events.cell.stateUpdated.pipe(filter(e => this.is(e)), debounceTime(33)), e => { this.forceUpdate(); }); this.subscribe(this.props.cell.parent!.behaviors.currentObject, e => { if (!this.is(e)) { if (this.state.isCurrent && e.state.transforms.has(this.ref)) { this._setCurrent(this.props.cell.parent!.current === this.ref, this.state.isCollapsed); } return; } if (e.state.transforms.has(this.ref)) { this._setCurrent(this.props.cell.parent!.current === this.ref, !!this.props.cell.state.isCollapsed); } }); } private _setCurrent(isCurrent: boolean, isCollapsed: boolean) { if (isCurrent) { this.setState({ isCurrent, action: 'options', currentAction: void 0, isCollapsed }); } else { this.setState({ isCurrent, action: void 0, currentAction: void 0, isCollapsed }); } } state: StateTreeNodeLabelState = { isCurrent: this.props.cell.parent!.current === this.ref, isCollapsed: !!this.props.cell.state.isCollapsed, action: void 0, currentAction: void 0 as StateAction | undefined } static getDerivedStateFromProps(props: _Props, state: _State): _State | null { const isCurrent = props.cell.parent!.current === props.cell.transform.ref; const isCollapsed = !!props.cell.state.isCollapsed; if (state.isCollapsed === isCollapsed && state.isCurrent === isCurrent) return null; return { isCurrent, isCollapsed, action: void 0, currentAction: void 0 }; } setCurrent = (e?: React.MouseEvent) => { e?.preventDefault(); e?.currentTarget.blur(); PluginCommands.State.SetCurrentObject(this.plugin, { state: this.props.cell.parent!, ref: this.ref }); } setCurrentRoot = (e?: React.MouseEvent) => { e?.preventDefault(); e?.currentTarget.blur(); PluginCommands.State.SetCurrentObject(this.plugin, { state: this.props.cell.parent!, ref: StateTransform.RootRef }); } remove = (e?: React.MouseEvent) => { e?.preventDefault(); PluginCommands.State.RemoveObject(this.plugin, { state: this.props.cell.parent!, ref: this.ref, removeParentGhosts: true }); } toggleVisible = (e: React.MouseEvent) => { e.preventDefault(); PluginCommands.State.ToggleVisibility(this.plugin, { state: this.props.cell.parent!, ref: this.ref }); e.currentTarget.blur(); } toggleExpanded = (e: React.MouseEvent) => { e.preventDefault(); PluginCommands.State.ToggleExpanded(this.plugin, { state: this.props.cell.parent!, ref: this.ref }); e.currentTarget.blur(); } highlight = (e: React.MouseEvent) => { e.preventDefault(); PluginCommands.Interactivity.Object.Highlight(this.plugin, { state: this.props.cell.parent!, ref: this.ref }); e.currentTarget.blur(); } clearHighlight = (e: React.MouseEvent) => { e.preventDefault(); PluginCommands.Interactivity.ClearHighlights(this.plugin); e.currentTarget.blur(); } hideApply = () => { this.setCurrentRoot(); } get actions() { const cell = this.props.cell; const actions = [...cell.parent!.actions.fromCell(cell, this.plugin)]; if (actions.length === 0) return; actions.sort((a, b) => a.definition.display.name < b.definition.display.name ? -1 : a.definition.display.name === b.definition.display.name ? 0 : 1); return [ ActionMenu.Header('Apply Action'), ...actions.map(a => ActionMenu.Item(a.definition.display.name, () => this.setState({ action: 'apply', currentAction: a }))) ]; } selectAction: ActionMenu.OnSelect = item => { if (!item) return; (item?.value as any)(); } updates(margin: string) { const cell = this.props.cell; const decoratorChain = StateTreeSpine.getDecoratorChain(cell.parent!, cell.transform.ref); const decorators = []; for (let i = decoratorChain.length - 1; i >= 0; i--) { const d = decoratorChain[i]; decorators!.push(); } return
{decorators}
; } render() { const cell = this.props.cell; const n = cell.transform; if (!cell) return null; const isCurrent = this.is(cell.parent!.behaviors.currentObject.value); const disabled = cell.status !== 'error' && cell.status !== 'ok'; let label: React.ReactNode; if (cell.status === 'error' || !cell.obj) { const name = cell.status === 'error' ? cell.errorText : n.transformer.definition.display.name; label = ; } else { const obj = cell.obj as PluginStateObject.Any; const title = `${obj.label} ${obj.description ? obj.description : ''}`; label = ; } const children = cell.parent!.tree.children.get(this.ref); const cellState = cell.state; const expand = 0 ? 'visible' : 'hidden' }} />; const remove = !cell.state.isLocked ? : void 0; const visibility = ; const marginStyle: React.CSSProperties = { marginLeft: `${this.props.depth * 8}px` }; const row =
{expand} {label} {remove} {visibility}
; if (!isCurrent) return row; if (this.state.action === 'apply' && this.state.currentAction) { return
{row}
; } if (this.state.action === 'options') { const actions = this.actions; const updates = this.updates(`${this.props.depth * 8 + 21}px`); return
{row} {updates} {actions &&
}
; } return row; } }