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.
30 lines
735 B
30 lines
735 B
import { createSlice } from '@reduxjs/toolkit';
|
|
|
|
import { ApiKeysState } from 'app/types';
|
|
|
|
export const initialApiKeysState: ApiKeysState = {
|
|
keys: [],
|
|
searchQuery: '',
|
|
hasFetched: false,
|
|
};
|
|
|
|
const apiKeysSlice = createSlice({
|
|
name: 'apiKeys',
|
|
initialState: initialApiKeysState,
|
|
reducers: {
|
|
apiKeysLoaded: (state, action): ApiKeysState => {
|
|
return { ...state, hasFetched: true, keys: action.payload };
|
|
},
|
|
setSearchQuery: (state, action): ApiKeysState => {
|
|
return { ...state, searchQuery: action.payload };
|
|
},
|
|
},
|
|
});
|
|
|
|
export const { setSearchQuery, apiKeysLoaded } = apiKeysSlice.actions;
|
|
|
|
export const apiKeysReducer = apiKeysSlice.reducer;
|
|
|
|
export default {
|
|
apiKeys: apiKeysReducer,
|
|
};
|
|
|