D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
datasources
/
components
/
Filename :
DataSourceLoadError.tsx
back
Copy
import React from 'react'; import { Button } from '@grafana/ui'; import { DataSourceRights } from '../types'; import { DataSourceReadOnlyMessage } from './DataSourceReadOnlyMessage'; export type Props = { dataSourceRights: DataSourceRights; onDelete: () => void; }; export function DataSourceLoadError({ dataSourceRights, onDelete }: Props) { const { readOnly, hasDeleteRights } = dataSourceRights; const canDelete = !readOnly && hasDeleteRights; const navigateBack = () => history.back(); return ( <> {readOnly && <DataSourceReadOnlyMessage />} <div className="gf-form-button-row"> {canDelete && ( <Button type="submit" variant="destructive" onClick={onDelete}> Delete </Button> )} <Button variant="secondary" fill="outline" type="button" onClick={navigateBack}> Back </Button> </div> </> ); }