mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* ServiceAccounts: allow deleting from service account list * Make delete confirmation more explicit
78 lines
2.8 KiB
TypeScript
78 lines
2.8 KiB
TypeScript
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
|
|
import { ApiKey, Role, ServiceAccountDTO, ServiceAccountProfileState, ServiceAccountsState } from 'app/types';
|
|
|
|
export const initialState: ServiceAccountsState = {
|
|
serviceAccounts: [] as ServiceAccountDTO[],
|
|
searchQuery: '',
|
|
searchPage: 1,
|
|
isLoading: true,
|
|
builtInRoles: {},
|
|
roleOptions: [],
|
|
serviceAccountToRemove: null,
|
|
};
|
|
|
|
export const initialStateProfile: ServiceAccountProfileState = {
|
|
serviceAccount: {} as ServiceAccountDTO,
|
|
isLoading: true,
|
|
tokens: [] as ApiKey[],
|
|
};
|
|
|
|
export const serviceAccountProfileSlice = createSlice({
|
|
name: 'serviceaccount',
|
|
initialState: initialStateProfile,
|
|
reducers: {
|
|
serviceAccountLoaded: (state, action: PayloadAction<ServiceAccountDTO>): ServiceAccountProfileState => {
|
|
return { ...state, serviceAccount: action.payload, isLoading: false };
|
|
},
|
|
serviceAccountTokensLoaded: (state, action: PayloadAction<ApiKey[]>): ServiceAccountProfileState => {
|
|
return { ...state, tokens: action.payload, isLoading: false };
|
|
},
|
|
},
|
|
});
|
|
|
|
const serviceAccountsSlice = createSlice({
|
|
name: 'serviceaccounts',
|
|
initialState,
|
|
reducers: {
|
|
serviceAccountsLoaded: (state, action: PayloadAction<ServiceAccountDTO[]>): ServiceAccountsState => {
|
|
return { ...state, isLoading: false, serviceAccounts: action.payload };
|
|
},
|
|
setServiceAccountsSearchQuery: (state, action: PayloadAction<string>): ServiceAccountsState => {
|
|
// reset searchPage otherwise search results won't appear
|
|
return { ...state, searchQuery: action.payload, searchPage: initialState.searchPage };
|
|
},
|
|
setServiceAccountsSearchPage: (state, action: PayloadAction<number>): ServiceAccountsState => {
|
|
return { ...state, searchPage: action.payload };
|
|
},
|
|
acOptionsLoaded: (state, action: PayloadAction<Role[]>): ServiceAccountsState => {
|
|
return { ...state, roleOptions: action.payload };
|
|
},
|
|
builtInRolesLoaded: (state, action: PayloadAction<Record<string, Role[]>>): ServiceAccountsState => {
|
|
return { ...state, builtInRoles: action.payload };
|
|
},
|
|
serviceAccountToRemoveLoaded: (state, action: PayloadAction<ServiceAccountDTO | null>): ServiceAccountsState => {
|
|
return { ...state, serviceAccountToRemove: action.payload };
|
|
},
|
|
},
|
|
});
|
|
|
|
export const {
|
|
setServiceAccountsSearchQuery,
|
|
setServiceAccountsSearchPage,
|
|
serviceAccountsLoaded,
|
|
acOptionsLoaded,
|
|
builtInRolesLoaded,
|
|
serviceAccountToRemoveLoaded,
|
|
} = serviceAccountsSlice.actions;
|
|
|
|
export const { serviceAccountLoaded, serviceAccountTokensLoaded } = serviceAccountProfileSlice.actions;
|
|
|
|
export const serviceAccountProfileReducer = serviceAccountProfileSlice.reducer;
|
|
export const serviceAccountsReducer = serviceAccountsSlice.reducer;
|
|
|
|
export default {
|
|
serviceAccountProfile: serviceAccountProfileReducer,
|
|
serviceAccounts: serviceAccountsReducer,
|
|
};
|