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
7c7d3ae1
Commit
7c7d3ae1
authored
Dec 14, 2023
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
page load issue
parent
ee34d3ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
index.js
components/top-level/blog-lists/index.js
+1
-2
No files found.
components/top-level/blog-lists/index.js
View file @
7c7d3ae1
...
@@ -9,7 +9,6 @@ import styles from "./styles.module.css";
...
@@ -9,7 +9,6 @@ import styles from "./styles.module.css";
const
BlogLists
=
({
title
,
description
,
blogs
})
=>
{
const
BlogLists
=
({
title
,
description
,
blogs
})
=>
{
const
searchParams
=
useSearchParams
();
const
searchParams
=
useSearchParams
();
let
searchPage
=
searchParams
.
get
(
"page"
);
let
searchPage
=
searchParams
.
get
(
"page"
);
console
.
log
(
"iuh"
,
searchPage
);
const
length
=
blogs
.
length
;
const
length
=
blogs
.
length
;
const
itemsPerPage
=
6
;
const
itemsPerPage
=
6
;
const
[
currentPage
,
setCurrentPage
]
=
useState
(
searchPage
);
const
[
currentPage
,
setCurrentPage
]
=
useState
(
searchPage
);
...
@@ -19,7 +18,7 @@ const BlogLists = ({ title, description, blogs }) => {
...
@@ -19,7 +18,7 @@ const BlogLists = ({ title, description, blogs }) => {
const
slicedData
=
blogs
.
slice
(
startIndex
,
endIndex
);
const
slicedData
=
blogs
.
slice
(
startIndex
,
endIndex
);
useEffect
(()
=>
{
useEffect
(()
=>
{
setCurrentPage
(
parseInt
(
searchPage
));
setCurrentPage
(
parseInt
(
searchPage
)
||
1
);
},
[
searchPage
]);
},
[
searchPage
]);
// Handle page change
// Handle page change
const
handlePageChange
=
(
pageNumber
)
=>
{
const
handlePageChange
=
(
pageNumber
)
=>
{
...
...
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