Commit 7327cb24 by Madhankumar

code changes in header

parent 743fd99f
"use client";
import { createContext, useContext, useState, useEffect } from "react";
// import { useRouter, useSearchParams, usePathname } from "next/navigation";
export const ThemeContext = createContext();
......@@ -8,37 +7,18 @@ export const useThemeContext = () => useContext(ThemeContext);
export const ThemeProvider = ({ children }) => {
const [theme, setTheme] = useState("light");
// const [text, setText] = useState("");
// const [isDisabled, setIsDisabled] = useState(false);
// const router = useRouter();
// const pathName = usePathname();
// const searchParams = useSearchParams();
// const search = searchParams.get("search");
useEffect(() => {
const storedTheme = localStorage.getItem("theme");
setTheme(storedTheme || "light");
}, []);
// useEffect(() => {
// setText(search || "");
// setIsDisabled(pathName.includes("singleblog"));
// }, [pathName, search]);
const toggleTheme = () => {
const newTheme = theme === "light" ? "dark" : "light";
localStorage.setItem("theme", newTheme);
setTheme(newTheme);
};
// const handleSearchInput = (value, currentPage) => {
// setText(value);
// const query = value
// ? `?page=${currentPage}&search=${value}`
// : `?page=${currentPage}`;
// router.push(query, undefined, { shallow: true });
// };
const contextValue = {
theme,
toggleTheme,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment