React TS useContext useReducer 钩子

Tar*_*ani 5 types typescript reactjs react-hooks

我无法弄清楚这段代码中的类型错误是什么

import React from 'react';

interface IMenu {
  items: {
    title: string,
    active: boolean,
    label: string
  }[]
}


type Action =
  | { type: 'SET_ACTIVE', label: string }

const initialState: IMenu = {
  items: [
    { title: 'Home', active: false, label: 'home' },
    { title: 'Customer', active: false, label: 'customer' },
    { title: 'Employee', active: false, label: 'employee' },
    { title: 'Report', active: false, label: 'report' },
  ]
}

const reducer = (state: IMenu = initialState, action: Action) => {
  switch (action.type) {
    case 'SET_ACTIVE': {
      const label = action.label;
      const items = state.items.map((item) => {
        if (item.label === label) {
          return { ...item, active: true };
        }
        return { ...item, active: false }
      })
      return { items }
    }
    default:
      throw new Error();
  }
};

export const MenuContext = React.createContext(initialState);
export const MenuConsumer = MenuContext.Consumer;

export function MenuProvider(props: any) {
  const [state, dispatch] = React.useReducer(reducer, initialState)
  const value = { state, dispatch };
  console.log(value)
  return (
    <MenuContext.Provider value={value}>
      {props.children}
    </MenuContext.Provider>
  )
}
Run Code Online (Sandbox Code Playgroud)

我收到的错误是这个

    /Volumes/Tarang External/react-context-typescript/src/context/index.tsx
TypeScript error in /Volumes/Tarang External/react-context-typescript/src/context/index.tsx(49,27):
Property 'items' is missing in type '{ state: { items: { active: boolean; title: string; label: string; }[]; }; dispatch: Dispatch<{ type: "SET_ACTIVE"; label: string; }>; }' but required in type 'IMenu'.  TS2741

    47 |   console.log(value)
    48 |   return (
  > 49 |     <MenuContext.Provider value={value}>
       |                           ^
    50 |       {props.children}
    51 |     </MenuContext.Prov
Run Code Online (Sandbox Code Playgroud)

有人可以帮助指出我到底做错了什么吗?我是打字稿的新手,所以请在必要时指导我。我正在尝试将 state 和 dispatch 的上下文值传递给子组件。我不确定发生了什么。这也是实现 useContext 和 useReducer 钩子的正确方法吗?

Tej*_*jas 5

您的问题是您的上下文应该与 具有相同的类型initialState,但是您将上下文的默认值设置为{ state, dispatch }

这是不正确的。

要解决此问题,请将上下文的默认类型设置为{ state, dispatch }(我认为这是您想要的,或者将上下文的默认类型设置为typeof initialState.

这是解决方案