You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
971 B

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;
};