1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/BoxVisualizationChart.js

60 lines
1.7 KiB
JavaScript
Raw Normal View History

import React, { useContext, useMemo } from "react"
2021-05-20 11:36:07 +00:00
import BoxFull from "../base/BoxFull"
import BoxChart from "../base/BoxChart"
2021-05-20 13:34:05 +00:00
import Empty from "./Empty"
2021-05-21 14:37:30 +00:00
import ContextRepositoryViewer from "../../contexts/ContextRepositoryViewer"
import useStrings from "../../hooks/useStrings"
2021-05-20 11:36:07 +00:00
2021-05-21 14:37:30 +00:00
export default function BoxVisualizationChart({ ...props }) {
const strings = useStrings()
const { tweets } = useContext(ContextRepositoryViewer)
2021-05-20 13:34:05 +00:00
const chartProps = useMemo(
() => {
const hours = [...Array(24).keys()].map(hour => hour.toString())
const hourlyTweetCount = Array(24).fill(0)
for(const tweet of tweets) {
if(!tweet["post_time"]) {
console.debug("Tweet ", tweet, " has no post time, skipping...")
continue
}
const insertDate = new Date(tweet["post_time"])
const insertHour = insertDate.getHours()
hourlyTweetCount[insertHour] += 1
}
return {
type: "bar",
data: {
labels: hours.map(hour => hour.toString()),
datasets: [
{
label: "Tweets",
data: hourlyTweetCount,
},
],
2021-05-23 14:20:53 +00:00
},
}
},
2021-05-23 14:20:53 +00:00
[tweets],
)
2021-05-20 11:36:07 +00:00
2021-05-20 13:34:05 +00:00
if(tweets.length === 0) {
return (
<BoxFull header={"Hourly graph"} {...props}>
<Empty/>
</BoxFull>
)
}
2021-05-20 11:36:07 +00:00
return (
<BoxChart
2021-05-20 16:28:08 +00:00
header={strings.hourlyGraph}
chartProps={chartProps}
2021-05-20 11:36:07 +00:00
{...props}
/>
)
}