The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
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.
 
 
 
 
 
 
grafana/public/app/features/serviceaccounts/state/reducers.ts

130 lines
3.8 KiB

import { createSlice, PayloadAction } from '@reduxjs/toolkit';
import {
ApiKey,
Role,
ServiceAccountDTO,
ServiceAccountProfileState,
ServiceAccountsState,
ServiceAccountStateFilter,
} from 'app/types';
// serviceAccountsProfilePage
export const initialStateProfile: ServiceAccountProfileState = {
serviceAccount: {} as ServiceAccountDTO,
isLoading: true,
tokens: [] as ApiKey[],
};
export const serviceAccountProfileSlice = createSlice({
name: 'serviceaccount',
initialState: initialStateProfile,
reducers: {
serviceAccountFetchBegin: (state) => {
return { ...state, isLoading: true };
},
serviceAccountFetchEnd: (state) => {
return { ...state, isLoading: false };
},
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 };
},
},
});
export const serviceAccountProfileReducer = serviceAccountProfileSlice.reducer;
export const { serviceAccountLoaded, serviceAccountTokensLoaded, serviceAccountFetchBegin, serviceAccountFetchEnd } =
serviceAccountProfileSlice.actions;
// serviceAccountsListPage
export const initialStateList: ServiceAccountsState = {
serviceAccounts: [] as ServiceAccountDTO[],
isLoading: true,
roleOptions: [],
query: '',
page: 0,
perPage: 50,
totalPages: 1,
showPaging: false,
serviceAccountStateFilter: ServiceAccountStateFilter.All,
apiKeysMigrated: false,
showApiKeysMigrationInfo: false,
};
interface ServiceAccountsFetched {
serviceAccounts: ServiceAccountDTO[];
perPage: number;
page: number;
totalCount: number;
}
const serviceAccountsSlice = createSlice({
name: 'serviceaccounts',
initialState: initialStateList,
reducers: {
serviceAccountsFetched: (state, action: PayloadAction<ServiceAccountsFetched>): ServiceAccountsState => {
const { totalCount, perPage, ...rest } = action.payload;
const totalPages = Math.ceil(totalCount / perPage);
return {
...state,
...rest,
totalPages,
perPage,
showPaging: totalPages > 1,
isLoading: false,
};
},
serviceAccountsFetchBegin: (state) => {
return { ...state, isLoading: true };
},
serviceAccountsFetchEnd: (state) => {
return { ...state, isLoading: false };
},
acOptionsLoaded: (state, action: PayloadAction<Role[]>): ServiceAccountsState => {
return { ...state, roleOptions: action.payload };
},
apiKeysMigrationStatusLoaded: (state, action): ServiceAccountsState => {
return { ...state, apiKeysMigrated: action.payload };
},
showApiKeysMigrationInfoLoaded: (state, action): ServiceAccountsState => {
return { ...state, showApiKeysMigrationInfo: action.payload };
},
queryChanged: (state, action: PayloadAction<string>) => {
return {
...state,
query: action.payload,
page: 0,
};
},
pageChanged: (state, action: PayloadAction<number>) => ({
...state,
page: action.payload,
}),
stateFilterChanged: (state, action: PayloadAction<ServiceAccountStateFilter>) => ({
...state,
serviceAccountStateFilter: action.payload,
}),
},
});
export const serviceAccountsReducer = serviceAccountsSlice.reducer;
export const {
serviceAccountsFetchBegin,
serviceAccountsFetchEnd,
serviceAccountsFetched,
acOptionsLoaded,
apiKeysMigrationStatusLoaded,
showApiKeysMigrationInfoLoaded,
pageChanged,
stateFilterChanged,
queryChanged,
} = serviceAccountsSlice.actions;
export default {
serviceAccountProfile: serviceAccountProfileReducer,
serviceAccounts: serviceAccountsReducer,
};