Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TITAN-283] - Re-create latest products section in React #10

Merged
merged 7 commits into from
Apr 6, 2023
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions components/ProductCard/ProductCard.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import React from 'react';
import classNames from 'classnames/bind';
import styles from './ProductCard.module.scss';

const cx = classNames.bind(styles);

import Link from 'next/link';
const ProductCard = ({ product }) => {
const productHref = `/product/${product?.handle}`;
const thumbnail = product?.featuredImage?.url;

return (
<div className={cx([styles.column, styles.productWrapper])}>
<div className={styles.productImageContainer}>
<Link href={productHref}>
<a>
{product?.variants?.nodes[0]?.compareAtPrice ? (
<span className={styles.onsale}>Sale!</span>
) : null}
<img
className={styles.productImage}
src={thumbnail ?? '/ProductDefault.gif'}
alt={product?.name}
loading='lazy'
/>
</a>
</Link>
</div>
<div className={styles.productInfoContainer}>
<p className={styles.productTitle}>
<Link href={productHref}>
<a>{product?.title}</a>
</Link>
</p>
<div className={styles.productPrice}>
<span>
{product?.variants?.nodes[0]?.compareAtPrice ? (
<>
<del>
{'$' + product?.variants?.nodes[0]?.compareAtPrice?.amount}
</del>
{'$' + product?.variants?.nodes[0]?.price?.amount}
</>
) : (
'$' + product?.variants?.nodes[0]?.price?.amount
)}
</span>
</div>
<div className={styles.buttonContainer}>
<Link href={productHref}>
<a className={styles.button}>View product</a>
</Link>
</div>
</div>
</div>
);
};

export default ProductCard;
94 changes: 94 additions & 0 deletions components/ProductCard/ProductCard.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
.column {
flex: 1;
}

.productWrapper {
@import 'styles/css-variables';
@import 'styles/breakpoints';

position: relative;
display: flex !important;
flex-wrap: wrap;

a {
position: relative;
}

.onsale {
border: 1px solid;
border-color: var(--wpe--color--slate);
color: var(--wpe--color--slate);
padding: 0.202em 0.6180469716em;
margin: 10px;
font-size: 0.875em;
text-transform: uppercase;
font-weight: 600;
display: inline-block;
margin-bottom: 1em;
border-radius: 3px;
position: absolute;
background-color: var(--wpe--color--white);
}

.productImageContainer {
position: relative;
display: block;
width: 100%;
text-align: center;
height: 200px;

.productImage {
width: 80%;
height: auto;
margin: 0 auto;

@media (max-width: $breakpoint-extra-small) {
width: auto;
}
}
}

.productInfoContainer {
padding: 2rem 0;
text-align: center;
margin-top: auto;
width: 100%;

.productTitle {
width: auto;
margin-bottom: 1rem;
font-weight: 300;
font-size: 1.2em;

a {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}

.productPrice {
width: auto;
color: var(--wpe--color--black);
font-weight: 700;
margin-bottom: 1rem;
}

.buttonContainer {
.button {
margin: 0px 0.5rem;
background-color: var(--wpe--color--green);
text-decoration: none;
font-weight: 500;
padding: 1rem;
display: inline-block;
color: var(--wpe--color--white);
transition: all 0.5s;
&:hover {
background-color: var(--wpe--color--green);
}
}
}
}
}
1 change: 1 addition & 0 deletions components/ProductCard/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ProductCard } from './ProductCard';
21 changes: 21 additions & 0 deletions components/ProductSection/ProductSection.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import React from 'react';
import classNames from 'classnames';
import styles from './ProductSection.module.scss';
import { ProductCard } from '../ProductCard';

const cx = classNames.bind(styles);

const ProductSection = ({ products, heading }) => {
return (
<div className={cx([styles.component])}>
<h2>{heading}</h2>
<div className={cx(styles.section)}>
{products?.map?.((product) => {
return <ProductCard key={product.id} product={product} />;
})}
</div>
</div>
);
};

export default ProductSection;
12 changes: 12 additions & 0 deletions components/ProductSection/ProductSection.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.component {
margin: 0 auto;
text-align: center;

h2 {
margin: 2em;
}

.section {
display: flex;
}
}
1 change: 1 addition & 0 deletions components/ProductSection/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ProductSection } from './ProductSection';
2 changes: 2 additions & 0 deletions components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ export { Heading } from './Heading';
export { Main } from './Main';
export { NavigationMenu } from './NavigationMenu';
export { PostInfo } from './PostInfo';
export { ProductCard } from './ProductCard';
export { ProductSection } from './ProductSection';
export { SkipNavigationLink } from './SkipNavigationLink';
export { Hero } from './Hero';
export { Post } from './Post';
Expand Down
Loading