The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/dashboard-scene/sharing/ShareLibraryPanelTab.tsx

63 lines
2.4 KiB

import { config } from '@grafana/runtime';
import { SceneComponentProps, SceneObjectBase, SceneObjectRef, VizPanel } from '@grafana/scenes';
import { LibraryPanel } from '@grafana/schema/dist/esm/index.gen';
import { t } from 'app/core/internationalization';
import { ShareLibraryPanel } from 'app/features/dashboard/components/ShareModal/ShareLibraryPanel';
import { shareDashboardType } from 'app/features/dashboard/components/ShareModal/utils';
import { DashboardModel } from 'app/features/dashboard/state/DashboardModel';
import { PanelModel } from 'app/features/dashboard/state/PanelModel';
import { DashboardGridItem } from '../scene/layout-default/DashboardGridItem';
import { gridItemToPanel, transformSceneToSaveModel } from '../serialization/transformSceneToSaveModel';
import { getDashboardSceneFor } from '../utils/utils';
import { SceneShareTabState } from './types';
export interface ShareLibraryPanelTabState extends SceneShareTabState {
panelRef?: SceneObjectRef<VizPanel>;
}
export class ShareLibraryPanelTab extends SceneObjectBase<ShareLibraryPanelTabState> {
public tabId = shareDashboardType.libraryPanel;
static Component = ShareLibraryPanelTabRenderer;
public getTabLabel() {
return config.featureToggles.newDashboardSharingComponent
? t('share-panel.drawer.new-library-panel-title', 'New library panel')
: t('share-modal.tab-title.library-panel', 'Library panel');
}
}
function ShareLibraryPanelTabRenderer({ model }: SceneComponentProps<ShareLibraryPanelTab>) {
const { panelRef, modalRef } = model.useState();
if (!panelRef) {
return null;
}
const panel = panelRef.resolve();
const parent = panel.parent;
if (parent instanceof DashboardGridItem) {
const dashboardScene = getDashboardSceneFor(model);
const panelJson = gridItemToPanel(parent);
const panelModel = new PanelModel(panelJson);
const dashboardJson = transformSceneToSaveModel(dashboardScene);
const dashboardModel = new DashboardModel(dashboardJson);
return (
<ShareLibraryPanel
initialFolderUid={dashboardScene.state.meta.folderUid}
dashboard={dashboardModel}
panel={panelModel}
onDismiss={() => {
modalRef ? modalRef.resolve().onDismiss() : dashboardScene.closeModal();
}}
onCreateLibraryPanel={(libPanel: LibraryPanel) => dashboardScene.createLibraryPanel(panel, libPanel)}
/>
);
}
return null;
}