import './ToolbarRow.css'; import React, { Component } from 'react'; import { ExpandableToolMenu, RoundedButtonGroup, ToolbarButton, } from 'react-viewerbase'; import { commandsManager, extensionManager } from './../App.js'; import ConnectedCineDialog from './ConnectedCineDialog'; import ConnectedLayoutButton from './ConnectedLayoutButton'; import ConnectedPluginSwitch from './ConnectedPluginSwitch.js'; import { MODULE_TYPES } from 'ohif-core'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; class ToolbarRow extends Component { // TODO: Simplify these? isOpen can be computed if we say "any" value for selected, // closed if selected is null/undefined static propTypes = { isLeftSidePanelOpen: PropTypes.bool.isRequired, isRightSidePanelOpen: PropTypes.bool.isRequired, selectedLeftSidePanel: PropTypes.string.isRequired, selectedRightSidePanel: PropTypes.string.isRequired, handleSidePanelChange: PropTypes.func, activeContexts: PropTypes.arrayOf(PropTypes.string).isRequired, }; constructor(props) { super(props); const toolbarButtonDefinitions = _getVisibleToolbarButtons.call(this); // TODO: // If it's a tool that can be active... Mark it as active? // - Tools that are on/off? // - Tools that can be bound to multiple buttons? // Normal ToolbarButtons... // Just how high do we need to hoist this state? // Why ToolbarRow instead of just Toolbar? Do we have any others? this.state = { toolbarButtons: toolbarButtonDefinitions, activeButtons: [], isCineDialogOpen: false, }; this._handleBuiltIn = _handleBuiltIn.bind(this); const panelModules = extensionManager.modules[MODULE_TYPES.PANEL]; this.buttonGroups = { left: [ // TODO: This should come from extensions, instead of being baked in { value: 'studies', icon: 'th-large', bottomLabel: this.props.t('Series'), }, ], right: [], }; panelModules.forEach(panelExtension => { const panelModule = panelExtension.module; const defaultContexts = Array.from(panelModule.defaultContext); // MENU OPTIONS panelModule.menuOptions.forEach(menuOption => { const contexts = Array.from(menuOption.context || defaultContexts); const activeContextIncludesAnyPanelContexts = this.props.activeContexts.some( actx => contexts.includes(actx) ); if (activeContextIncludesAnyPanelContexts) { const menuOptionEntry = { value: menuOption.target, icon: menuOption.icon, bottomLabel: menuOption.label, }; const from = menuOption.from || 'right'; this.buttonGroups[from].push(menuOptionEntry); } }); }); } componentDidUpdate(prevProps) { const activeContextsChanged = prevProps.activeContexts !== this.props.activeContexts; if (activeContextsChanged) { this.setState({ toolbarButtons: _getVisibleToolbarButtons.call(this), }); } } render() { const buttonComponents = _getButtonComponents.call( this, this.state.toolbarButtons, this.state.activeButtons ); const cineDialogContainerStyle = { display: this.state.isCineDialogOpen ? 'block' : 'none', position: 'absolute', top: '82px', zIndex: 999, }; const onPress = (side, value) => { this.props.handleSidePanelChange(side, value); }; const onPressLeft = onPress.bind(this, 'left'); const onPressRight = onPress.bind(this, 'right'); return ( <>