TypeScript Redux Action 创建函数 return 类型

TypeScript Redux Action Create Function return type

使用 FSA 规则创建操作函数。

未指定return类型,eslint中显示warning。

我想在不修改eslint规则的情况下解决问题

是否有一种简单的方法来指定除 any 类型之外的类型?

github source code

const ADD_TODO = 'todos/ADD_TODO' as const;
const TOGGLE_TODO = 'todos/TOGGLE_TODO' as const;
const REMOVE_TODO = 'todos/REMOVE_TODO' as const;

// Missing return type on function!!!
export const addTodo = (text: string) => ({
  type: ADD_TODO,
  payload: text,
});

// Missing return type on function!!!
export const toggleTodo = (id: number) => ({
  type: TOGGLE_TODO,
  payload: id,
});

// Missing return type on function!!!
export const removeTodo = (id: number) => ({
  type: REMOVE_TODO,
  payload: id,
});

type TodosAction = ReturnType<typeof addTodo> | ReturnType<typeof toggleTodo> | ReturnType<typeof removeTodo>;

export type Todo = {
  id: number;
  text: string;
  done: boolean;
};

export type TodosState = Todo[];

const initialState: TodosState = [
  { id: 1, text: 'Hi', done: true },
  { id: 2, text: 'Every', done: true },
  { id: 3, text: 'one', done: false },
];

function todos(state: TodosState = initialState, action: TodosAction): TodosState {
  switch (action.type) {
    case ADD_TODO: {
      const nextId = Math.max(...state.map((todo) => todo.id)) + 1;
      return state.concat({
        id: nextId,
        text: action.payload,
        done: false,
      });
    }
    case TOGGLE_TODO:
      return state.map((todo) => (todo.id === action.payload ? { ...todo, done: !todo.done } : todo));
    case REMOVE_TODO:
      return state.filter((todo) => todo.id !== action.payload);
    default:
      return state;
  }
}

export default todos;

你能写一个泛型吗?像这样:

type ActionCreate<TP> = (p: TP) => { type: string, payload: TP };

const addTodo: ActionCreate<string> = (v) => ({
  type: 'ADD',
  payload: v
})