forked from M3-Academy/challenge-vtex-io
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import React from "react";
|
|
import { useProduct } from "vtex.product-context";
|
|
import styles from "./styles.module.css";
|
|
|
|
const PixPrice = () => {
|
|
// document.getElementsByClassName("myText").placeholder = "Type name here..";
|
|
|
|
const productContextValue = useProduct();
|
|
|
|
const productPrice =
|
|
productContextValue?.product?.priceRange?.sellingPrice?.lowPrice;
|
|
|
|
const descount = (Number(productPrice) * 10) / 100;
|
|
|
|
const total = Number(productPrice) - Number(descount.toFixed(2));
|
|
|
|
return (
|
|
<div className={styles["pixPrice-container"]}>
|
|
<div className={styles["pixPrice-content"]}>
|
|
<div className={styles["pixPrice-img"]}>
|
|
<img
|
|
src="https://agenciamagma.vtexassets.com/arquivos/pixRafaelSampaio.png"
|
|
alt=""
|
|
/>
|
|
</div>
|
|
<div className={styles["pixPrice-descount"]}>
|
|
<p className={styles["pixPrice-value"]}>R$ {total.toFixed(2)}</p>
|
|
<p className={styles["pixPrice-text"]}>10 % de desconto</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PixPrice;
|