analytics/assets/js/dashboard/stats/bar.js
Uku Taht 32937c53d1
Upgrade tailwind to 1.2.0 (#42)
* Upgrade config file

* Upgrade grey colour

* Update styles for dashboard

* Update styles for new site flow

* Update styles for user settings

* Update site setting styles

* Update other pages

* Adjust spacing

* Update last grey rules

* Purge css
2020-03-06 11:11:38 +02:00

21 lines
392 B
JavaScript

import React from 'react';
function barWidth(count, all) {
let maxVal = all[0].count;
for (const entry of all) {
if (entry.count > maxVal) maxVal = entry.count
}
return count / maxVal * 100
}
export default function Bar({count, all, bg}) {
const width = barWidth(count, all)
return (
<div className={bg} style={{width: width + '%', height: '30px'}}>
</div>
)
}