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
743fd99f
Commit
743fd99f
authored
Jan 08, 2024
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code changes
parent
81415f4e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
12 deletions
+13
-12
default.js
app/@header/default.js
+5
-4
index.js
components/base/header/index.js
+2
-2
index.js
components/base/search/index.js
+6
-6
No files found.
app/@header/default.js
View file @
743fd99f
...
...
@@ -2,14 +2,15 @@
import
Header
from
"@components/base/header"
;
import
{
useThemeContext
}
from
"app/theme-context"
;
import
{
useRouter
}
from
"next/navigation"
;
import
{
useRouter
,
useSearchParams
}
from
"next/navigation"
;
export
default
function
PageHeader
(
{
searchParams
}
)
{
export
default
function
PageHeader
()
{
const
{
theme
,
toggleTheme
}
=
useThemeContext
();
const
router
=
useRouter
();
const
currentPage
=
1
;
// Assuming currentPage is constant for now
const
search
=
searchParams
.
search
;
const
searchParams
=
useSearchParams
();
const
search
=
searchParams
.
get
(
"search"
)
||
""
;
const
handleSearch
=
(
value
)
=>
{
const
query
=
value
...
...
@@ -29,7 +30,7 @@ export default function PageHeader({ searchParams }) {
onThemeChange
=
{
toggleTheme
}
onSearch
=
{
handleSearch
}
onClear
=
{
handleClear
}
v
alue
=
{
search
}
searchV
alue
=
{
search
}
/
>
);
}
components/base/header/index.js
View file @
743fd99f
...
...
@@ -10,7 +10,7 @@ function Header({
onSearch
,
onClear
,
onThemeChange
,
v
alue
,
searchV
alue
,
})
{
const
handleTheme
=
()
=>
{
onThemeChange
(
currentTheme
);
...
...
@@ -35,7 +35,7 @@ function Header({
<
Search
onSearch
=
{
handleSearch
}
onClear
=
{
handleClear
}
value
=
{
v
alue
}
defaultValue
=
{
searchV
alue
}
/
>
<
/div
>
...
...
components/base/search/index.js
View file @
743fd99f
...
...
@@ -3,12 +3,13 @@ import PropTypes from "prop-types";
import
Icons
from
"@components/base/icons"
;
import
styles
from
"./styles.module.css"
;
const
Search
=
({
onSearch
,
onClear
,
v
alue
})
=>
{
const
[
inputValue
,
setInputValue
]
=
useState
(
v
alue
);
const
Search
=
({
onSearch
,
onClear
,
defaultV
alue
})
=>
{
const
[
inputValue
,
setInputValue
]
=
useState
(
defaultV
alue
);
useEffect
(()
=>
{
setInputValue
(
value
);
},
[
value
]);
setInputValue
(
defaultValue
);
},
[
defaultValue
]);
const
handleCustomClear
=
()
=>
{
onClear
(
""
);
setInputValue
(
""
);
// Reset the input value
...
...
@@ -32,8 +33,7 @@ const Search = ({ onSearch, onClear, value }) => {
<
input
className
=
{
styles
[
"search-input"
]}
type
=
"text"
autoFocus
=
{
true
}
value
=
{
inputValue
}
value
=
{
inputValue
||
""
}
// Ensure value is not null
onChange
=
{
handleChange
}
onKeyUp
=
{
handleKeyPress
}
placeholder
=
"Discover news, articles and more"
...
...
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