blob: e095902b5576b5c16df12244c7921df35516cc55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
import React, { useState, useEffect } from 'react';
import styled from 'styled-components';
const Timer = () => {
const SPACE = 32
const [time, setTime] = useState("00:00:00")
const [stopwatchStarted, setStopwatchStarted] = useState(false);
const [timer, setTimer] = useState(0);
let startingTime;
const handleKeyPress = event => {
if (event.keyCode === SPACE){
if (!stopwatchStarted) {
startingTime = Date.now();
setStopwatchStarted(true);
setTimer(setInterval(() => setTime(() => {
const timeGap = Math.floor((Date.now() - startingTime) / 10);
let resultTime = "";
const minute = Math.floor(timeGap / 6000);
if (minute < 10) resultTime += '0';
resultTime += minute + ':';
let second = Math.floor(timeGap / 100);
if (second < 10) resultTime += '0';
if (second > 59) second %= 60
resultTime += second + ':';
const mill = timeGap % 100;
if (mill < 10) resultTime += '0';
resultTime += mill;
return resultTime;
}), 10))
} else {
clearInterval(timer)
setStopwatchStarted(false);
startingTime = 0;
return false;
}
}
}
useEffect(() => {
window.addEventListener("keypress", handleKeyPress);
return () => {
window.removeEventListener("keypress", handleKeyPress);
};
})
return (
<Root>
<span>{time}</ span>
</Root>
);
}
const Root = styled.div`
background-color: skyblue;
padding: 8px;
display: inline-block;
font-size: 32px;
color: pink;
`;
export default Timer;
|