mirror of
https://github.com/grafana/grafana.git
synced 2025-09-27 20:23:41 +08:00

* Buttons: Use new outline button for cancel & back buttons * More buttons * More tweaks * Updated row snapshot
54 lines
1.9 KiB
TypeScript
54 lines
1.9 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Button, Field, Input, Modal } from '@grafana/ui';
|
|
import { FolderPicker } from 'app/core/components/Select/FolderPicker';
|
|
import { PanelModel } from '../../../dashboard/state';
|
|
import { usePanelSave } from '../../utils/usePanelSave';
|
|
interface AddLibraryPanelContentsProps {
|
|
onDismiss: () => void;
|
|
panel: PanelModel;
|
|
initialFolderId?: number;
|
|
}
|
|
|
|
export const AddLibraryPanelContents = ({ panel, initialFolderId, onDismiss }: AddLibraryPanelContentsProps) => {
|
|
const [folderId, setFolderId] = useState(initialFolderId);
|
|
const [panelTitle, setPanelTitle] = useState(panel.title);
|
|
const { saveLibraryPanel } = usePanelSave();
|
|
|
|
return (
|
|
<>
|
|
<Field label="Library panel name">
|
|
<Input name="name" value={panelTitle} onChange={(e) => setPanelTitle(e.currentTarget.value)} />
|
|
</Field>
|
|
<Field label="Save in folder" description="Library panel permissions are derived from the folder permissions">
|
|
<FolderPicker onChange={({ id }) => setFolderId(id)} initialFolderId={initialFolderId} />
|
|
</Field>
|
|
|
|
<Modal.ButtonRow>
|
|
<Button variant="secondary" onClick={onDismiss} fill="outline">
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
onClick={() => {
|
|
panel.title = panelTitle;
|
|
saveLibraryPanel(panel, folderId!).then(() => onDismiss());
|
|
}}
|
|
>
|
|
Add panel to the panel library
|
|
</Button>
|
|
</Modal.ButtonRow>
|
|
</>
|
|
);
|
|
};
|
|
|
|
interface Props extends AddLibraryPanelContentsProps {
|
|
isOpen?: boolean;
|
|
}
|
|
|
|
export const AddLibraryPanelModal: React.FC<Props> = ({ isOpen = false, panel, initialFolderId, ...props }) => {
|
|
return (
|
|
<Modal title="Add this panel to the panel library" isOpen={isOpen} onDismiss={props.onDismiss}>
|
|
<AddLibraryPanelContents panel={panel} initialFolderId={initialFolderId} onDismiss={props.onDismiss} />
|
|
</Modal>
|
|
);
|
|
};
|