mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
* refactor: move utility functions out of the redux actions * refactor: move password handlers to the feature root * refactor: move API related functions to an api.ts * refactor: move components under a /components folder * refactor: move page containers under a /pages folder and extract components * refactor: update mocks to be easier to reuse * refactor: move tests into a state/tests/ subfolder * refactor: expose 'initialState' for plugins * refactor: move generic types to the root folder of the feature * refactor: import path fixe * refactor: update import paths for app routes * chore: update betterer * refactor: fix type errors due to changed mock functions * chore: fix mocking context_srv in tests * refactor: udpate imports to be more concise * fix: update failing test because of mocks * refactor: use the new `navId` prop where we can * fix: use UID instead ID in datasource edit links * fix:clean up Redux state when unmounting the edit page * refactor: use `uid` instead of `id` * refactor: always fetch the plugin details when editing a datasource The deleted lines could provide performance benefits, although they also make the implementation more prone to errors. (Mostly because we are storing the information about the currently loaded plugin in a single field, and it was not validating if it is for the latest one). We are planning to introduce some kind of caching, but first we would like to clean up the underlying state a bit (plugins & datasources. * fix: add missing dispatch() wrapper for update datasource callback * refactor: prefer using absolute import paths Co-authored-by: Ryan McKinley <ryantxu@gmail.com> * fix: ESLINT import order issue * refactor: put test files next to their files * refactor: use implicit return types for components * fix: remove caching from datasource fetching I have introduced a cache to only fetch data-sources once, however as we are missing a good logic for updating the instances in the Redux store when they change (create, update, delete), this approach is not keeping the UI in sync. Due to this reason I have removed the caching for now, and will reintroduce it once we have a more robust client-side state logic. Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
37 lines
917 B
TypeScript
37 lines
917 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|