feat(pdp): Adiciona container de descricao
This commit is contained in:
parent
16f747874c
commit
ef381b2880
@ -15,7 +15,6 @@
|
|||||||
"postreleasy": "vtex publish --verbose"
|
"postreleasy": "vtex publish --verbose"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"agenciamagma.store-theme": "5.x",
|
|
||||||
"vtex.store": "2.x",
|
"vtex.store": "2.x",
|
||||||
"vtex.store-header": "2.x",
|
"vtex.store-header": "2.x",
|
||||||
"vtex.product-summary": "2.x",
|
"vtex.product-summary": "2.x",
|
||||||
|
@ -1,40 +1,53 @@
|
|||||||
import React, { ReactNode } from "react";
|
import React, { ReactNode } from "react";
|
||||||
import { useCssHandles } from "vtex.css-handles";
|
import { useCssHandles } from "vtex.css-handles";
|
||||||
|
|
||||||
|
import "./styles.css";
|
||||||
|
|
||||||
const CSS_HANDLES = ["html"] as const;
|
const CSS_HANDLES = ["html"] as const;
|
||||||
|
|
||||||
type HtmlProps = {
|
type HtmlProps = {
|
||||||
children?: ReactNode,
|
children?: ReactNode;
|
||||||
/**
|
/**
|
||||||
* Qual tag Html que deseja que seja usar
|
* Qual tag Html que deseja que seja usar
|
||||||
*
|
*
|
||||||
* @default div
|
* @default div
|
||||||
*/
|
*/
|
||||||
tag?: keyof React.ReactHTML
|
tag?: keyof React.ReactHTML;
|
||||||
/**
|
/**
|
||||||
* Classes CSS extras que deseja adicionar.
|
* Classes CSS extras que deseja adicionar.
|
||||||
* Feito para uso de [classes do tachyons](https://tachyons.io/)
|
* Feito para uso de [classes do tachyons](https://tachyons.io/)
|
||||||
*/
|
*/
|
||||||
tachyonsClasses?: string
|
tachyonsClasses?: string;
|
||||||
/**
|
/**
|
||||||
* Se caso quiser usar esse componente
|
* Se caso quiser usar esse componente
|
||||||
* para adicinar um texto simples
|
* para adicinar um texto simples
|
||||||
*/
|
*/
|
||||||
text?: string
|
text?: string;
|
||||||
/**
|
/**
|
||||||
* Tag ID para
|
* Tag ID para
|
||||||
*/
|
*/
|
||||||
testId?: string
|
testId?: string;
|
||||||
}
|
};
|
||||||
|
|
||||||
export const Html = ({ children = null, tag = "div", text = "", tachyonsClasses: classes = "", testId }: HtmlProps) => {
|
export const Html = ({
|
||||||
|
children = null,
|
||||||
|
tag = "div",
|
||||||
|
text = "",
|
||||||
|
tachyonsClasses: classes = "",
|
||||||
|
testId,
|
||||||
|
}: HtmlProps) => {
|
||||||
const { handles } = useCssHandles(CSS_HANDLES);
|
const { handles } = useCssHandles(CSS_HANDLES);
|
||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
className: `${handles.html} ${classes}`,
|
className: `${handles.html} ${classes}`,
|
||||||
"data-testid": testId
|
"data-testid": testId,
|
||||||
};
|
};
|
||||||
const Children = <>{children}{text}</>;
|
const Children = (
|
||||||
|
<>
|
||||||
|
{children}
|
||||||
|
{text}
|
||||||
|
</>
|
||||||
|
);
|
||||||
const Element = React.createElement(tag, props, Children);
|
const Element = React.createElement(tag, props, Children);
|
||||||
|
|
||||||
return <>{Element}</>;
|
return <>{Element}</>;
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
/*
|
[class*="html--codigo"] {
|
||||||
0 - 600PX: Phone
|
|
||||||
600 - 900px: Table portrait
|
|
||||||
900 - 1200px: Tablet landscape
|
|
||||||
[1200 - 1800] is where our nortal styles apply
|
|
||||||
1800px + : Big desktop
|
|
||||||
*/
|
|
||||||
/* Media Query M3 */
|
|
||||||
/* Grid breakpoints */
|
|
||||||
.html--codigo {
|
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
text-align: end;
|
text-align: end;
|
||||||
}
|
}
|
||||||
|
|
||||||
.html--qtd-btn {
|
[class*="html--description-container"] {
|
||||||
|
display: grid;
|
||||||
|
grid-auto-flow: column;
|
||||||
|
margin-left: 40px;
|
||||||
|
margin-right: 40px;
|
||||||
|
gap: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="html--qtd-btn"] {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
}
|
}
|
||||||
.html--qtd-btn :global(.vtex-button) {
|
|
||||||
|
[class*="html--qtd-btn"] :global(.vtex-button) {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
border: none;
|
border: none;
|
||||||
font-style: normal;
|
font-style: normal;
|
@ -4,7 +4,8 @@
|
|||||||
/*"html#breadcrumb",*/
|
/*"html#breadcrumb",*/
|
||||||
"breadcrumb#teste1",
|
"breadcrumb#teste1",
|
||||||
"condition-layout.product#availability",
|
"condition-layout.product#availability",
|
||||||
"flex-layout.row#description",
|
"html#description",
|
||||||
|
/*"flex-layout.row#description",*/
|
||||||
"flex-layout.row#specifications-title",
|
"flex-layout.row#specifications-title",
|
||||||
"product-specification-group#table",
|
"product-specification-group#table",
|
||||||
"shelf.relatedProducts",
|
"shelf.relatedProducts",
|
||||||
@ -12,6 +13,24 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"html#description": {
|
||||||
|
"props": {
|
||||||
|
"tag": "section",
|
||||||
|
"testId": "description",
|
||||||
|
"blockClass": "description-container"
|
||||||
|
},
|
||||||
|
"children": ["html#description-image", "product-description"]
|
||||||
|
},
|
||||||
|
"html#description-image": {
|
||||||
|
"children": ["product-images#description"]
|
||||||
|
},
|
||||||
|
"product-images#description": {
|
||||||
|
"props": {
|
||||||
|
"displayMode": "first-image",
|
||||||
|
"blockClass": "description-imagem"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"breadcrumb#teste1": {
|
"breadcrumb#teste1": {
|
||||||
"props": {
|
"props": {
|
||||||
"blockClass": "testebread",
|
"blockClass": "testebread",
|
||||||
@ -35,11 +54,11 @@
|
|||||||
"text": "##### Product Specifications"
|
"text": "##### Product Specifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flex-layout.row#description": {
|
"product-description": {
|
||||||
"props": {
|
"props": {
|
||||||
"marginBottom": 7
|
"marginBottom": 7,
|
||||||
},
|
"blockClass": "descricao"
|
||||||
"children": ["product-description"]
|
}
|
||||||
},
|
},
|
||||||
"condition-layout.product#availability": {
|
"condition-layout.product#availability": {
|
||||||
"props": {
|
"props": {
|
||||||
@ -101,7 +120,7 @@
|
|||||||
"thumbnailMaxHeight": 90,
|
"thumbnailMaxHeight": 90,
|
||||||
"thumbnailsOrientation": "horizontal",
|
"thumbnailsOrientation": "horizontal",
|
||||||
"aspectRatio": {
|
"aspectRatio": {
|
||||||
"desktop": "auto",
|
"desktop": "1:1",
|
||||||
"phone": "16:9"
|
"phone": "16:9"
|
||||||
},
|
},
|
||||||
"displayThumbnailsArrows": false
|
"displayThumbnailsArrows": false
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
.thumbImg {
|
.thumbImg {
|
||||||
height: 90px;
|
height: 90px;
|
||||||
max-width: 90px;
|
max-width: 90px;
|
||||||
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.carouselThumbBorder {
|
.carouselThumbBorder {
|
||||||
@ -140,7 +141,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.diagonalCross--skus {
|
.diagonalCross--skus {
|
||||||
height: 20px;
|
transform: rotate(80deg);
|
||||||
|
background-image: linear-gradient(to top right, transparent 44%, #d5d5d5 48%, transparent 52%);
|
||||||
|
max-width: 28px;
|
||||||
|
max-height: 30px;
|
||||||
|
left: 6px;
|
||||||
|
top: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.skuSelectorSelectorImageValue {
|
.skuSelectorSelectorImageValue {
|
||||||
@ -205,3 +211,32 @@
|
|||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.productDescriptionContainer--descricao {
|
||||||
|
display: flex;
|
||||||
|
justify-content: left;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container--descricao {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.productDescriptionTitle--descricao {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 32px;
|
||||||
|
color: #575757;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content--descricao {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content--description-imagem {
|
||||||
|
border: 1px solid red;
|
||||||
|
}
|
@ -1,22 +0,0 @@
|
|||||||
.html--codigo {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 19px;
|
|
||||||
text-align: end;
|
|
||||||
}
|
|
||||||
|
|
||||||
.html--qtd-btn {
|
|
||||||
display: flex;
|
|
||||||
height: 49px;
|
|
||||||
|
|
||||||
:global(.vtex-button) {
|
|
||||||
background-color: $color-black-100;
|
|
||||||
border: none;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 18px;
|
|
||||||
line-height: 25px;
|
|
||||||
color: #ffffff;
|
|
||||||
border-radius: 0%;
|
|
||||||
}
|
|
||||||
}
|
|
@ -20,6 +20,7 @@
|
|||||||
.thumbImg {
|
.thumbImg {
|
||||||
height: 90px;
|
height: 90px;
|
||||||
max-width: 90px;
|
max-width: 90px;
|
||||||
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.carouselThumbBorder {
|
.carouselThumbBorder {
|
||||||
@ -146,7 +147,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.diagonalCross--skus {
|
.diagonalCross--skus {
|
||||||
height: 20px;
|
transform: rotate(80deg);
|
||||||
|
background-image: linear-gradient(
|
||||||
|
to top right,
|
||||||
|
transparent 44%,
|
||||||
|
#d5d5d5 48%,
|
||||||
|
transparent 52%
|
||||||
|
);
|
||||||
|
max-width: 28px;
|
||||||
|
max-height: 30px;
|
||||||
|
left: 6px;
|
||||||
|
top: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.skuSelectorSelectorImageValue {
|
.skuSelectorSelectorImageValue {
|
||||||
@ -223,3 +234,32 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//DESCRIÇÃO
|
||||||
|
|
||||||
|
.productDescriptionContainer--descricao {
|
||||||
|
display: flex;
|
||||||
|
justify-content: left;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container--descricao {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.productDescriptionTitle--descricao {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 32px;
|
||||||
|
color: $color-gray8;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
.content--descricao {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: $color-gray6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content--description-imagem {
|
||||||
|
border: 1px solid red;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user