From b29f6e02da8c5c4e47349e68ef8dfc44fa967fbf Mon Sep 17 00:00:00 2001 From: coder12git Date: Tue, 7 Nov 2023 20:27:56 +0530 Subject: [PATCH] feat(core): fixed typo and added useContext Signed-off-by: coder12git --- site/src/components/Navigation/index.js | 8 +++----- site/src/components/Theme/index.js | 6 +++--- site/src/pages/index.js | 7 ++----- 3 files changed, 8 insertions(+), 13 deletions(-) diff --git a/site/src/components/Navigation/index.js b/site/src/components/Navigation/index.js index fd9eb2ea..87352145 100644 --- a/site/src/components/Navigation/index.js +++ b/site/src/components/Navigation/index.js @@ -1,4 +1,4 @@ -import React from "react"; +import React, {useContext} from "react"; import Search from '../../assets/images/Search.svg'; import SearchDark from "../../assets/images/SearchDark.svg"; import ThemeContext from "../Theme"; @@ -6,9 +6,9 @@ import Weather from '../../assets/images/Weather.svg'; import WeatherDark from '../../assets/images/WeatherDark.svg'; const Navbar = () => { + const theme = useContext(ThemeContext) + return ( - - {theme => ( <>
@@ -37,8 +37,6 @@ const Navbar = () => {

- )} - ) }; diff --git a/site/src/components/Theme/index.js b/site/src/components/Theme/index.js index e59dc549..15e2d505 100644 --- a/site/src/components/Theme/index.js +++ b/site/src/components/Theme/index.js @@ -21,9 +21,9 @@ function ThemeProvider({ children }) { useEffect(() => { // Getting dark mode value from localStorage! - const lsDark = JSON.parse(localStorage.getItem("dark")); - if (lsDark) { - setDark(lsDark); + const isDark = JSON.parse(localStorage.getItem("dark")); + if (isDark) { + setDark(isDark); } else if (supportsDarkMode()) { setDark(true); } diff --git a/site/src/pages/index.js b/site/src/pages/index.js index 8d92b9dc..3e096f34 100644 --- a/site/src/pages/index.js +++ b/site/src/pages/index.js @@ -1,4 +1,4 @@ -import * as React from "react"; +import React, {useContext} from "react"; import { BrowserRouter as Router, Route, @@ -18,6 +18,7 @@ import '../styles/global.css'; import ThemeContext from "../components/Theme"; const IndexPage = () => { + const theme = useContext(ThemeContext); const routes = ( } exact /> @@ -33,8 +34,6 @@ const IndexPage = () => { ); return ( - - {theme => (
@@ -45,8 +44,6 @@ const IndexPage = () => {
- )} -
); }