forked from M3-Academy/m3-academy-template-vtexio
Compare commits
2 Commits
7d85b252e3
...
ceba5c3e47
Author | SHA1 | Date | |
---|---|---|---|
ceba5c3e47 | |||
7da2f241c5 |
3
custom/react/Countdown.tsx
Normal file
3
custom/react/Countdown.tsx
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import Countdown from "./components/Countdown";
|
||||||
|
|
||||||
|
export default Countdown;
|
11
custom/react/components/Countdown/assets/clock.svg
Normal file
11
custom/react/components/Countdown/assets/clock.svg
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg fill="#ffffff" height="25px" width="25px" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" xmlns:xlink="http://www.w3.org/1999/xlink" enable-background="new 0 0 512 512">
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<path d="m256,51.8c-112.6,0-204.2,91.6-204.2,204.2s91.6,204.2 204.2,204.2 204.2-91.6 204.2-204.2-91.6-204.2-204.2-204.2v-1.42109e-14zm0,449.2c-135.1,0-245-109.9-245-245s109.9-245 245-245 245,109.9 245,245-109.9,245-245,245z"/>
|
||||||
|
<path d="m344.1,276.4h-88.1c-11.3,0-20.4-9.1-20.4-20.4v-157.8c0-11.3 9.1-20.4 20.4-20.4 11.3,0 20.4,9.1 20.4,20.4v137.4h67.7c11.3,0 20.4,9.1 20.4,20.4 5.68434e-14,11.3-9.1,20.4-20.4,20.4z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 884 B |
BIN
custom/react/components/Countdown/assets/textura.jpg
Normal file
BIN
custom/react/components/Countdown/assets/textura.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
97
custom/react/components/Countdown/index.tsx
Normal file
97
custom/react/components/Countdown/index.tsx
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
|
||||||
|
import React, { useEffect, useState } from "react";
|
||||||
|
|
||||||
|
import styles from "./styles.css";
|
||||||
|
|
||||||
|
import clock from "./assets/clock.svg";
|
||||||
|
|
||||||
|
interface CountdownProps {
|
||||||
|
//formato: dd/mm/yyyy/hh:mm
|
||||||
|
endDate: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Time {
|
||||||
|
hour: number;
|
||||||
|
minute: number;
|
||||||
|
second: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Countdown = ({endDate}: CountdownProps) => {
|
||||||
|
|
||||||
|
const [time, setTime] = useState<Time>({
|
||||||
|
hour: 0,
|
||||||
|
minute: 0,
|
||||||
|
second: 0
|
||||||
|
});
|
||||||
|
|
||||||
|
const [day, month, year, hourMinute] = endDate.split("/");
|
||||||
|
const [hour, minute] = hourMinute.split(":");
|
||||||
|
|
||||||
|
const updateTimer = () => {
|
||||||
|
|
||||||
|
const finalDate = new Date(
|
||||||
|
parseInt(year),
|
||||||
|
parseInt(month) - 1,
|
||||||
|
parseInt(day),
|
||||||
|
parseInt(hour),
|
||||||
|
parseInt(minute)
|
||||||
|
).getTime();
|
||||||
|
|
||||||
|
const atualDate = new Date().getTime();
|
||||||
|
|
||||||
|
let difference = finalDate - atualDate;
|
||||||
|
|
||||||
|
const hours = Math.floor(difference / ( 1000 * 60 * 60));
|
||||||
|
|
||||||
|
difference = difference - (hours * 60 * 60 * 1000);
|
||||||
|
|
||||||
|
const minutes = Math.floor(difference / (1000 * 60));
|
||||||
|
|
||||||
|
difference = difference - (minutes * 60 * 1000);
|
||||||
|
|
||||||
|
const seconds= Math.floor(difference / 1000);
|
||||||
|
|
||||||
|
if (hours <= 0) {
|
||||||
|
setTime({
|
||||||
|
hour: 0,
|
||||||
|
minute: 0,
|
||||||
|
second:0
|
||||||
|
});
|
||||||
|
|
||||||
|
}else {
|
||||||
|
setTime({
|
||||||
|
hour: hours,
|
||||||
|
minute: minutes,
|
||||||
|
second: seconds
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setInterval(updateTimer, 1000);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const hourString = time.hour.toString().padStart(2, "0");
|
||||||
|
const minuteString = time.minute.toString().padStart(2, "0");
|
||||||
|
const secondString = time.second.toString().padStart(2, "0");
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={styles.countdownWrapper}>
|
||||||
|
<div className={styles.countdownBadge}>
|
||||||
|
<img className={styles.countdownBadgeClock} src={clock} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.countdownTitle}>
|
||||||
|
<h1 className={styles.countdownHeading1}>Ofertas</h1>
|
||||||
|
<h3 className={styles.countdownHeading3}>Não perca tempo,</h3>
|
||||||
|
<h2 className={styles.countdownHeading2}>garanta agora!</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.countdownText}>
|
||||||
|
{`${hourString}:${minuteString}:${secondString}`}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Countdown;
|
79
custom/react/components/Countdown/styles.css
Normal file
79
custom/react/components/Countdown/styles.css
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
.countdownWrapper {
|
||||||
|
background-image: url(./assets/textura.jpg);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: contain;
|
||||||
|
|
||||||
|
background-color: #c70042;
|
||||||
|
width: 414px;
|
||||||
|
height: 414px;
|
||||||
|
border-radius: 30px;
|
||||||
|
background-blend-mode: multiply;
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
margin-top: 30px;
|
||||||
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdownTitle {
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdownHeading1 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 40px;
|
||||||
|
line-height: 48px;
|
||||||
|
letter-spacing: -0,05em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdownHeading3 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 20px;
|
||||||
|
letter-spacing: -0,05em;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdownHeading2 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 30px;
|
||||||
|
letter-spacing: -0,05em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdownText {
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 200;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
color: white;
|
||||||
|
|
||||||
|
width: 170px;
|
||||||
|
height: 170px;
|
||||||
|
border-radius: 50%;
|
||||||
|
|
||||||
|
border: 2px solid #ffffff15;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdownBadge {
|
||||||
|
position: absolute;
|
||||||
|
top: 30px;
|
||||||
|
right: 0;
|
||||||
|
|
||||||
|
background-color: rgb(1, 185, 185);
|
||||||
|
border-radius: 80px 0 0 80px;
|
||||||
|
|
||||||
|
padding: 10px 10px 6px 34px;
|
||||||
|
}
|
@ -23,5 +23,9 @@
|
|||||||
"content": {
|
"content": {
|
||||||
"$ref": "app:agenciamagma.m3-custom#/definitions/DynamicMenu"
|
"$ref": "app:agenciamagma.m3-custom#/definitions/DynamicMenu"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"countdown-academy": {
|
||||||
|
"component": "Countdown"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
"flex-layout.row#deals",
|
"flex-layout.row#deals",
|
||||||
"__fold__",
|
"__fold__",
|
||||||
"flex-layout.row#faixa-de-imagens",
|
"flex-layout.row#faixa-de-imagens",
|
||||||
|
"countdown-academy",
|
||||||
"rich-text#m3-shelf-title",
|
"rich-text#m3-shelf-title",
|
||||||
"flex-layout.row#m3-shelf",
|
"flex-layout.row#m3-shelf",
|
||||||
"info-card#m3-middle-card",
|
"info-card#m3-middle-card",
|
||||||
@ -17,6 +18,12 @@
|
|||||||
// }
|
// }
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"countdown-academy": {
|
||||||
|
"props" : {
|
||||||
|
"endDate": "31/01/2023/12:30"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"flex-layout.row#faixa-de-imagens": {
|
"flex-layout.row#faixa-de-imagens": {
|
||||||
"props": {
|
"props": {
|
||||||
"blockClass": "faixa-de-imagens"
|
"blockClass": "faixa-de-imagens"
|
||||||
|
Loading…
Reference in New Issue
Block a user