2021-04-13 06:16:56 -05:00
|
|
|
import React from 'react';
|
2021-04-12 02:41:07 -05:00
|
|
|
import { AnnotationQuery, DataSourceApi } from '@grafana/data';
|
|
|
|
import { AngularComponent, getAngularLoader } from '@grafana/runtime';
|
|
|
|
|
|
|
|
export interface Props {
|
|
|
|
annotation: AnnotationQuery;
|
|
|
|
datasource: DataSourceApi;
|
|
|
|
onChange: (annotation: AnnotationQuery) => void;
|
|
|
|
}
|
|
|
|
|
2021-04-13 06:16:56 -05:00
|
|
|
export class AngularEditorLoader extends React.PureComponent<Props> {
|
|
|
|
ref: HTMLDivElement | null = null;
|
2021-04-15 07:21:06 -05:00
|
|
|
angularComponent?: AngularComponent;
|
2021-04-12 02:41:07 -05:00
|
|
|
|
2021-04-13 06:16:56 -05:00
|
|
|
componentWillUnmount() {
|
|
|
|
if (this.angularComponent) {
|
|
|
|
this.angularComponent.destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
if (this.ref) {
|
|
|
|
this.loadAngular();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps: Props) {
|
|
|
|
if (prevProps.datasource !== this.props.datasource) {
|
|
|
|
this.loadAngular();
|
|
|
|
}
|
2021-04-12 02:41:07 -05:00
|
|
|
|
2021-04-13 06:16:56 -05:00
|
|
|
if (this.angularComponent && prevProps.annotation !== this.props.annotation) {
|
2021-04-19 02:35:43 -05:00
|
|
|
const scope = this.angularComponent.getScope();
|
|
|
|
scope.ctrl.ignoreNextWatcherFiring = true;
|
|
|
|
scope.ctrl.currentAnnotation = this.props.annotation;
|
2021-04-12 02:41:07 -05:00
|
|
|
}
|
2021-04-13 06:16:56 -05:00
|
|
|
}
|
2021-04-12 02:41:07 -05:00
|
|
|
|
2021-04-13 06:16:56 -05:00
|
|
|
loadAngular() {
|
|
|
|
if (this.angularComponent) {
|
|
|
|
this.angularComponent.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
const loader = getAngularLoader();
|
|
|
|
const template = `<plugin-component ng-if="!ctrl.currentDatasource.annotations" type="annotations-query-ctrl"> </plugin-component>`;
|
|
|
|
const scopeProps = {
|
|
|
|
ctrl: {
|
|
|
|
currentDatasource: this.props.datasource,
|
|
|
|
currentAnnotation: this.props.annotation,
|
2021-04-19 02:35:43 -05:00
|
|
|
ignoreNextWatcherFiring: false,
|
2021-04-13 06:16:56 -05:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
this.angularComponent = loader.load(this.ref, scopeProps, template);
|
|
|
|
this.angularComponent.digest();
|
|
|
|
this.angularComponent.getScope().$watch(() => {
|
2021-04-19 02:35:43 -05:00
|
|
|
// To avoid recursive loop when the annotation is updated from outside angular in componentDidUpdate
|
|
|
|
if (scopeProps.ctrl.ignoreNextWatcherFiring) {
|
|
|
|
scopeProps.ctrl.ignoreNextWatcherFiring = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-13 06:16:56 -05:00
|
|
|
this.props.onChange({
|
|
|
|
...scopeProps.ctrl.currentAnnotation,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <div ref={(element) => (this.ref = element)} />;
|
|
|
|
}
|
|
|
|
}
|