mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* remove rbacBuiltInRoleAssignmentEnabled from frontendsettings * RBAC: Remove RBACBuiltInRoleAssignmentEnabled * RBAC: Remove code for builtin role * RolePicker: Remove unused prop * RolePicker: Rename builtinRole to basicRole * RolePicker: Rename onBuiltinRoleChange to onBasicRoleChange * RolePicker: Rename properties
131 lines
3.8 KiB
TypeScript
131 lines
3.8 KiB
TypeScript
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,
|
|
};
|