83 lines
No EOL
3.1 KiB
TypeScript
83 lines
No EOL
3.1 KiB
TypeScript
import React from 'react';
|
|
import FunnelStepText from './FunnelStepText';
|
|
import { Icon, Popup } from 'UI';
|
|
|
|
interface Props {
|
|
filter: any;
|
|
}
|
|
function FunnelBar(props: Props) {
|
|
const { filter } = props;
|
|
// const completedPercentage = calculatePercentage(filter.sessionsCount, filter.dropDueToIssues);
|
|
|
|
return (
|
|
<div className="w-full mb-4">
|
|
<FunnelStepText filter={filter} />
|
|
<div style={{
|
|
height: '25px',
|
|
// marginBottom: '10px',
|
|
width: '100%',
|
|
backgroundColor: '#f5f5f5',
|
|
position: 'relative',
|
|
borderRadius: '3px',
|
|
overflow: 'hidden',
|
|
}}>
|
|
<div className="flex items-center" style={{
|
|
width: `${filter.completedPercentage}%`,
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
bottom: 0,
|
|
// height: '10px',
|
|
backgroundColor: '#00b5ad',
|
|
}}>
|
|
<div className="color-white absolute right-0 flex items-center font-medium mr-2 leading-3">{filter.completedPercentage}%</div>
|
|
</div>
|
|
{filter.dropDueToIssues > 0 && (
|
|
<div className="flex items-center justify-end" style={{
|
|
width: `${filter.dropDueToIssuesPercentage}%`,
|
|
position: 'absolute',
|
|
top: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
left: `${filter.completedPercentage}%`,
|
|
// height: '10px',
|
|
backgroundColor: '#ff5a5f',
|
|
opacity: 0.5,
|
|
}}>
|
|
<Popup
|
|
content="Drop due to issues"
|
|
// offset={100}
|
|
sticky={true}
|
|
>
|
|
<div className="color-white w-full flex items-center font-medium mr-2 leading-3">{filter.dropDueToIssuesPercentage}%</div>
|
|
</Popup>
|
|
</div>
|
|
|
|
)}
|
|
</div>
|
|
<div className="flex justify-between py-2">
|
|
<div className="flex items-center">
|
|
<Icon name="arrow-right-short" size="20" color="green" />
|
|
<span className="mx-1 font-medium">{filter.sessionsCount}</span>
|
|
<span>Completed</span>
|
|
</div>
|
|
<div className="flex items-center">
|
|
<Icon name="caret-down-fill" color="red" size={16} />
|
|
<span className="font-medium mx-1 color-red">{filter.droppedCount}</span>
|
|
<span>Dropped</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default FunnelBar;
|
|
|
|
const calculatePercentage = (completed: number, dropped: number) => {
|
|
const total = completed + dropped;
|
|
if (dropped === 0) return 100;
|
|
if (total === 0) return 0;
|
|
|
|
return Math.round((completed / dropped) * 100);
|
|
|
|
} |