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

34 lines
859 B

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