Accessing a state with dynamic key name in Typescript

973 Views Asked by At

I have a state in React something like this:

type MyState = {
  xCount: number;
  yCount: number;
};

I want to access a state without knowing it's name while coding the program.

export class BodyWidget extends React.Component<BodyWidgetProps> {
  state: MyState = {
    xCount: 1,
    yCount: 1
  };

returnState = (name:any) {
  return this.state[name]
}

...
}

When I am trying this i get this error:

Element implicitly has an 'any' type because expression of type 'any' can't be used to index type 'MyState'.

2

There are 2 best solutions below

0
On BEST ANSWER

try

returnState = (name: keyof MyState) {
  return this.state[name]
}
0
On

The error says that 'name' should be one of MyState properties(xCount or yCount), like this:

returnState = (name: keyof MyState) => {
    return this.state[name];
}