import './ToolbarRow.css'; import React, { Component } from 'react'; import { RoundedButtonGroup, ToolbarButton } from 'react-viewerbase'; import { commandsManager, extensionManager } from './../App.js'; import ConnectedLayoutButton from './ConnectedLayoutButton'; import ConnectedPluginSwitch from './ConnectedPluginSwitch.js'; import { MODULE_TYPES } from 'ohif-core'; import PropTypes from 'prop-types'; class ToolbarRow extends Component { static propTypes = { leftSidebarOpen: PropTypes.bool.isRequired, rightSidebarOpen: PropTypes.bool.isRequired, setLeftSidebarOpen: PropTypes.func, setRightSidebarOpen: PropTypes.func, activeContexts: PropTypes.arrayOf(PropTypes.string).isRequired, }; static defaultProps = { leftSidebarOpen: false, rightSidebarOpen: false, }; 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: [], }; } componentDidUpdate(prevProps) { const activeContextsChanged = prevProps.activeContexts !== this.props.activeContexts; if (activeContextsChanged) { this.setState({ toolbarButtons: _getVisibleToolbarButtons.call(this), }); } } onLeftSidebarValueChanged = value => { this.props.setLeftSidebarOpen(!!value); }; onRightSidebarValueChanged = value => { this.props.setRightSidebarOpen(!!value); }; render() { const leftSidebarToggle = [ { value: 'studies', icon: 'th-large', bottomLabel: 'Series', }, ]; const rightSidebarToggle = [ { value: 'measurements', icon: 'list', bottomLabel: 'Measurements', }, ]; const leftSidebarValue = this.props.leftSidebarOpen ? leftSidebarToggle[0].value : null; const rightSidebarValue = this.props.rightSidebarOpen ? rightSidebarToggle[0].value : null; //const getButtonComponents = _getButtonComponents.bind(this); const buttonComponents = _getButtonComponents.call( this, this.state.toolbarButtons, this.state.activeButtons ); return (