mirror of
https://github.com/grafana/grafana.git
synced 2025-09-28 11:23:59 +08:00
35 lines
974 B
TypeScript
35 lines
974 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
import { AnyAction } from 'redux';
|
|
|
|
import { LoadingState } from '@grafana/data';
|
|
import { DashboardSearchItem } from 'app/features/search/types';
|
|
|
|
export interface DeleteLibraryPanelModalState {
|
|
loadingState: LoadingState;
|
|
dashboardTitles: string[];
|
|
}
|
|
|
|
export const initialDeleteLibraryPanelModalState: DeleteLibraryPanelModalState = {
|
|
loadingState: LoadingState.Loading,
|
|
dashboardTitles: [],
|
|
};
|
|
|
|
export const searchCompleted = createAction<{ dashboards: DashboardSearchItem[] }>(
|
|
'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;
|
|
};
|