Commit 923886bb by Madhankumar

pagination issue

parent 938483b9
...@@ -23,7 +23,9 @@ const preview = { ...@@ -23,7 +23,9 @@ const preview = {
export const decorators = [ export const decorators = [
(Story) => { (Story) => {
return <Story themeMode={useDarkMode()} />;
const currentTheme = useDarkMode() ? "light" : "dark";
return <Story theme={currentTheme} />;
}, },
]; ];
......
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": true
}
\ No newline at end of file
...@@ -25,14 +25,12 @@ ...@@ -25,14 +25,12 @@
--font-color-300: #718096; --font-color-300: #718096;
--title-color: #2d3748; --title-color: #2d3748;
--bg-color: #f8f9fa; --bg-color: #f8f9fa;
--input-bg: #f4f4f4;
--card-bg: #fff; --card-bg: #fff;
--heading-color: #2d3748; --heading-color: #2d3748;
--border-radius: 6px; --border-radius: 6px;
--border-radius-full: 15px; --border-radius-full: 15px;
--border-color: transparent; --border-color: transparent;
--nav-color: #292922;
--dropdown-color: #fff;
--iframe-filter: grayscale(0%);
--bg-grey: #f4f4f4; --bg-grey: #f4f4f4;
--bg-lightgrey: #f8f9fa; --bg-lightgrey: #f8f9fa;
--btn-bg: #e2e8f0; --btn-bg: #e2e8f0;
...@@ -40,12 +38,13 @@ ...@@ -40,12 +38,13 @@
} }
.dark { .dark {
--bg-color: black; --bg-color: black;
--input-bg: black;
--card-bg: #131617; --card-bg: #131617;
--font-color-300: #b7b7b7; --font-color-300: #b7b7b7;
--font-color-900: #fff; --font-color-900: #fff;
--title-color: #fff; --title-color: #fff;
--font-color-700: #fff; --font-color-700: #fff;
--border-color: rgba(255, 255, 255, 0.2);
--primary-bgcolor: #5a67d8; --primary-bgcolor: #5a67d8;
--secondary-bgcolor: #131617; --secondary-bgcolor: #131617;
--primary-color: #fff; --primary-color: #fff;
...@@ -95,6 +94,10 @@ h6 { ...@@ -95,6 +94,10 @@ h6 {
font-family: "Libre Baskerville", serif; font-family: "Libre Baskerville", serif;
margin: 20px 0px; margin: 20px 0px;
} }
p {
font-size: 18px;
line-height: 28px;
}
.icon-container { .icon-container {
display: flex; display: flex;
......
...@@ -9,5 +9,6 @@ export const button = { ...@@ -9,5 +9,6 @@ export const button = {
args: { args: {
variant: "primary", variant: "primary",
children: "Button", children: "Button",
isDisabled: false,
}, },
}; };
...@@ -2,10 +2,11 @@ import PropTypes from "prop-types"; ...@@ -2,10 +2,11 @@ import PropTypes from "prop-types";
import cn from "classnames"; import cn from "classnames";
import styles from "./styles.module.css"; import styles from "./styles.module.css";
const Button = ({ children, variant, className, ...props }) => { const Button = ({ children, isDisabled, variant, className, ...props }) => {
const classNames = cn({ const classNames = cn({
[styles[variant]]: variant, [styles[variant]]: variant,
[styles[className]]: className, [styles[className]]: className,
[styles.disabled]: isDisabled === true,
}); });
return ( return (
...@@ -16,7 +17,9 @@ const Button = ({ children, variant, className, ...props }) => { ...@@ -16,7 +17,9 @@ const Button = ({ children, variant, className, ...props }) => {
}; };
Button.propTypes = { Button.propTypes = {
variant: PropTypes.oneOf(["primary", "secondary", "disabled"]), variant: PropTypes.oneOf(["primary", "secondary"]),
children: PropTypes.element,
isDisabled: PropTypes.bool,
}; };
export default Button; export default Button;
...@@ -17,27 +17,5 @@ button { ...@@ -17,27 +17,5 @@ button {
} }
.disabled { .disabled {
opacity: 0.7; opacity: 0.7;
background-color: var(--secondary-bgcolor); /* background-color: var(--secondary-bgcolor); */
color: var(--secondary-color);
}
/* button .active {
background: #5a67d8;
color: #fff;
border: 1px solid #7cbddb;
border-radius: 10px;
font-size: 14px;
font-weight: bold;
} */
/*
button.secondary:hover:not(.active) {
color: var(--font-color-900);
}
button .disabled {
opacity: 0.7;
cursor: not-allowed;
} }
button:hover:is(.no-cursor) {
cursor: not-allowed;
user-select: none;
} */
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
word-wrap: break-word; word-wrap: break-word;
&:hover { &:hover {
transform: translateY(-10px); transform: translateY(-10px);
box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px; box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px -1px,
rgba(0, 0, 0, 0.06) 0px 2px 8px -1px;
} }
.img { .img {
max-width: 100%; max-width: 100%;
......
import Header from "."; import Header from ".";
import { ThemeProvider } from "@/app/context/index";
export default { export default {
title: "Base/Header", title: "Base/Header",
component: Header, component: Header,
decorators: [
(Story) => (
<ThemeProvider>
<Story />
</ThemeProvider>
),
],
argTypes: { argTypes: {
onThemeChange: { actions: "onThemeChange" }, onThemeChange: { actions: "onThemeChange" },
onSearch: { actions: "onSearch" }, onSearch: { actions: "onSearch" },
...@@ -21,4 +13,7 @@ export const header = { ...@@ -21,4 +13,7 @@ export const header = {
args: { args: {
name: "NewsBlog", name: "NewsBlog",
}, },
render: (args, { theme }) => {
return <Header currentTheme={theme} {...args} />;
},
}; };
import Link from "next/link"; import Link from "next/link";
import Search from "@components/base/search"; import Search from "@components/base/search";
import Icons from "@components/base/icons"; import Icons from "@components/base/icons";
import { useTheme } from "@context/index";
import styles from "./styles.module.css"; import styles from "./styles.module.css";
import PropTypes from "prop-types";
function Header({ name, onThemeChange, onSearch, onClose }) { function Header({ name, currentTheme, onThemeChange, onSearch, onClose }) {
const { theme, toggleTheme } = useTheme();
const handleTheme = () => { const handleTheme = () => {
toggleTheme(); onThemeChange(currentTheme);
onThemeChange(theme);
}; };
const handleSearch = (value) => { const handleSearch = (value) => {
onSearch(value); onSearch(value);
...@@ -31,12 +28,19 @@ function Header({ name, onThemeChange, onSearch, onClose }) { ...@@ -31,12 +28,19 @@ function Header({ name, onThemeChange, onSearch, onClose }) {
</div> </div>
<div onClick={handleTheme} className={styles.themelight}> <div onClick={handleTheme} className={styles.themelight}>
<Icons name={theme == "light" ? "moon" : "sun"} size="medium" /> <Icons
name={currentTheme === "light" ? "sun" : "moon"}
size="medium"
/>
</div> </div>
</nav> </nav>
</div> </div>
</header> </header>
); );
} }
Header.propTypes = {
name: PropTypes.string,
onThemeChange: PropTypes.func,
};
export default Header; export default Header;
...@@ -4,15 +4,7 @@ export default { ...@@ -4,15 +4,7 @@ export default {
title: "Base/Icons", title: "Base/Icons",
component: Icons, component: Icons,
}; };
const iconList = [ const iconList = ["close", "search", "clock", "sun", "moon", "newspaper"];
"close",
"search",
"clock",
"sun",
"moon",
"newspaper",
"hamburger",
];
export const icons = () => { export const icons = () => {
return ( return (
<div className="icon-container"> <div className="icon-container">
......
...@@ -82,17 +82,17 @@ const Icons = ({ name, size, classes }) => { ...@@ -82,17 +82,17 @@ const Icons = ({ name, size, classes }) => {
<path d="M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z" /> <path d="M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z" />
</svg> </svg>
), ),
hamburger: ( // hamburger: (
<svg // <svg
xmlns="http://www.w3.org/2000/svg" // xmlns="http://www.w3.org/2000/svg"
height="1.3em" // height="1.3em"
fill="currentColor" // fill="currentColor"
viewBox="0 0 448 512" // viewBox="0 0 448 512"
stroke="currentColor" // stroke="currentColor"
> // >
<path d="M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" /> // <path d="M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" />
</svg> // </svg>
), // ),
}; };
const classNames = cn({ const classNames = cn({
[styles[classes]]: classes, [styles[classes]]: classes,
...@@ -108,7 +108,6 @@ Icons.propTypes = { ...@@ -108,7 +108,6 @@ Icons.propTypes = {
"close", "close",
"search", "search",
"clock", "clock",
"hamburger",
"newspaper", "newspaper",
]), ]),
}; };
......
.small svg { .small svg {
height: 20px; height: 20px;
width: 20px; width: 20px;
color: var(--font-color-300);
} }
.medium svg { .medium svg {
height: 38px; height: 38px;
width: 38px; width: 38px;
color: var(--font-color-300);
} }
/* .search svg, /* .search svg,
......
...@@ -3,17 +3,20 @@ ...@@ -3,17 +3,20 @@
position: relative; position: relative;
display: inline-block; display: inline-block;
border-radius: 3px; border-radius: 3px;
border: 1px solid #00000000;
.search-input { .search-input {
height: 48px; height: 48px;
width: 30vw; width: 30vw;
background: #f4f4f4; background: var(--input-bg);
border: none; border-radius: 5px;
outline: none; border: .5px solid var(--border-color);
outline:none;
padding-left: 3rem; padding-left: 3rem;
font-size: 16px; font-size: 16px;
.search-input::placeholder{ &::placeholder{
color: #718096; color: #718096;
font-weight: 600;
color: var(--font-color-300);
} }
} }
.search-icon { .search-icon {
...@@ -21,7 +24,7 @@ border: 1px solid #00000000; ...@@ -21,7 +24,7 @@ border: 1px solid #00000000;
top: 14px; top: 14px;
padding-left: 17px; padding-left: 17px;
color: #718096; color: var(--font-color-300);
} }
.close-icon { .close-icon {
......
...@@ -17,6 +17,7 @@ const BlogLists = ({ title, description, blogs }) => { ...@@ -17,6 +17,7 @@ const BlogLists = ({ title, description, blogs }) => {
// Handle page change // Handle page change
const handlePageChange = (pageNumber) => { const handlePageChange = (pageNumber) => {
setCurrentPage(pageNumber); setCurrentPage(pageNumber);
window.scrollTo({ top: 0, behavior: "smooth" });
}; };
return ( return (
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
.description { .description {
color: var(--font-color-300); color: var(--font-color-300);
padding-inline: 1.5rem; padding-inline: 1.5rem;
margin-bottom: 3em; margin-bottom: 2em;
} }
.row { .row {
display: grid; display: grid;
......
...@@ -6,7 +6,7 @@ import styles from "./styles.module.css"; ...@@ -6,7 +6,7 @@ import styles from "./styles.module.css";
function Pagination({ total, currentPage, onPageChange, perPage }) { function Pagination({ total, currentPage, onPageChange, perPage }) {
//Set number of pages //Set number of pages
const numberOfPages = []; const numberOfPages = [];
const totalPages = Math.round(total / perPage); const totalPages = Math.ceil(total / perPage);
const totalPage = totalPages <= 1 ? 1 : totalPages; const totalPage = totalPages <= 1 ? 1 : totalPages;
for (let i = 1; i <= totalPage; i++) { for (let i = 1; i <= totalPage; i++) {
...@@ -68,7 +68,8 @@ function Pagination({ total, currentPage, onPageChange, perPage }) { ...@@ -68,7 +68,8 @@ function Pagination({ total, currentPage, onPageChange, perPage }) {
<div className={styles["pagination-container"]}> <div className={styles["pagination-container"]}>
<span className={styles.previous}> <span className={styles.previous}>
<Button <Button
variant={currentButton <= 1 ? "disabled" : "secondary"} variant="secondary"
isDisabled={currentButton <= 1 ? true : false}
onClick={() => onClick={() =>
currentButton <= 1 ? "" : handleCurrentPage(currentButton - 1) currentButton <= 1 ? "" : handleCurrentPage(currentButton - 1)
} }
...@@ -91,9 +92,8 @@ function Pagination({ total, currentPage, onPageChange, perPage }) { ...@@ -91,9 +92,8 @@ function Pagination({ total, currentPage, onPageChange, perPage }) {
})} })}
<span className={styles.next}> <span className={styles.next}>
<Button <Button
variant={ variant="secondary"
currentButton === numberOfPages.length ? "disabled" : "secondary" isDisabled={currentButton === numberOfPages.length ? true : false}
}
onClick={() => onClick={() =>
currentButton === numberOfPages.length currentButton === numberOfPages.length
? "" ? ""
......
...@@ -57,7 +57,7 @@ function SingleBlog({ ...@@ -57,7 +57,7 @@ function SingleBlog({
<div className={styles["blog-content"]}> <div className={styles["blog-content"]}>
<ReactMarkdown remarkPlugins={[remarkGfm]}>{markdown}</ReactMarkdown> <ReactMarkdown remarkPlugins={[remarkGfm]}>{markdown}</ReactMarkdown>
<div className={styles.tag}> <div className={styles.tag}>
<h3>Tags:</h3> <span>Tags:</span>
{categories.map((e, i) => ( {categories.map((e, i) => (
<p key={i}>{e}</p> <p key={i}>{e}</p>
))} ))}
...@@ -82,5 +82,6 @@ SingleBlog.propTypes = { ...@@ -82,5 +82,6 @@ SingleBlog.propTypes = {
category: PropTypes.string, category: PropTypes.string,
readingTime: PropTypes.string, readingTime: PropTypes.string,
categories: PropTypes.array, categories: PropTypes.array,
markdown: PropTypes.any,
}; };
export default SingleBlog; export default SingleBlog;
...@@ -51,13 +51,17 @@ blockquote p { ...@@ -51,13 +51,17 @@ blockquote p {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 0.2rem; gap: 0.2rem;
} > p {
.tag p { background: #e2e8f0;
background: #e2e8f0; padding: 0.3em 1em;
padding: 0.3em 1em; border-radius: 40px;
border-radius: 40px; color: #718096;
color: #718096; font-weight: 400;
font-weight: bold; }
> span {
font-weight: bold;
font-size: 20px;
}
} }
.tag p:hover { .tag p:hover {
......
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