mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import React, { FC } from 'react';
|
|
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { Button, LinkButton } from '@grafana/ui';
|
|
import { contextSrv } from 'app/core/core';
|
|
import { AccessControlAction } from 'app/types/';
|
|
|
|
export interface Props {
|
|
exploreUrl: string;
|
|
canSave: boolean;
|
|
canDelete: boolean;
|
|
onDelete: () => void;
|
|
onSubmit: (event: any) => void;
|
|
onTest: (event: any) => void;
|
|
}
|
|
|
|
const ButtonRow: FC<Props> = ({ canSave, canDelete, onDelete, onSubmit, onTest, exploreUrl }) => {
|
|
const canExploreDataSources = contextSrv.hasPermission(AccessControlAction.DataSourcesExplore);
|
|
|
|
return (
|
|
<div className="gf-form-button-row">
|
|
<Button variant="secondary" fill="solid" type="button" onClick={() => history.back()}>
|
|
Back
|
|
</Button>
|
|
<LinkButton variant="secondary" fill="solid" href={exploreUrl} disabled={!canExploreDataSources}>
|
|
Explore
|
|
</LinkButton>
|
|
<Button
|
|
type="button"
|
|
variant="destructive"
|
|
disabled={!canDelete}
|
|
onClick={onDelete}
|
|
aria-label={selectors.pages.DataSource.delete}
|
|
>
|
|
Delete
|
|
</Button>
|
|
{canSave && (
|
|
<Button
|
|
type="submit"
|
|
variant="primary"
|
|
disabled={!canSave}
|
|
onClick={(event) => onSubmit(event)}
|
|
aria-label={selectors.pages.DataSource.saveAndTest}
|
|
>
|
|
Save & test
|
|
</Button>
|
|
)}
|
|
{!canSave && (
|
|
<Button type="submit" variant="primary" onClick={onTest}>
|
|
Test
|
|
</Button>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ButtonRow;
|