Commit 21b7a064 by Madhankumar

blog list height issue resolved

parent f3ac5a1c
...@@ -2,10 +2,6 @@ ...@@ -2,10 +2,6 @@
import "../app/globals.css"; import "../app/globals.css";
import { useDarkMode } from "storybook-dark-mode"; import { useDarkMode } from "storybook-dark-mode";
import "@fortawesome/fontawesome-svg-core/styles.css"; // Import the CSS import "@fortawesome/fontawesome-svg-core/styles.css"; // Import the CSS
import { library } from "@fortawesome/fontawesome-svg-core";
import { faNewspaper } from "@fortawesome/free-solid-svg-icons";
library.add(faNewspaper);
const preview = { const preview = {
parameters: { parameters: {
......
import "@styles/global.css"; import "@styles/global.css";
import "@fortawesome/fontawesome-svg-core/styles.css"; // Import the CSS
import { library } from "@fortawesome/fontawesome-svg-core";
import { faNewspaper } from "@fortawesome/free-solid-svg-icons";
library.add(faNewspaper); // import "@fortawesome/fontawesome-svg-core/styles.css"; // Import the CSS
//import Layout from '../components/layout' // import { library } from "@fortawesome/fontawesome-svg-core";
// import { faNewspaper } from "@fortawesome/free-solid-svg-icons";
// library.add(faNewspaper);
export default function App({ Component, pageProps }) { export default function App({ Component, pageProps }) {
return ( return <Component {...pageProps} />;
<>
<Component {...pageProps} />
</>
);
} }
...@@ -9,34 +9,43 @@ ...@@ -9,34 +9,43 @@
.card { .card {
background-color: var(--card-bg); background-color: var(--card-bg);
border-radius: 20px; border-radius: 20px;
/* transition: transform 0.5s; */ display: flex;
flex-direction: column;
transition: all 0.3s ease-in-out;
word-wrap: break-word;
} }
/* .card:hover { .card:hover {
transform: scale(1.1); transform: translateY(-10px);
} */
.cardbottom img {
border-radius: 50%;
max-width: 100%;
} }
.card-content { .card-content {
padding: 1.5rem; padding: 1.5rem;
padding-bottom: 1rem; padding-bottom: 1rem;
}
word-wrap: break-word; .authordescription > p {
font-size: 18px;
font-weight: 500;
} }
.cardbottom { .cardbottom {
display: grid; display: grid;
grid-template-columns: 0.5fr 2fr; grid-template-columns: 0.5fr 2fr;
line-height: 0; line-height: 0;
align-items: start; align-items: center;
grid-gap: 16px; grid-gap: 16px;
color: var(--font-color-900); color: var(--font-color-900);
} }
.cardbottom img {
border-radius: 50%;
height: auto;
max-width: 100%;
}
.description { .description {
color: var(--font-color-300); color: var(--font-color-300);
line-height: 1.5em; line-height: 1.5em;
font-weight: 600px;
word-wrap: break-word; word-wrap: break-word;
} }
......
...@@ -5,38 +5,48 @@ import Icons from "../icons/page"; ...@@ -5,38 +5,48 @@ import Icons from "../icons/page";
import PropTypes from "prop-types"; import PropTypes from "prop-types";
const Card = ({ const Card = ({
mainTitle, title,
description, description,
imageUrl, blogImage,
postedOn, publishedOn,
author, author,
readingTime, readingTime,
}) => { }) => {
console.log(blogImage);
return ( return (
<div className={styles.card}> <div className={styles.card}>
<Link prefetch={false} href="#"> <Link prefetch={false} href="#">
<Image className={styles.img} src={imageUrl} alt="cardimage" /> <Image
className={styles.img}
src={blogImage.image}
height={blogImage.height}
width={blogImage.width}
quality={100}
alt="cardimage"
/>
</Link> </Link>
<div className={styles["card-content"]}> <div className={styles["card-content"]}>
<Link prefetch={false} href="#" className={styles.title}> <Link prefetch={false} href="#" className={styles.title}>
{mainTitle} <p>{title}</p>
</Link> </Link>
<p className={styles.description}>{description}</p> <p className={styles.description}>{description}</p>
<div className={styles.cardbottom}> <div className={styles.authorcontainer}>
<Image <div className={styles.cardbottom}>
className={styles.img} <Image
src={author.authImg} className={styles.img}
quality={100} src={author.image}
alt="authorImg" quality={100}
/> alt="authorImg"
<div> />
<h3>{author.name}</h3> <div className={styles.authordescription}>
<div className={styles["author-desc"]}> <p>{author.name}</p>
{postedOn} <div className={styles["author-desc"]}>
<span className={styles.icon}> {publishedOn}
<Icons name="clock" /> <span className={styles.icon}>
{readingTime} <Icons name="clock" />
</span> {readingTime}
</span>
</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -45,15 +55,19 @@ const Card = ({ ...@@ -45,15 +55,19 @@ const Card = ({
); );
}; };
Card.propTypes = { Card.propTypes = {
mainTitle: PropTypes.string, title: PropTypes.string,
description: PropTypes.string, description: PropTypes.string,
imageUrl: PropTypes.object, blogImage: PropTypes.shape({
postedOn: PropTypes.string, image: PropTypes.string,
height: PropTypes.number,
width: PropTypes.number,
}),
publishedon: PropTypes.string,
author: PropTypes.shape({ author: PropTypes.shape({
name: PropTypes.string, name: PropTypes.string,
authImg: PropTypes.string, // Use PropTypes.string for authImg image: PropTypes.string, // Use PropTypes.string for images
}), }),
postedOn: PropTypes.string,
readingTime: PropTypes.string, readingTime: PropTypes.string,
}; };
......
import styles from "./header.module.css"; import styles from "./header.module.css";
import Search from "../search/page"; import Search from "../search/page";
import Icon from "../icons/page"; import Icon from "../icons/page";
import { useState } from "react"; import { useTheme } from "../../../context";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; // Correct import Link from "next/link";
function Header({ onThemeChange, onSearch, onClose }) { function Header({ name, onThemeChange, onSearch, onClose }) {
const [theme, setTheme] = useState("light"); const { theme, toggleTheme } = useTheme();
const handleTheme = () => { const handleTheme = () => {
theme == "light" ? setTheme("dark") : setTheme("light"); toggleTheme();
onThemeChange(theme); onThemeChange(theme);
}; };
const handleSearch = (value) => { const handleSearch = (value) => {
...@@ -21,21 +21,17 @@ function Header({ onThemeChange, onSearch, onClose }) { ...@@ -21,21 +21,17 @@ function Header({ onThemeChange, onSearch, onClose }) {
<header className={styles.header}> <header className={styles.header}>
<div className={styles.container}> <div className={styles.container}>
<nav className={styles.navbar}> <nav className={styles.navbar}>
<a className={styles["navbar-brand"]} href="/"> <Link className={styles["navbar-brand"]} href="/" prefetch={false}>
{/* <FontAwesomeIcon
icon="fa fa-newspaper"
style={{ fontSize: "30px", color: "#5a67d8" }}
/> */}
<Icon name="newspaper" /> <Icon name="newspaper" />
<h2>NewsBlog</h2> <h2>{name}</h2>
</a> </Link>
<div className={styles.search}> <div className={styles.search}>
<Search onSearch={handleSearch} onClose={handleClose} /> <Search onSearch={handleSearch} onClose={handleClose} />
</div> </div>
<div onClick={handleTheme} className={styles.themelight}> <div onClick={handleTheme} className={styles.themelight}>
<Icon name={theme == "dark" ? "moon" : "sun"} /> <Icon name={theme == "light" ? "moon" : "sun"} />
<span className={styles.mobilemenu}> <span className={styles.mobilemenu}>
<Icon name="hamburger" /> <Icon name="hamburger" />
</span> </span>
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
.sun svg { .sun svg {
height: 35px; height: 35px;
width: 35px; width: 35px;
color: var(--font-color-900); color: var(--font-color-300);
vertical-align: sub; vertical-align: sub;
} }
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
color: white; color: white;
padding: 0.5rem 0.7rem; padding: 0.5rem 0.7rem;
border-radius: 5px; border-radius: 5px;
height: 35px;
width: 35px;
} }
.newspaper svg { .newspaper svg {
......
...@@ -2,16 +2,16 @@ ...@@ -2,16 +2,16 @@
height: 48px; height: 48px;
width: 30vw; width: 30vw;
background: #f4f4f4; background: #f4f4f4;
border-radius: 10px;
border: none; border: none;
outline: 3px solid var(--card-bg); outline: none;
padding-left: 3rem; padding-left: 3rem;
font-size: 16px; font-size: 16px;
} }
.search-input { .search-input {
position: relative; position: relative;
display: inline-block; display: inline-block;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
} }
.search-icon { .search-icon {
position: absolute; position: absolute;
......
.bloglist-container { .blog-container {
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
} }
...@@ -7,6 +7,12 @@ ...@@ -7,6 +7,12 @@
grid-row-gap: 3rem; grid-row-gap: 3rem;
} }
.card-container {
display: flex;
align-self: normal;
flex: 1 0 auto;
}
.title { .title {
font-size: 38px; font-size: 38px;
line-height: 25px; line-height: 25px;
......
import PropTypes from "prop-types"; import PropTypes from "prop-types";
import Card from "../../base/card/page"; import Card from "../../base/card/page";
import styles from "./blog-lists.module.css"; import styles from "./blog-lists.module.css";
const BlogLists = ({ listsData }) => { const BlogLists = ({ title, description, blogs }) => {
return ( return (
<div className={styles["bloglist-container"]}> <div className={styles["blog-container"]}>
<h1 className={styles.title}>Lifestyle</h1> <h1 className={styles.title}>{title}</h1>
<p className={styles.description}> <p className={styles.description}>{description}</p>
Lorem ipsum dolor sit amet elit. Id quaerat amet ipsum sunt et quos
dolorum
</p>
<div className={styles.row}> <div className={styles.row}>
{listsData.map((blogData, i) => ( {blogs.map((blogData, i) => (
<Card key={i} {...blogData} /> <div key={i} className={styles["card-container"]}>
<Card {...blogData} />
</div>
))} ))}
</div> </div>
</div> </div>
); );
}; };
BlogLists.propTypes = { BlogLists.propTypes = {
listsData: PropTypes.array, blogs: PropTypes.array,
}; };
export default BlogLists; export default BlogLists;
import React, { useState, useEffect } from "react"; import React, { useState, useEffect } from "react";
import styles from "./pagination.module.css"; import styles from "./pagination.module.css";
import PropTypes from "prop-types";
function Pagination({ totalPages, currentPage, onPageChange }) { function Pagination({ total, currentPage, onPageChange }) {
//Set number of pages //Set number of pages
const numberOfPages = []; const numberOfPages = [];
for (let i = 1; i <= totalPages; i++) { const totalPage = total <= 1 ? 1 : total;
for (let i = 1; i <= totalPage; i++) {
numberOfPages.push(i); numberOfPages.push(i);
} }
...@@ -14,7 +16,6 @@ function Pagination({ totalPages, currentPage, onPageChange }) { ...@@ -14,7 +16,6 @@ function Pagination({ totalPages, currentPage, onPageChange }) {
// Array of buttons what we see on the page // Array of buttons what we see on the page
const [arrOfCurrButtons, setArrOfCurrButtons] = useState([]); const [arrOfCurrButtons, setArrOfCurrButtons] = useState([]);
useEffect(() => { useEffect(() => {
console.log("diyd", currentPage);
let tempNumberOfPages = [...arrOfCurrButtons]; let tempNumberOfPages = [...arrOfCurrButtons];
let dotsInitial = "..."; let dotsInitial = "...";
...@@ -47,7 +48,7 @@ function Pagination({ totalPages, currentPage, onPageChange }) { ...@@ -47,7 +48,7 @@ function Pagination({ totalPages, currentPage, onPageChange }) {
} }
setArrOfCurrButtons(tempNumberOfPages); setArrOfCurrButtons(tempNumberOfPages);
}, [totalPages, currentButton]); }, [total, currentButton]);
//update currentButton value if currentPageNo changes //update currentButton value if currentPageNo changes
useEffect(() => { useEffect(() => {
...@@ -100,4 +101,8 @@ function Pagination({ totalPages, currentPage, onPageChange }) { ...@@ -100,4 +101,8 @@ function Pagination({ totalPages, currentPage, onPageChange }) {
); );
} }
Pagination.propTypes = {
total: PropTypes.number.isRequired,
currentPage: PropTypes.number,
};
export default Pagination; export default Pagination;
...@@ -24,8 +24,9 @@ ...@@ -24,8 +24,9 @@
} }
.pagination-container a.active { .pagination-container a.active {
background-color: var(--primary-color); background: #5a67d8;
color: white; color: #fff;
border: 1px solid #7cbddb; border: 1px solid #7cbddb;
border-radius: 10px; border-radius: 10px;
font-size: 14px; font-size: 14px;
...@@ -37,8 +38,8 @@ ...@@ -37,8 +38,8 @@
cursor: not-allowed; cursor: not-allowed;
} }
.pagination-container a:hover:not(.active) { .pagination-container a:hover:not(.active) {
background-color: var(--primary-color); background: #5a67d8;
color: white; color: #fff;
} }
.next { .next {
......
...@@ -3,20 +3,20 @@ import styles from "./single-blog.module.css"; ...@@ -3,20 +3,20 @@ import styles from "./single-blog.module.css";
import ReactMarkdown from "react-markdown"; import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm"; import remarkGfm from "remark-gfm";
function SingleBlog({ function SingleBlog({
subTitle, title,
postedOn, postedOn,
authorName, author,
publishedIn, category,
readTime, readTime,
blogImg, blogImg,
tags, categories,
markdown, markdown,
}) { }) {
return ( return (
<> <>
<div className={styles["head-container"]}> <div className={styles["head-container"]}>
<div className={styles.headtitle}> <div className={styles.headtitle}>
<h1 className={styles.title}>{subTitle}</h1> <h1 className={styles.title}>{title}</h1>
</div> </div>
<div className={styles["blog-list"]}> <div className={styles["blog-list"]}>
<ul> <ul>
...@@ -26,13 +26,13 @@ function SingleBlog({ ...@@ -26,13 +26,13 @@ function SingleBlog({
<li> <li>
By&nbsp; By&nbsp;
<a href="#" className={styles["list-bold"]}> <a href="#" className={styles["list-bold"]}>
{authorName} {author?.name}
</a> </a>
</li> </li>
<li> <li>
Published in&nbsp; Published in&nbsp;
<a href="#" className={styles["list-bold"]}> <a href="#" className={styles["list-bold"]}>
{publishedIn} {category}
</a> </a>
</li> </li>
<li> <li>
...@@ -47,7 +47,7 @@ function SingleBlog({ ...@@ -47,7 +47,7 @@ function SingleBlog({
<div className={styles.blogimage}> <div className={styles.blogimage}>
<Image <Image
className={styles.img} className={styles.img}
src={blogImg} src={author?.image}
quality={100} quality={100}
alt="image" alt="image"
/> />
...@@ -55,8 +55,8 @@ function SingleBlog({ ...@@ -55,8 +55,8 @@ 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>Tag:</h3> <h3>Tags:</h3>
{tags.map((e, i) => ( {categories.map((e, i) => (
<p key={i}>{e}</p> <p key={i}>{e}</p>
))} ))}
</div> </div>
......
...@@ -92,7 +92,7 @@ blockquote p::before { ...@@ -92,7 +92,7 @@ blockquote p::before {
/* padding-inline: 1rem; */ /* padding-inline: 1rem; */
} }
.title { .title {
font-size: clamp(1rem, 1.3rem + 2.5vw, 3.4rem); font-size: clamp(1rem, 1.3rem + 2vw, 3rem);
margin: 0; margin: 0;
font-weight: 600; font-weight: 600;
color: var(--font-color-900); color: var(--font-color-900);
...@@ -105,7 +105,7 @@ h3 { ...@@ -105,7 +105,7 @@ h3 {
color: var(--font-color-900); color: var(--font-color-900);
} }
h2 { h2 {
font-size: clamp(1rem, 1rem + 2vw, 2rem); font-size: clamp(1rem, 1rem + 2vw, 1.7rem);
} }
@media (min-width: 802px) { @media (min-width: 802px) {
.blog-content { .blog-content {
......
import React, { createContext, useState, useContext, useEffect } from "react";
import { useDarkMode } from "storybook-dark-mode";
const ThemeContext = createContext();
export const ThemeProvider = ({ children }) => {
const isDarkMode = useDarkMode();
const [theme, setTheme] = useState("light");
const toggleTheme = () => {
setTheme((prevTheme) => (prevTheme === "light" ? "dark" : "light"));
};
useEffect(() => {
// You can use localStorage to persist the theme preference
const savedTheme = localStorage.getItem("theme");
setTheme((isDarkMode ? "dark" : "light") || savedTheme);
}, [isDarkMode]);
useEffect(() => {
document.documentElement.setAttribute("data-theme", theme);
localStorage.setItem("theme", theme);
}, [theme]);
return (
<ThemeContext.Provider value={{ theme, toggleTheme }}>
{children}
</ThemeContext.Provider>
);
};
export const useTheme = () => {
const context = useContext(ThemeContext);
if (!context) {
throw new Error("useTheme must be used within a ThemeProvider");
}
return context;
};
export const decorators = [
(renderStory) => <ThemeProvider>{renderStory()}</ThemeProvider>,
];
import { ThemeProvider } from "next-themes";
import { useDarkMode } from "storybook-dark-mode";
export function Providers({ children }) {
return (
<ThemeProvider value={useDarkMode() ? darkTheme : defaultTheme}>
{children}
</ThemeProvider>
);
}
export const decorators = [
(renderStory) => <Providers>{renderStory()}</Providers>,
];
@import url("//fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600&display=swap");
@import url("//fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap");
* {
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.light { .light {
--primary-color: #5a67d8; --primary-color: #5a67d8;
--secondary-color: #463373; --secondary-color: #463373;
--font-color-900: #718096; --font-color-900: #2d3748;
--font-color-300: #718096; --font-color-300: #718096;
--title-color: #2d3748; --title-color: #2d3748;
--bg-color: #f4f4f4; --bg-color: #f8f9fa;
--card-bg: #fff; --card-bg: #fff;
--heading-color: #2d3748; --heading-color: #2d3748;
--border-radius: 6px; --border-radius: 6px;
...@@ -25,6 +34,7 @@ ...@@ -25,6 +34,7 @@
--font-color-900: #fff; --font-color-900: #fff;
--title-color: #fff; --title-color: #fff;
--font-color-700: #fff; --font-color-700: #fff;
--primary-color: #fff;
} }
body, body,
...@@ -38,12 +48,12 @@ html { ...@@ -38,12 +48,12 @@ html {
margin: 0 auto; margin: 0 auto;
color: #718096; color: #718096;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
} }
h1, h1,
h2, h2,
h3,
h4, h4,
h5, h5,
h6 { h6 {
......
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { useTheme, ThemeProvider } from "./context";
import { useEffect } from "react";
const inter = Inter({ subsets: ["latin"] }); const inter = Inter({ subsets: ["latin"] });
import { Providers } from "../app/context/themecontext";
export const metadata = { export const metadata = {
title: "Home", title: "Home",
...@@ -10,11 +11,15 @@ export const metadata = { ...@@ -10,11 +11,15 @@ export const metadata = {
}; };
export default function RootLayout({ children }) { export default function RootLayout({ children }) {
const { theme } = useTheme();
useEffect(() => {
console.log("Theme in RootLayout:", theme);
}, [theme]);
return ( return (
<html lang="en"> <ThemeProvider>
<body className={inter.className}> <html lang="en" className={theme}>
<Providers>{children}</Providers> <body>{children}</body>
</body> </html>
</html> </ThemeProvider>
); );
} }
{ {
"compilerOptions": { "compilerOptions": {
"paths": { "paths": {
"@/*": ["./*"] "@/*": ["./*"],
} }
} }
} }
...@@ -7,76 +7,104 @@ export default { ...@@ -7,76 +7,104 @@ export default {
export const blogLists = (args) => <BlogLists {...args} />; export const blogLists = (args) => <BlogLists {...args} />;
blogLists.args = { blogLists.args = {
listsData: [ title: "Lifestyle",
description:
"Lorem ipsum dolor sit amet elit. Id quaerat amet ipsum sunt et quos dolorum",
blogs: [
{ {
mainTitle: "How to get perfect start for beginning runners", title: "How to get perfect start for beginning runners",
description: description:
"Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.", "Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.",
imageUrl: require("../public/images/lifestyle1.jpg"), blogImage: {
postedOn: "July 13, 2020.", image: require("../public/images/lifestyle1.jpg"),
height: 490,
width: 740,
},
publishedOn: "July 13, 2020.",
author: { author: {
name: "Isabella ava", name: "Isabella ava",
authImg: require("../public/images/a1.jpg"), image: require("../public/images/a1.jpg"),
}, },
readingTime: "1min", readingTime: "1min",
}, },
{ {
mainTitle: "Great tools to improve your personal blogging experience", title: "Great tools to improve your personal blogging experience",
description: description:
"Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.", "Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.",
imageUrl: require("../public/images/lifestyle2.jpg"), blogImage: {
postedOn: "July 13, 2020.", image: require("../public/images/lifestyle2.jpg"),
height: 490,
width: 740,
},
publishedOn: "July 13, 2020.",
author: { author: {
name: "Charlotte mia", name: "Charlotte mia",
authImg: require("../public/images/a2.jpg"), image: require("../public/images/a2.jpg"),
}, },
readingTime: "1min", readingTime: "1min",
}, },
{ {
mainTitle: "Blog Guide: How to Start a Personal blog on WordPress", title: "Blog Guide: How to Start a Personal blog on WordPress",
description: description:
"Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.", "Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.",
imageUrl: require("../public/images/lifestyle3.jpg"), blogImage: {
postedOn: "July 13, 2020.", image: require("../public/images/lifestyle3.jpg"),
height: 490,
width: 740,
},
publishedOn: "July 13, 2020.",
author: { author: {
name: "Elizabeth", name: "Elizabeth",
authImg: require("../public/images/a3.jpg"), image: require("../public/images/a3.jpg"),
}, },
readingTime: "1min", readingTime: "1min",
}, },
{ {
mainTitle: "The technical setup when starting a personal blog", title: "The technical setup when starting a personal blog",
description: description:
"Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.", "Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.",
imageUrl: require("../public/images/lifestyle4.jpg"), blogImage: {
postedOn: "July 13, 2020.", image: require("../public/images/lifestyle4.jpg"),
height: 490,
width: 740,
},
publishedOn: "July 13, 2020.",
author: { author: {
name: "Charlotte mia", name: "Charlotte mia",
authImg: require("../public/images/a1.jpg"), image: require("../public/images/a1.jpg"),
}, },
readingTime: "1min", readingTime: "1min",
}, },
{ {
mainTitle: "3 New outfit Formulas To Add to your Capsule Wardrobe", title: "3 New outfit Formulas To Add to your Capsule Wardrobe",
description: description:
"Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.", "Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.",
imageUrl: require("../public/images/lifestyle5.jpg"), blogImage: {
postedOn: "July 13, 2020.", image: require("../public/images/lifestyle5.jpg"),
height: 490,
width: 740,
},
publishedOn: "July 13, 2020.",
author: { author: {
name: "Elizabeth", name: "Elizabeth",
authImg: require("../public/images/a3.jpg"), image: require("../public/images/a3.jpg"),
}, },
readingTime: "1min", readingTime: "1min",
}, },
{ {
mainTitle: "3 New outfit Formulas To Add to your Capsule Wardrobe", title: "3 New outfit Formulas To Add to your Capsule Wardrobe",
description: description:
"Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.", "Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.",
imageUrl: require("../public/images/lifestyle6.jpg"), blogImage: {
postedOn: "July 13, 2020.", image: require("../public/images/lifestyle6.jpg"),
height: 490,
width: 740,
},
publishedOn: "July 13, 2020.",
author: { author: {
name: "Isabella ava", name: "Isabella ava",
authImg: require("../public/images/a1.jpg"), image: require("../public/images/a1.jpg"),
}, },
readingTime: "1min", readingTime: "1min",
}, },
......
...@@ -8,14 +8,18 @@ export default { ...@@ -8,14 +8,18 @@ export default {
}; };
export const card = (args) => <Card {...args} />; export const card = (args) => <Card {...args} />;
card.args = { card.args = {
mainTitle: "How to get a perfect start for beginning runners", title: "How to get a perfect start for beginning runners",
description: description:
"Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.", "Lorem ipsum dolor sit amet consectetur ipsum adipisicing elit. Quis vitae sit.",
imageUrl: require("../public/images/lifestyle1.jpg"), // Use require to load images blogImage: {
postedOn: "July 13, 2020.", image: require("../public/images/lifestyle1.jpg"),
height: 490,
width: 740,
},
publishedOn: "July 13, 2020.",
author: { author: {
name: "Isabella Ava", name: "Isabella Ava",
authImg: require("../public/images/a1.jpg"), // Use require to load images image: require("../public/images/a1.jpg"), // Use require to load images
}, },
readingTime: "1 min", readingTime: "1 min",
}; };
import Header from "../app/components/base/header/page"; import Header from "../app/components/base/header/page";
import { ThemeProvider } from "../app/context";
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" },
...@@ -9,4 +17,8 @@ export default { ...@@ -9,4 +17,8 @@ export default {
}, },
}; };
export const header = {}; export const header = {
args: {
name: "NewsBlog",
},
};
...@@ -9,7 +9,7 @@ export default { ...@@ -9,7 +9,7 @@ export default {
export const pagination = { export const pagination = {
args: { args: {
totalPages: 10, total: 10,
currentPage: 1, currentPage: 1,
}, },
}; };
...@@ -7,13 +7,16 @@ export default { ...@@ -7,13 +7,16 @@ export default {
export const singleBlog = (args) => <SingleBlog {...args} />; export const singleBlog = (args) => <SingleBlog {...args} />;
singleBlog.args = { singleBlog.args = {
subTitle: "Create an Art that shows the beauty in everyone ideas of flaws.", title: "Create an Art that shows the beauty in everyone ideas of flaws.",
postedOn: "July 11,2020", postedOn: "July 11,2020",
authorName: "Charlotte mia", author: {
publishedIn: "Fashion", name: "Charlotte mia",
image: require("../public/images/blogsingle.jpg"),
},
category: "Fashion",
readTime: "1 min read", readTime: "1 min read",
tags: ["Fashion", "Beauty"], categories: ["Fashion", "Beauty"],
blogImg: require("../public/images/blogsingle.jpg"),
markdown: ` markdown: `
## How to create an Art that shows the beauty in everyone ideas of flaws. ## How to create an Art that shows the beauty in everyone ideas of flaws.
......
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