mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
104 lines
2.6 KiB
TypeScript
104 lines
2.6 KiB
TypeScript
|
// Libraries
|
||
|
import React, { Component } from 'react';
|
||
|
import { hot } from 'react-hot-loader';
|
||
|
import { connect } from 'react-redux';
|
||
|
|
||
|
// Types
|
||
|
import { StoreState, UrlQueryMap } from 'app/types';
|
||
|
|
||
|
import Page from 'app/core/components/Page/Page';
|
||
|
import { getPluginSettings } from './PluginSettingsCache';
|
||
|
import { importAppPlugin } from './plugin_loader';
|
||
|
import { AppPlugin, NavModel, AppPluginMeta, PluginType } from '@grafana/ui';
|
||
|
import { getLoadingNav } from './PluginPage';
|
||
|
import { getNotFoundNav, getWarningNav } from 'app/core/nav_model_srv';
|
||
|
import { appEvents } from 'app/core/core';
|
||
|
|
||
|
interface Props {
|
||
|
pluginId: string; // From the angular router
|
||
|
query: UrlQueryMap;
|
||
|
path: string;
|
||
|
slug?: string;
|
||
|
}
|
||
|
|
||
|
interface State {
|
||
|
loading: boolean;
|
||
|
plugin?: AppPlugin;
|
||
|
nav: NavModel;
|
||
|
}
|
||
|
|
||
|
export function getAppPluginPageError(meta: AppPluginMeta) {
|
||
|
if (!meta) {
|
||
|
return 'Unknown Plugin';
|
||
|
}
|
||
|
if (meta.type !== PluginType.app) {
|
||
|
return 'Plugin must be an app';
|
||
|
}
|
||
|
if (!meta.enabled) {
|
||
|
return 'Applicaiton Not Enabled';
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
class AppRootPage extends Component<Props, State> {
|
||
|
constructor(props: Props) {
|
||
|
super(props);
|
||
|
this.state = {
|
||
|
loading: true,
|
||
|
nav: getLoadingNav(),
|
||
|
};
|
||
|
}
|
||
|
|
||
|
async componentDidMount() {
|
||
|
const { pluginId } = this.props;
|
||
|
|
||
|
try {
|
||
|
const app = await getPluginSettings(pluginId).then(info => {
|
||
|
const error = getAppPluginPageError(info);
|
||
|
if (error) {
|
||
|
appEvents.emit('alert-error', [error]);
|
||
|
this.setState({ nav: getWarningNav(error) });
|
||
|
return null;
|
||
|
}
|
||
|
return importAppPlugin(info);
|
||
|
});
|
||
|
this.setState({ plugin: app, loading: false });
|
||
|
} catch (err) {
|
||
|
this.setState({ plugin: null, loading: false, nav: getNotFoundNav() });
|
||
|
}
|
||
|
}
|
||
|
|
||
|
onNavChanged = (nav: NavModel) => {
|
||
|
this.setState({ nav });
|
||
|
};
|
||
|
|
||
|
render() {
|
||
|
const { path, query } = this.props;
|
||
|
const { loading, plugin, nav } = this.state;
|
||
|
|
||
|
if (plugin && !plugin.root) {
|
||
|
// TODO? redirect to plugin page?
|
||
|
return <div>No Root App</div>;
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<Page navModel={nav}>
|
||
|
<Page.Contents isLoading={loading}>
|
||
|
{!loading && plugin && (
|
||
|
<plugin.root meta={plugin.meta} query={query} path={path} onNavChanged={this.onNavChanged} />
|
||
|
)}
|
||
|
</Page.Contents>
|
||
|
</Page>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const mapStateToProps = (state: StoreState) => ({
|
||
|
pluginId: state.location.routeParams.pluginId,
|
||
|
slug: state.location.routeParams.slug,
|
||
|
query: state.location.query,
|
||
|
path: state.location.path,
|
||
|
});
|
||
|
|
||
|
export default hot(module)(connect(mapStateToProps)(AppRootPage));
|