Skip to content

Instantly share code, notes, and snippets.

@OmkarK45
Created December 1, 2021 07:36
Show Gist options
  • Save OmkarK45/9ad09b4e0700e4d9334fbd1b2ff6c01a to your computer and use it in GitHub Desktop.
Save OmkarK45/9ad09b4e0700e4d9334fbd1b2ff6c01a to your computer and use it in GitHub Desktop.
import { ActionType } from '../actionTypes'
import { Action } from '../actions'
interface RepositoriesState {
loading: boolean
error: string | null
data: string[]
}
const initialState = {
loading: false,
error: null,
data: [],
}
const reducer = (
state: RepositoriesState = initialState,
action: Action,
): RepositoriesState => {
switch (action.type) {
case ActionType.SEARCH_REPOSITORIES:
return { loading: true, error: null, data: [] }
case ActionType.SEARCH_REPOSITORIES_SUCCESS:
return { loading: false, error: null, data: action.payload }
case ActionType.SEARCH_REPOSITORIES_ERROR:
return { loading: false, error: action.payload, data: [] }
default:
return state
}
}
export default reducer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment