| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import React, { PureComponent } from 'react';
- import _ from 'lodash';
- import { Plugin } from 'app/types';
- import { DataSourceSettings, DataSourcePlugin } from '@grafana/ui/src/types';
- import { getAngularLoader, AngularComponent } from 'app/core/services/AngularLoader';
- export interface Props {
- plugin: DataSourcePlugin;
- dataSource: DataSourceSettings;
- dataSourceMeta: Plugin;
- onModelChange: (dataSource: DataSourceSettings) => void;
- }
- export class PluginSettings extends PureComponent<Props> {
- element: any;
- component: AngularComponent;
- scopeProps: {
- ctrl: { datasourceMeta: Plugin; current: DataSourceSettings };
- onModelChanged: (dataSource: DataSourceSettings) => void;
- };
- constructor(props) {
- super(props);
- this.scopeProps = {
- ctrl: { datasourceMeta: props.dataSourceMeta, current: _.cloneDeep(props.dataSource) },
- onModelChanged: this.onModelChanged,
- };
- this.onModelChanged = this.onModelChanged.bind(this);
- }
- componentDidMount() {
- const { plugin } = this.props;
- if (!this.element) {
- return;
- }
- if (!plugin.components.ConfigEditor) {
- // React editor is not specified, let's render angular editor
- // How to apprach this better? Introduce ReactDataSourcePlugin interface and typeguard it here?
- const loader = getAngularLoader();
- const template = '<plugin-component type="datasource-config-ctrl" />';
- this.component = loader.load(this.element, this.scopeProps, template);
- }
- }
- componentDidUpdate(prevProps) {
- const { plugin } = this.props;
- if (!plugin.components.ConfigEditor && this.props.dataSource !== prevProps.dataSource) {
- this.scopeProps.ctrl.current = _.cloneDeep(this.props.dataSource);
- this.component.digest();
- }
- }
- componentWillUnmount() {
- if (this.component) {
- this.component.destroy();
- }
- }
- onModelChanged = (dataSource: DataSourceSettings) => {
- this.props.onModelChange(dataSource);
- };
- render() {
- const { plugin, dataSource } = this.props;
- if (!plugin) {
- return null;
- }
- return (
- <div ref={element => (this.element = element)}>
- {plugin.components.ConfigEditor &&
- React.createElement(plugin.components.ConfigEditor, {
- options: dataSource,
- onOptionsChange: this.onModelChanged,
- })}
- </div>
- );
- }
- }
- export default PluginSettings;
|