mirror of https://github.com/grafana/grafana.git
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { AngularComponent, getAngularLoader } from '@grafana/runtime';
|
|
|
|
import { DashboardModel } from '../../state/DashboardModel';
|
|
|
|
export interface Props {
|
|
dashboard: DashboardModel | null;
|
|
}
|
|
|
|
export class AngularDashboardLinks extends PureComponent<Props> {
|
|
element: HTMLElement;
|
|
angularCmp: AngularComponent;
|
|
|
|
componentDidMount() {
|
|
if (!this.hasLinks()) {
|
|
return;
|
|
}
|
|
|
|
const loader = getAngularLoader();
|
|
const template = '<dash-links-container dashboard="dashboard" links="links" class="gf-form-inline" />';
|
|
const scopeProps = {
|
|
dashboard: this.props.dashboard,
|
|
links: this.props.dashboard.links,
|
|
};
|
|
|
|
this.angularCmp = loader.load(this.element, scopeProps, template);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.angularCmp) {
|
|
this.angularCmp.destroy();
|
|
}
|
|
}
|
|
|
|
hasLinks = () => this.props.dashboard.links.length > 0;
|
|
|
|
render() {
|
|
if (!this.hasLinks()) {
|
|
return null;
|
|
}
|
|
return <div ref={element => (this.element = element)} />;
|
|
}
|
|
}
|