mirror of https://github.com/grafana/grafana.git
37 lines
850 B
TypeScript
37 lines
850 B
TypeScript
|
// Libaries
|
||
|
import React, { PureComponent } from 'react';
|
||
|
|
||
|
// Utils & Services
|
||
|
import { AngularComponent, getAngularLoader } from '@grafana/runtime';
|
||
|
|
||
|
// Types
|
||
|
import { DashboardModel } from '../../state/DashboardModel';
|
||
|
|
||
|
export interface Props {
|
||
|
dashboard: DashboardModel | null;
|
||
|
}
|
||
|
|
||
|
export class AngularSubMenu extends PureComponent<Props> {
|
||
|
element: HTMLElement;
|
||
|
angularCmp: AngularComponent;
|
||
|
|
||
|
componentDidMount() {
|
||
|
const loader = getAngularLoader();
|
||
|
|
||
|
const template = '<dashboard-submenu dashboard="dashboard" />';
|
||
|
const scopeProps = { dashboard: this.props.dashboard };
|
||
|
|
||
|
this.angularCmp = loader.load(this.element, scopeProps, template);
|
||
|
}
|
||
|
|
||
|
componentWillUnmount() {
|
||
|
if (this.angularCmp) {
|
||
|
this.angularCmp.destroy();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
return <div ref={element => (this.element = element)} />;
|
||
|
}
|
||
|
}
|