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
82e10e1f
Commit
82e10e1f
authored
Jan 03, 2024
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extract search from url
parent
0d8da6c7
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
81 additions
and
69 deletions
+81
-69
preview.js
.storybook/preview.js
+1
-1
default.js
app/@header/default.js
+3
-1
page.js
app/page.js
+17
-10
page.module.css
app/page.module.css
+3
-0
button.stories.js
components/base/button/button.stories.js
+4
-2
index.js
components/base/button/index.js
+8
-6
card.stories.js
components/base/card/card.stories.js
+0
-3
styles.module.css
components/base/card/styles.module.css
+2
-1
index.js
components/base/header/index.js
+15
-4
icons.stories.js
components/base/icons/icons.stories.js
+1
-1
styles.module.css
components/base/icons/styles.module.css
+5
-0
index.js
components/base/search/index.js
+3
-10
index.js
components/top-level/blog-lists/index.js
+1
-19
styles.module.css
components/top-level/blog-lists/styles.module.css
+17
-10
globals.css
styles/globals.css
+1
-1
No files found.
.storybook/preview.js
View file @
82e10e1f
/** @type { import('@storybook/react').Preview } */
/** @type { import('@storybook/react').Preview } */
import
"
../app
/globals.css"
;
import
"
@styles
/globals.css"
;
import
{
useDarkMode
}
from
"storybook-dark-mode"
;
import
{
useDarkMode
}
from
"storybook-dark-mode"
;
import
{
themes
}
from
"@storybook/theming"
;
import
{
themes
}
from
"@storybook/theming"
;
import
"@fortawesome/fontawesome-svg-core/styles.css"
;
// Import the CSS
import
"@fortawesome/fontawesome-svg-core/styles.css"
;
// Import the CSS
...
...
app/@header/default.js
View file @
82e10e1f
...
@@ -3,10 +3,11 @@ import Header from "@components/base/header";
...
@@ -3,10 +3,11 @@ import Header from "@components/base/header";
import
{
useAppContext
}
from
"@context/index"
;
import
{
useAppContext
}
from
"@context/index"
;
import
{
useRouter
}
from
"next/navigation"
;
import
{
useRouter
}
from
"next/navigation"
;
export
default
function
PageHeader
()
{
export
default
function
PageHeader
(
{
searchParams
}
)
{
const
{
theme
,
toggleTheme
}
=
useAppContext
();
const
{
theme
,
toggleTheme
}
=
useAppContext
();
const
router
=
useRouter
();
const
router
=
useRouter
();
let
currentPage
=
1
;
let
currentPage
=
1
;
const
urlParams
=
searchParams
.
search
;
const
handleSearch
=
(
value
)
=>
{
const
handleSearch
=
(
value
)
=>
{
if
(
value
)
{
if
(
value
)
{
...
@@ -29,6 +30,7 @@ export default function PageHeader() {
...
@@ -29,6 +30,7 @@ export default function PageHeader() {
onThemeChange
=
{
toggleTheme
}
onThemeChange
=
{
toggleTheme
}
onSearch
=
{
handleSearch
}
onSearch
=
{
handleSearch
}
onClose
=
{
handleClose
}
onClose
=
{
handleClose
}
value
=
{
urlParams
}
/
>
/
>
);
);
}
}
app/page.js
View file @
82e10e1f
import
BlogLists
from
"@components/top-level/blog-lists"
;
import
BlogLists
from
"@components/top-level/blog-lists"
;
import
Pagination
from
"@components/top-level/pagination"
;
import
{
getPosts
,
getPostsBySearch
}
from
"@lib/api"
;
import
{
getPosts
,
getPostsBySearch
}
from
"@lib/api"
;
import
styles
from
"./page.module.css"
;
import
styles
from
"./page.module.css"
;
const
Home
=
async
({
searchParams
})
=>
{
const
Home
=
async
({
searchParams
})
=>
{
let
blogs
=
[];
let
blogs
=
[];
let
pageNo
=
searchParams
.
page
;
let
pageNo
=
searchParams
.
page
||
1
;
let
search
=
searchParams
.
search
;
let
search
=
searchParams
.
search
;
let
response
;
let
response
;
...
@@ -13,7 +14,6 @@ const Home = async ({ searchParams }) => {
...
@@ -13,7 +14,6 @@ const Home = async ({ searchParams }) => {
if
(
"search"
in
searchParams
&&
pageNo
!==
""
)
{
if
(
"search"
in
searchParams
&&
pageNo
!==
""
)
{
if
(
search
!==
""
)
{
if
(
search
!==
""
)
{
console
.
log
(
"dfknb"
,
pageNo
);
response
=
await
getPostsBySearch
(
"posts"
,
pageNo
,
search
);
response
=
await
getPostsBySearch
(
"posts"
,
pageNo
,
search
);
blogs
=
response
.
data
;
blogs
=
response
.
data
;
}
else
{
}
else
{
...
@@ -23,14 +23,21 @@ const Home = async ({ searchParams }) => {
...
@@ -23,14 +23,21 @@ const Home = async ({ searchParams }) => {
return
(
return
(
<
div
className
=
{
styles
.
container
}
>
<
div
className
=
{
styles
.
container
}
>
{
blogs
?.
length
?
(
{
blogs
?.
length
?
(
<
BlogLists
<
div
>
title
=
"Lifestyle"
<
BlogLists
description
=
"Lorem ipsum dolor sit amet elit. Id quaerat amet ipsum sunt et quos dolorum."
title
=
"Lifestyle"
blogs
=
{
blogs
}
description
=
"Lorem ipsum dolor sit amet elit. Id quaerat amet ipsum sunt et quos dolorum."
total
=
{
response
.
total
}
blogs
=
{
blogs
}
currentPage
=
{
Number
(
pageNo
)}
/
>
search
=
{
search
}
<
div
className
=
{
styles
.
pagination
}
>
/
>
<
Pagination
currentPage
=
{
Number
(
pageNo
)}
total
=
{
Number
(
response
.
total
)}
perPage
=
{
6
}
search
=
{
search
}
/
>
<
/div
>
<
/div
>
)
:
(
)
:
(
<
h2
className
=
"center"
>
No
data
found
<
/h2
>
<
h2
className
=
"center"
>
No
data
found
<
/h2
>
)}
)}
...
...
app/page.module.css
View file @
82e10e1f
.container
{
.container
{
padding-top
:
1rem
;
padding-top
:
1rem
;
}
}
.pagination
{
margin-block
:
2rem
;
}
components/base/button/button.stories.js
View file @
82e10e1f
...
@@ -8,7 +8,9 @@ export default {
...
@@ -8,7 +8,9 @@ export default {
export
const
button
=
{
export
const
button
=
{
args
:
{
args
:
{
variant
:
"primary"
,
variant
:
"primary"
,
children
:
"Button"
,
disabled
:
false
,
isDisabled
:
false
,
},
render
:
(
args
)
=>
{
return
<
Button
{...
args
}
>
Button
<
/Button>
;
},
},
};
};
components/base/button/index.js
View file @
82e10e1f
...
@@ -4,11 +4,10 @@ import cn from "classnames";
...
@@ -4,11 +4,10 @@ import cn from "classnames";
import
styles
from
"./styles.module.css"
;
import
styles
from
"./styles.module.css"
;
const
Button
=
({
const
Button
=
({
children
,
disabled
=
false
,
disabled
=
false
,
variant
,
variant
,
children
,
className
,
className
,
href
,
...
props
...
props
})
=>
{
})
=>
{
const
classNames
=
cn
(
styles
[
"btn"
],
{
const
classNames
=
cn
(
styles
[
"btn"
],
{
...
@@ -17,17 +16,20 @@ const Button = ({
...
@@ -17,17 +16,20 @@ const Button = ({
[
styles
.
disabled
]:
disabled
,
[
styles
.
disabled
]:
disabled
,
});
});
return
(
return
props
.
href
!=
undefined
?
(
<
Link
href
=
{
href
}
className
=
{
classNames
}
{...
props
}
>
<
Link
className
=
{
classNames
}
{...
props
}
>
{
children
}
{
children
}
<
/Link
>
<
/Link
>
)
:
(
<
button
className
=
{
classNames
}
{...
props
}
>
{
children
}
<
/button
>
);
);
};
};
Button
.
propTypes
=
{
Button
.
propTypes
=
{
variant
:
PropTypes
.
oneOf
([
"primary"
,
"secondary"
]),
variant
:
PropTypes
.
oneOf
([
"primary"
,
"secondary"
]),
children
:
PropTypes
.
any
,
disabled
:
PropTypes
.
bool
,
isDisabled
:
PropTypes
.
bool
,
};
};
export
default
Button
;
export
default
Button
;
components/base/card/card.stories.js
View file @
82e10e1f
...
@@ -26,7 +26,4 @@ export const card = {
...
@@ -26,7 +26,4 @@ export const card = {
},
},
readingTime
:
"1 min"
,
readingTime
:
"1 min"
,
},
},
render
:
(
args
)
=>
{
return
<
Card
{...
args
}
/>
;
},
};
};
components/base/card/styles.module.css
View file @
82e10e1f
...
@@ -55,6 +55,7 @@
...
@@ -55,6 +55,7 @@
font-size
:
18px
;
font-size
:
18px
;
font-weight
:
500
;
font-weight
:
500
;
line-height
:
0
;
line-height
:
0
;
color
:
var
(
--font-color-900
);
}
}
.card-content
.card-author
.authordescription
.author-desc
{
.card-content
.card-author
.authordescription
.author-desc
{
display
:
flex
;
display
:
flex
;
...
@@ -82,7 +83,7 @@
...
@@ -82,7 +83,7 @@
@media
screen
and
(
min-width
:
768px
)
{
@media
screen
and
(
min-width
:
768px
)
{
.card
{
.card
{
width
:
min
(
90%
,
25
rem
);
width
:
min
(
100%
,
22
rem
);
}
}
.card-content
.card-author
.authordescription
.author-desc
{
.card-content
.card-author
.authordescription
.author-desc
{
font-size
:
clamp
(
0.8rem
,
0.5rem
+
1vw
,
1rem
);
font-size
:
clamp
(
0.8rem
,
0.5rem
+
1vw
,
1rem
);
...
...
components/base/header/index.js
View file @
82e10e1f
...
@@ -4,7 +4,14 @@ import Icons from "@components/base/icons";
...
@@ -4,7 +4,14 @@ import Icons from "@components/base/icons";
import
styles
from
"./styles.module.css"
;
import
styles
from
"./styles.module.css"
;
import
PropTypes
from
"prop-types"
;
import
PropTypes
from
"prop-types"
;
function
Header
({
name
,
currentTheme
,
onSearch
,
onClose
,
onThemeChange
})
{
function
Header
({
name
,
currentTheme
,
onSearch
,
onClose
,
onThemeChange
,
value
,
})
{
const
handleTheme
=
()
=>
{
const
handleTheme
=
()
=>
{
onThemeChange
(
currentTheme
);
onThemeChange
(
currentTheme
);
};
};
...
@@ -20,18 +27,22 @@ function Header({ name, currentTheme, onSearch, onClose, onThemeChange }) {
...
@@ -20,18 +27,22 @@ function Header({ name, currentTheme, onSearch, onClose, onThemeChange }) {
<
div
className
=
{
styles
.
container
}
>
<
div
className
=
{
styles
.
container
}
>
<
nav
className
=
{
styles
.
navbar
}
>
<
nav
className
=
{
styles
.
navbar
}
>
<
Link
className
=
{
styles
[
"navbar-brand"
]}
href
=
{
`/?page=1`
}
>
<
Link
className
=
{
styles
[
"navbar-brand"
]}
href
=
{
`/?page=1`
}
>
<
Icons
name
=
"newspaper"
size
=
"
medium
"
classes
=
"newspaper-icon"
/>
<
Icons
name
=
"newspaper"
size
=
"
large
"
classes
=
"newspaper-icon"
/>
<
h3
>
{
name
}
<
/h3
>
<
h3
>
{
name
}
<
/h3
>
<
/Link
>
<
/Link
>
<
div
className
=
{
styles
.
search
}
>
<
div
className
=
{
styles
.
search
}
>
<
Search
onSearch
=
{
handleSearch
}
onClose
=
{
handleClose
}
/
>
<
Search
onSearch
=
{
handleSearch
}
onClose
=
{
handleClose
}
value
=
{
value
}
/
>
<
/div
>
<
/div
>
<
div
onClick
=
{
handleTheme
}
className
=
{
styles
.
themeLight
}
>
<
div
onClick
=
{
handleTheme
}
className
=
{
styles
.
themeLight
}
>
<
Icons
<
Icons
name
=
{
currentTheme
===
"light"
?
"sun"
:
"moon"
}
name
=
{
currentTheme
===
"light"
?
"sun"
:
"moon"
}
size
=
"
medium
"
size
=
"
large
"
/>
/>
<
/div
>
<
/div
>
<
/nav
>
<
/nav
>
...
...
components/base/icons/icons.stories.js
View file @
82e10e1f
...
@@ -9,7 +9,7 @@ export const icons = () => {
...
@@ -9,7 +9,7 @@ export const icons = () => {
return
(
return
(
<
div
className
=
"icon-container"
>
<
div
className
=
"icon-container"
>
{
iconList
.
map
((
e
,
i
)
=>
(
{
iconList
.
map
((
e
,
i
)
=>
(
<
div
key
=
{
i
}
>
{
<
Icons
name
=
{
e
}
size
=
"
small
"
/>
}
<
/div
>
<
div
key
=
{
i
}
>
{
<
Icons
name
=
{
e
}
size
=
"
medium
"
/>
}
<
/div
>
))}
))}
<
/div
>
<
/div
>
);
);
...
...
components/base/icons/styles.module.css
View file @
82e10e1f
...
@@ -4,6 +4,11 @@
...
@@ -4,6 +4,11 @@
color
:
var
(
--font-color-300
);
color
:
var
(
--font-color-300
);
}
}
.medium
svg
{
.medium
svg
{
height
:
24px
;
width
:
24px
;
color
:
var
(
--font-color-300
);
}
.large
svg
{
height
:
38px
;
height
:
38px
;
width
:
38px
;
width
:
38px
;
color
:
var
(
--font-color-300
);
color
:
var
(
--font-color-300
);
...
...
components/base/search/index.js
View file @
82e10e1f
import
React
,
{
useState
,
useEffect
}
from
"react"
;
import
React
,
{
useState
}
from
"react"
;
import
PropTypes
from
"prop-types"
;
import
PropTypes
from
"prop-types"
;
import
{
useSearchParams
}
from
"next/navigation"
;
import
Icons
from
"@components/base/icons"
;
import
Icons
from
"@components/base/icons"
;
import
styles
from
"./styles.module.css"
;
import
styles
from
"./styles.module.css"
;
const
Search
=
({
onSearch
,
onClose
})
=>
{
const
Search
=
({
onSearch
,
onClose
,
value
})
=>
{
const
searchParams
=
useSearchParams
();
const
[
inputValue
,
setInputValue
]
=
useState
(
value
);
const
search
=
searchParams
.
get
(
"search"
)
||
""
;
const
[
inputValue
,
setInputValue
]
=
useState
(
search
);
useEffect
(()
=>
{
setInputValue
(
search
);
},
[
search
]);
const
handleCustomClear
=
()
=>
{
const
handleCustomClear
=
()
=>
{
onClose
(
""
);
onClose
(
""
);
...
...
components/top-level/blog-lists/index.js
View file @
82e10e1f
import
PropTypes
from
"prop-types"
;
import
PropTypes
from
"prop-types"
;
import
Card
from
"@components/base/card"
;
import
Card
from
"@components/base/card"
;
import
Pagination
from
"@components/top-level/pagination"
;
import
styles
from
"./styles.module.css"
;
import
styles
from
"./styles.module.css"
;
const
BlogLists
=
({
const
BlogLists
=
({
title
,
description
,
blogs
})
=>
{
title
,
description
,
blogs
,
currentPage
,
total
,
search
,
})
=>
{
return
(
return
(
<
div
className
=
{
styles
[
"blog-container"
]}
>
<
div
className
=
{
styles
[
"blog-container"
]}
>
<
h2
className
=
{
styles
.
title
}
>
{
title
}
<
/h2
>
<
h2
className
=
{
styles
.
title
}
>
{
title
}
<
/h2
>
...
@@ -22,14 +14,6 @@ const BlogLists = ({
...
@@ -22,14 +14,6 @@ const BlogLists = ({
<
/div
>
<
/div
>
))}
))}
<
/div
>
<
/div
>
<
div
className
=
{
styles
.
pagination
}
>
<
Pagination
currentPage
=
{
currentPage
}
total
=
{
Number
(
total
)}
perPage
=
{
6
}
search
=
{
search
}
/
>
<
/div
>
<
/div
>
<
/div
>
);
);
};
};
...
@@ -38,8 +22,6 @@ BlogLists.propTypes = {
...
@@ -38,8 +22,6 @@ BlogLists.propTypes = {
title
:
PropTypes
.
string
,
title
:
PropTypes
.
string
,
description
:
PropTypes
.
string
,
description
:
PropTypes
.
string
,
blogs
:
PropTypes
.
array
,
blogs
:
PropTypes
.
array
,
currentPage
:
PropTypes
.
number
,
total
:
PropTypes
.
number
,
};
};
export
default
BlogLists
;
export
default
BlogLists
;
components/top-level/blog-lists/styles.module.css
View file @
82e10e1f
...
@@ -3,7 +3,8 @@
...
@@ -3,7 +3,8 @@
margin
:
0
auto
;
margin
:
0
auto
;
margin-bottom
:
2rem
;
margin-bottom
:
2rem
;
scroll-behavior
:
smooth
;
scroll-behavior
:
smooth
;
padding-inline
:
1rem
;
padding-inline
:
0.8rem
;
width
:
min
(
100%
-
1rem
);
}
}
.blog-container
.title
{
.blog-container
.title
{
line-height
:
25px
;
line-height
:
25px
;
...
@@ -19,7 +20,7 @@
...
@@ -19,7 +20,7 @@
}
}
.blog-container
.row
{
.blog-container
.row
{
display
:
grid
;
display
:
grid
;
justify-items
:
flex-start
;
/* justify-items: flex-start; */
grid-row-gap
:
2rem
;
grid-row-gap
:
2rem
;
grid-column-gap
:
1.5rem
;
grid-column-gap
:
1.5rem
;
}
}
...
@@ -29,22 +30,28 @@
...
@@ -29,22 +30,28 @@
justify-content
:
center
;
justify-content
:
center
;
flex
:
1
0
auto
;
flex
:
1
0
auto
;
}
}
.pagination
{
margin-top
:
3rem
;
}
@media
screen
and
(
min-width
:
768px
)
{
@media
screen
and
(
min-width
:
768px
)
{
.row
{
.row
{
grid-template-columns
:
repeat
(
auto-fill
,
minmax
(
20rem
,
1
fr
));
grid-template-columns
:
repeat
(
auto-fill
,
minmax
(
20rem
,
1
fr
));
justify-items
:
center
;
justify-items
:
center
;
grid-row-gap
:
3rem
;
grid-row-gap
:
1.5rem
;
grid-column-gap
:
0.5rem
;
}
.blog-container
:is
(
.title
,
.description
)
{
padding-inline
:
0.5rem
;
}
}
@media
screen
and
(
min-width
:
992px
)
{
.row
{
grid-template-columns
:
repeat
(
auto-fill
,
minmax
(
18rem
,
1
fr
));
justify-items
:
center
;
grid-column-gap
:
1.5rem
;
}
}
}
}
@media
screen
and
(
min-width
:
1440px
)
{
@media
screen
and
(
min-width
:
1440px
)
{
.bloglist-container
{
.bloglist-container
{
padding
:
0
100px
;
padding
:
0
100px
;
}
}
.bloglist-container
.row
{
grid-template-columns
:
repeat
(
auto-fill
,
minmax
(
25rem
,
1
fr
));
justify-items
:
center
;
}
}
}
styles/globals.css
View file @
82e10e1f
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
Oxygen-Sans
,
Ubuntu
,
Cantarell
,
"Helvetica Neue"
,
sans-serif
;
Oxygen-Sans
,
Ubuntu
,
Cantarell
,
"Helvetica Neue"
,
sans-serif
;
text-decoration
:
none
;
text-decoration
:
none
;
--heading1
:
clamp
(
0.8rem
,
1.5rem
+
2.3vw
,
2.8rem
);
--heading1
:
clamp
(
0.8rem
,
1.5rem
+
2.3vw
,
2.8rem
);
--heading2
:
clamp
(
1rem
,
1.
4rem
+
2.
2vw
,
2.4rem
);
--heading2
:
clamp
(
1rem
,
1.
2rem
+
2vw
,
2.4rem
);
--heading3
:
clamp
(
1rem
,
1rem
+
1.4vw
,
1.7rem
);
--heading3
:
clamp
(
1rem
,
1rem
+
1.4vw
,
1.7rem
);
--heading4
:
clamp
(
1rem
,
1rem
+
1.2vw
,
1.5rem
);
--heading4
:
clamp
(
1rem
,
1rem
+
1.2vw
,
1.5rem
);
--heading5
:
clamp
(
1rem
,
1rem
+
1vw
,
1.3rem
);
--heading5
:
clamp
(
1rem
,
1rem
+
1vw
,
1.3rem
);
...
...
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