Below is my Header component in react:
JavaScript
x
29
29
1
import React from 'react'
2
import {AppBar} from '@material-ui/core'
3
import {Typography,Container,Toolbar,Select,MenuItem} from '@material-ui/core'
4
import {useNavigate} from 'react-router-dom'
5
import { CryptoState } from './CryptoContext'
6
const Header = () => {
7
const navigate=useNavigate();
8
const {currency,setCurrency}=CryptoState();
9
return (
10
<AppBar>
11
<Container>
12
<Toolbar>
13
<Typography onClick={()=>navigate('/')}>
14
CryptoTracker
15
</Typography>
16
<Select value={currency}
17
onClick={(e)=>setCurrency(e.target.value)}
18
>
19
<MenuItem value="USD">USD</MenuItem>
20
<MenuItem value="INR">INR</MenuItem>
21
</Select>
22
</Toolbar>
23
</Container>
24
</AppBar>
25
)
26
}
27
28
export default Header
29
I have used ContextAPI for efficient state Management.CryptoState is used for this purpose.I have imported the state in Header and getting the necessary props using object-destructuring.
Below is my Context-file:
JavaScript
1
26
26
1
import React from 'react'
2
import { useEffect } from 'react';
3
import { createContext ,useState,useContext } from 'react';
4
const CryptoContext = ({children}) => {
5
const Crypto=createContext();
6
const [currency,setCurrency]=useState("USD");
7
const [symbol,setSymbol]=useState("$");
8
9
useEffect(()=>{
10
if(currency=="INR")
11
setSymbol("₹")
12
else
13
setSymbol("$")
14
})
15
return (
16
<Crypto.Provider value={{currency,symbol,setCurrency}}>
17
{children}
18
</Crypto.Provider>
19
)
20
}
21
22
export default CryptoContext;
23
export const CryptoState=()=>{
24
return useContext(Crypto);
25
}
26
I am getting this error in Header component:Header.js:8 Uncaught TypeError: Cannot destructure property 'currency' of '(0 , _CryptoContext__WEBPACK_IMPORTED_MODULE_1__.CryptoState)(...)' as it is undefined.
Advertisement
Answer
inside your CryptoState
function, Crypto
is not defined as it is initialized in CryptoContext
.
Crypto
context should be extracted from your CryptoContext
component and declared as a const outside of any function to be available