Kopie van https://gitlab.com/studieverenigingvia/ict/centurion met een paar aanpassingen
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
centurion/frontend/src/components/ShotsTaken.tsx

35 lines
859 B

import React from 'react';
4 years ago
import {Col, Progress} from "antd"
import {roomTime, useTimeline} from "../lib/Connection";
import {useUpdateAfterDelay} from "../util/hooks";
4 years ago
const ShotsTaken = () => {
let timeline = useTimeline();
useUpdateAfterDelay(1000);
4 years ago
let taken = 0;
4 years ago
if (timeline) {
let [current, _] = timeline.eventAtTime(roomTime(), 'shot');
if (current) {
taken = current.shotCount!!;
}
}
4 years ago
return (
4 years ago
<Col className="sider" span={24} md={4}>
4 years ago
<h1>Shots genomen:</h1>
<Progress type="circle"
percent={taken}
format={_ => taken + ' / 100'}
status="normal"
4 years ago
strokeColor={"#304ba3"}
strokeWidth={10}/>
</Col>
);
};
export default ShotsTaken;