mirror of
https://github.com/grafana/grafana.git
synced 2025-09-21 04:02:57 +08:00
145 lines
4.1 KiB
TypeScript
145 lines
4.1 KiB
TypeScript
import { t } from '@lingui/macro';
|
|
import React from 'react';
|
|
|
|
import { reportInteraction } from '@grafana/runtime/src';
|
|
import { Modal, ModalTabsHeader, TabContent } from '@grafana/ui';
|
|
import { config } from 'app/core/config';
|
|
import { contextSrv } from 'app/core/core';
|
|
import { DashboardModel, PanelModel } from 'app/features/dashboard/state';
|
|
import { isPanelModelLibraryPanel } from 'app/features/library-panels/guard';
|
|
|
|
import { ShareEmbed } from './ShareEmbed';
|
|
import { ShareExport } from './ShareExport';
|
|
import { ShareLibraryPanel } from './ShareLibraryPanel';
|
|
import { ShareLink } from './ShareLink';
|
|
import { SharePublicDashboard } from './SharePublicDashboard';
|
|
import { ShareSnapshot } from './ShareSnapshot';
|
|
import { ShareModalTabModel } from './types';
|
|
|
|
const customDashboardTabs: ShareModalTabModel[] = [];
|
|
const customPanelTabs: ShareModalTabModel[] = [];
|
|
|
|
export function addDashboardShareTab(tab: ShareModalTabModel) {
|
|
customDashboardTabs.push(tab);
|
|
}
|
|
|
|
export function addPanelShareTab(tab: ShareModalTabModel) {
|
|
customPanelTabs.push(tab);
|
|
}
|
|
|
|
function getInitialState(props: Props): State {
|
|
const tabs = getTabs(props);
|
|
return {
|
|
tabs,
|
|
activeTab: tabs[0].value,
|
|
};
|
|
}
|
|
|
|
function getTabs(props: Props) {
|
|
const { panel } = props;
|
|
|
|
const linkLabel = t({ id: 'share-modal.tab-title.link', message: 'Link' });
|
|
const tabs: ShareModalTabModel[] = [{ label: linkLabel, value: 'link', component: ShareLink }];
|
|
|
|
if (contextSrv.isSignedIn) {
|
|
const snapshotLabel = t({ id: 'share-modal.tab-title.snapshot', message: 'Snapshot' });
|
|
tabs.push({ label: snapshotLabel, value: 'snapshot', component: ShareSnapshot });
|
|
}
|
|
|
|
if (panel) {
|
|
const embedLabel = t({ id: 'share-modal.tab-title.embed', message: 'Embed' });
|
|
tabs.push({ label: embedLabel, value: 'embed', component: ShareEmbed });
|
|
|
|
if (!isPanelModelLibraryPanel(panel)) {
|
|
const libraryPanelLabel = t({ id: 'share-modal.tab-title.library-panel', message: 'Library panel' });
|
|
tabs.push({ label: libraryPanelLabel, value: 'library_panel', component: ShareLibraryPanel });
|
|
}
|
|
tabs.push(...customPanelTabs);
|
|
} else {
|
|
const exportLabel = t({ id: 'share-modal.tab-title.export', message: 'Export' });
|
|
tabs.push({ label: exportLabel, value: 'export', component: ShareExport });
|
|
tabs.push(...customDashboardTabs);
|
|
}
|
|
|
|
if (Boolean(config.featureToggles['publicDashboards'])) {
|
|
tabs.push({ label: 'Public Dashboard', value: 'share', component: SharePublicDashboard });
|
|
}
|
|
|
|
return tabs;
|
|
}
|
|
|
|
interface Props {
|
|
dashboard: DashboardModel;
|
|
panel?: PanelModel;
|
|
|
|
onDismiss(): void;
|
|
}
|
|
|
|
interface State {
|
|
tabs: ShareModalTabModel[];
|
|
activeTab: string;
|
|
}
|
|
|
|
export class ShareModal extends React.Component<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
this.state = getInitialState(props);
|
|
}
|
|
|
|
componentDidMount() {
|
|
reportInteraction('grafana_dashboards_share_modal_viewed');
|
|
}
|
|
|
|
onSelectTab = (t: any) => {
|
|
this.setState({ activeTab: t.value });
|
|
};
|
|
|
|
getTabs() {
|
|
return getTabs(this.props);
|
|
}
|
|
|
|
getActiveTab() {
|
|
const { tabs, activeTab } = this.state;
|
|
return tabs.find((t) => t.value === activeTab)!;
|
|
}
|
|
|
|
renderTitle() {
|
|
const { panel } = this.props;
|
|
const { activeTab } = this.state;
|
|
const title = panel
|
|
? t({
|
|
id: 'share-modal.panel.title',
|
|
message: 'Share Panel',
|
|
})
|
|
: t({
|
|
id: 'share-modal.dashboard.title',
|
|
message: 'Share',
|
|
});
|
|
const tabs = this.getTabs();
|
|
|
|
return (
|
|
<ModalTabsHeader
|
|
title={title}
|
|
icon="share-alt"
|
|
tabs={tabs}
|
|
activeTab={activeTab}
|
|
onChangeTab={this.onSelectTab}
|
|
/>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { dashboard, panel } = this.props;
|
|
const activeTabModel = this.getActiveTab();
|
|
const ActiveTab = activeTabModel.component;
|
|
|
|
return (
|
|
<Modal isOpen={true} title={this.renderTitle()} onDismiss={this.props.onDismiss}>
|
|
<TabContent>
|
|
<ActiveTab dashboard={dashboard} panel={panel} onDismiss={this.props.onDismiss} />
|
|
</TabContent>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|