Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
NextJs-Blog
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Madhankumar
NextJs-Blog
Commits
7327cb24
Commit
7327cb24
authored
Jan 08, 2024
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code changes in header
parent
743fd99f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
20 deletions
+0
-20
theme-context.js
app/theme-context.js
+0
-20
No files found.
app/theme-context.js
View file @
7327cb24
"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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment