Closed
Description
combineReducers is broken with TypeScript 2.6.1 and Redux 3.7.2
What is the current behavior?
Here is my code
import State from './state'
import { defaultState } from './state'
import { combineReducers, Reducer } from 'redux'
import { Dispatch, Store, Action } from 'redux'
import { reducer as count } from '../feature/counter/counterScreen'
export enum keys {
INCREMENT = 'increment',
DECREMENT = 'decrement',
}
interface IncrementAction {
readonly type: keys.INCREMENT
readonly payload: {
readonly size: number
}
}
const incrementAction = (size: number): IncrementAction => ({
type: keys.INCREMENT,
payload: {
size: size,
},
})
interface DecrementAction {
readonly type: keys.DECREMENT
readonly payload: {
readonly size: number
}
}
const decrementAction = (size: number): DecrementAction => ({
type: keys.DECREMENT,
payload: {
size: size,
},
})
export type ActionTypes = IncrementAction | DecrementAction
/** REDUCER */
export function reducer(state = defaultState.count, action: ActionTypes) {
switch (action.type) {
case keys.DECREMENT:
return state - action.payload.size
case keys.INCREMENT:
return state + action.payload.size
default:
return state
}
}
const rootReducers: Reducer<State> = combineReducers({ count })
export default rootReducers
and here is error:
yarn build v0.27.5
$ yarn run clean && yarn run lint && yarn tsc --
src/app/reducers.ts(53,54): error TS2345: Argument of type '{ count: (state: number | undefined, action: ActionTypes) => number; }' is not assignable to parameter of type 'ReducersMapObject'.
Property 'count' is incompatible with index signature.
Type '(state: number | undefined, action: ActionTypes) => number' is not assignable to type 'Reducer<any>'.
Types of parameters 'action' and 'action' are incompatible.
Type 'AnyAction' is not assignable to type 'ActionTypes'.
Type 'AnyAction' is not assignable to type 'DecrementAction'.
Property 'payload' is missing in type 'AnyAction'.
What is the expected behavior?
It should compile and work.
Which versions of Redux, and which browser and OS are affected by this issue? Did this work in previous versions of Redux?
Redux 3.7.2 and Typescript 2.6.1
Hot fix
It works well if I change Reducer definition in index.d.ts
file:
export type Reducer<S, A extends AnyAction> = (state: S, action: A) => S;
And my reducer:
const rootReducers: Reducer<State, ActionTypes> = combineReducers({ count })
How do you think about this issue and hot fix?
Metadata
Metadata
Assignees
Labels
No labels