0

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

未指定返回类型,在 eslint 中显示警告。

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

有没有一种简单的方法来指定除任何类型之外的类型?

github源代码

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;
4

1 回答 1

0

你能写一个泛型类型吗?像这样的东西:

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

const addTodo: ActionCreate<string> = (v) => ({
  type: 'ADD',
  payload: v
})
于 2021-01-03T04:36:40.200 回答