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

carbon capture modal #1979

Open
wants to merge 14 commits into
base: develop
Choose a base branch
from
1 change: 1 addition & 0 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- feature/storybook-update
- develop
- feature/redesign-explore-btn
- feature/carbon_capture_modal
# List of jobs
jobs:
chromatic-deployment:
Expand Down
13 changes: 11 additions & 2 deletions public/static/locales/en/projectDetails.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
{
"satelliteAnalysis": "Satellite Analysis"
}
"satelliteAnalysis": "Satellite Analysis",
"beforeIntervention": "Before intervention",
"cO₂Quantity": "~{{quantity}}t",
prachigarg19 marked this conversation as resolved.
Show resolved Hide resolved
"before": "before {{date}}",
"byProject": "By Project",
"byProjectCO₂Quantity": "v{{quantity}}t",
"since": "since {{date}}",
"sitePotential": "Site Potential",
"seeMore": "See More",
"seeLess": "See Less"
}
110 changes: 110 additions & 0 deletions src/temp/CarbonCapture/BarGraph.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
import style from './CarbonCapture.module.scss';
import { useTranslation } from 'next-i18next';
import { getFormattedNumber } from '../../utils/getFormattedNumber';

interface CO2BarGraphProps {
beforeIntervation: number;
byProject: number;
sitePotential: number;
}

export const CO2BarGraph = ({
beforeIntervation,
byProject,
sitePotential,
}: CO2BarGraphProps) => {
const beforeIntervationIndicator = (
prachigarg19 marked this conversation as resolved.
Show resolved Hide resolved
beforeIntervation: number,
sitePotential: number
) => {
const beforeIntervationPercenatage =
(beforeIntervation / sitePotential) * 100;

return beforeIntervationPercenatage;
};
const byProjectIndicator = (byProject: number, sitePotential: number) => {
const byProjectPercentage = (byProject / sitePotential) * 100;
return byProjectPercentage;
};
return (
<div className={style.carbonCaptureIndicator}>
<div
style={{
width: `${beforeIntervationIndicator(
beforeIntervation,
sitePotential
)}%`,
}}
className={style.beforeIntervationIndicator}
/>

<div
style={{
width: `${byProjectIndicator(byProject, sitePotential)}%`,
}}
className={style.byProjectIndicator}
/>

<div
style={{
width: `${
100 -
(beforeIntervationIndicator(beforeIntervation, sitePotential) +
byProjectIndicator(byProject, sitePotential))
}%`,
}}
className={style.projectPotential}
/>
</div>
);
};

export const CO2CaptureData = ({
beforeIntervation,
byProject,
sitePotential,
}: CO2BarGraphProps) => {
const { t, i18n } = useTranslation(['projectDetails']);
return (
<div className={style.carbonCaptureDataContainerMain}>
<div>
<p className={style.beforeIntervationData}>
{t('projectDetails:cO₂Quantity', {
quantity: getFormattedNumber(i18n.language, beforeIntervation),
})}
</p>
<p className={style.beforeIntervationLabel}>
{t('projectDetails:beforeIntervention')}
</p>
<p className={style.beforeIntervationDate}>
{t('projectDetails:before', {
date: 2018,
})}
</p>
</div>
<div>
<p className={style.byProjectData}>
{t('projectDetails:byProjectCO₂Quantity', {
quantity: getFormattedNumber(i18n.language, byProject),
})}
</p>
<p className={style.byProjectLabel}>{t('projectDetails:byProject')}</p>
<p className={style.byProjectDate}>
{t('projectDetails:since', {
date: 2018,
})}
</p>
</div>
<div className={style.sitePotentialDataContainer}>
<p className={style.sitePotentialData}>
{t('projectDetails:cO₂Quantity', {
quantity: getFormattedNumber(i18n.language, sitePotential),
})}
</p>
<p className={style.sitePotentialLabel}>
{t('projectDetails:sitePotential')}
</p>
</div>
</div>
);
};
175 changes: 175 additions & 0 deletions src/temp/CarbonCapture/CarbonCapture.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
@import '../../theme/theme';

.carbonCaptureMainContainer {
width: 100%;
display: flex;
flex-direction: column;
}

.carbonCaptureInfoContainer {
display: flex;
height: 111px;
flex-direction: column;
gap: 12px;
padding-left: 15.5px;
padding-right: 15.5px;
}

.carbonCaptureLabelMainContainer {
font-size: $fontXXSmall;
display: flex;
justify-content: space-between;
}

.carbonCaptureLabelContainer {
display: flex;
align-items: center;
> .carbonCapture {
display: flex;
font-weight: 700;
gap: 2px;
p {
font-weight: 400;
}
}
.unit {
margin-left: 1px;
}
}

.carbonCaptureDetailContainer {
padding-left: 16px;
padding-right: 16px;
padding-top: 16px;
border: 1px solid rgba(111, 207, 151, 0.02);
background: linear-gradient(
0deg,
rgba(33, 150, 83, 0.1) 0%,
rgba(33, 150, 83, 0.1) 100%
),
$light;

height: 70px;
border-radius: 12px;
display: flex;
flex-direction: column;
gap: 10px;
}

.carbonCaptureIndicator {
width: 274px;
height: 11px;
display: flex;
border-radius: 3px;

.beforeIntervationIndicator {
width: 100%;
height: 100%;
background: rgba(0, 122, 73, 1);
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.byProjectIndicator {
width: 100%;
background: rgba(104, 176, 48, 1);
height: 100%;
}
.projectPotential {
width: 100%;
background: $light;
height: 100%;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
}

.carbonCaptureDataContainerMain {
display: flex;
width: 100%;
justify-content: space-between;
}
.carbonCaptureDataContainer {
display: flex;
padding-left: 16px;
padding-top: 4px;
padding-right: 16px;
}
.beforeIntervationData {
color: $primaryColorNew;
font-size: $fontXXXSmallNew;
font-weight: 700;
}
.beforeIntervationLabel {
font-size: $fontXXXSmallNew;
font-weight: 400;
}
.beforeIntervationDate {
font-size: 6px;
color: $nonDonatableProjectBackgroundColor;
}
.byProjectData {
color: $primaryColor;
font-size: $fontXXXSmallNew;
font-weight: 700;
}
.byProjectLabel {
font-size: $fontXXXSmallNew;
font-weight: 400;
}
.byProjectDate {
font-size: 6px;
color: $nonDonatableProjectBackgroundColor;
}
.sitePotentialDataContainer {
display: flex;
align-items: flex-end;
flex-direction: column;
.sitePotentialData {
color: #333;
font-size: $fontXXXSmallNew;
font-weight: bold;
}
.sitePotentialLabel {
font-size: $fontXXXSmallNew;
font-weight: 400;
}
}

.carbonCaptureModal {
width: max-content;
border-radius: 16px;
overflow: hidden;
background-color: $light;
}

.infoIconContainer {
cursor: pointer;
}

.seeMoreButton {
background: linear-gradient(0deg, $primaryColorNew 0%, $primaryColorNew 100%),
$light;
width: 100%;
height: 27px;
margin-top: 24px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}

.seeMoreLabel {
font-size: $fontXXXSmallNew;
font-weight: 700;
color: $light;
}

.downArrow {
margin-left: 5px;
margin-bottom: 5px;
}

.horizontalLine {
position: relative;
top: -8px;
}
Loading