mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* LibraryPanels: Prevents deletion of connected library panels * Refactor: adds the delete library panel modal * Chore: updates after PR comments
34 lines
971 B
TypeScript
34 lines
971 B
TypeScript
import { DashboardSearchHit } from 'app/features/search/types';
|
|
import { LoadingState } from '@grafana/data';
|
|
import { AnyAction } from 'redux';
|
|
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
export interface DeleteLibraryPanelModalState {
|
|
loadingState: LoadingState;
|
|
dashboardTitles: string[];
|
|
}
|
|
|
|
export const initialDeleteLibraryPanelModalState: DeleteLibraryPanelModalState = {
|
|
loadingState: LoadingState.Loading,
|
|
dashboardTitles: [],
|
|
};
|
|
|
|
export const searchCompleted = createAction<{ dashboards: DashboardSearchHit[] }>(
|
|
'libraryPanels/delete/searchCompleted'
|
|
);
|
|
|
|
export const deleteLibraryPanelModalReducer = (
|
|
state: DeleteLibraryPanelModalState = initialDeleteLibraryPanelModalState,
|
|
action: AnyAction
|
|
): DeleteLibraryPanelModalState => {
|
|
if (searchCompleted.match(action)) {
|
|
return {
|
|
...state,
|
|
dashboardTitles: action.payload.dashboards.map((d) => d.title),
|
|
loadingState: LoadingState.Done,
|
|
};
|
|
}
|
|
|
|
return state;
|
|
};
|