import { css } from '@emotion/css'; import React, { PureComponent } from 'react'; import { connect, MapStateToProps } from 'react-redux'; import { AnnotationQuery } from '@grafana/data'; import { StoreState } from '../../../../types'; import { getSubMenuVariables, getVariablesState } from '../../../variables/state/selectors'; import { VariableModel } from '../../../variables/types'; import { DashboardModel } from '../../state'; import { DashboardLink } from '../../state/DashboardModel'; import { Annotations } from './Annotations'; import { DashboardLinks } from './DashboardLinks'; import { SubMenuItems } from './SubMenuItems'; interface OwnProps { dashboard: DashboardModel; links: DashboardLink[]; annotations: AnnotationQuery[]; } interface ConnectedProps { variables: VariableModel[]; } interface DispatchProps {} type Props = OwnProps & ConnectedProps & DispatchProps; class SubMenuUnConnected extends PureComponent { onAnnotationStateChanged = (updatedAnnotation: any) => { // we're mutating dashboard state directly here until annotations are in Redux. for (let index = 0; index < this.props.dashboard.annotations.list.length; index++) { const annotation = this.props.dashboard.annotations.list[index]; if (annotation.name === updatedAnnotation.name) { annotation.enable = !annotation.enable; break; } } this.props.dashboard.startRefresh(); this.forceUpdate(); }; render() { const { dashboard, variables, links, annotations } = this.props; if (!dashboard.isSubMenuVisible()) { return null; } return (
{dashboard && }
); } } const mapStateToProps: MapStateToProps = (state, ownProps) => { const { uid } = ownProps.dashboard; const templatingState = getVariablesState(uid, state); return { variables: getSubMenuVariables(uid, templatingState.variables), }; }; const styles = css` display: flex; flex-wrap: wrap; display: contents; `; export const SubMenu = connect(mapStateToProps)(SubMenuUnConnected); SubMenu.displayName = 'SubMenu';