-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
83 lines (73 loc) · 2 KB
/
App.js
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
73
74
75
76
77
78
79
80
81
82
83
import React, { Component } from "react";
import "./css/App.css";
import "./components/SiteInput";
import SiteInput from "./components/SiteInput";
import Countdown from "react-countdown-now";
class App extends Component {
state = {
minutes: 5,
url: ""
};
setTime = time => {
this.setState({
minutes: time
});
};
startTimer = () => {
this.countdownRef.current.api.start();
this.countdownRef2.current.api.start();
};
customRenderer = ({ hours, minutes, seconds, completed }) => {
if (!completed) {
let minutesString = minutes;
let secondsString = seconds;
if(minutes<10){
minutesString = `0${minutes}`
}
if(seconds<10){
secondsString = `0${seconds}`
}
if(minutes === 0 && seconds <= 10 && (seconds%2 === 0)){
const audio = this.notificationAudio.current;
audio.currentTime = 0;
audio.play();
}
document.title = `${minutesString}:${secondsString}`;
}
return <span />;
};
countdownRef = React.createRef();
countdownRef2 = React.createRef();
notificationAudio = React.createRef();
render() {
return (
<div className="App">
<div className="title">
<span>Temp Tabs</span>
</div>
<div className="site-input">
<SiteInput
setTime={this.setTime}
minutes={this.state.minutes}
startTimer={this.startTimer}
/>
</div>
<div className="timer">
<Countdown
ref={this.countdownRef}
autoStart={false}
date={Date.now() + this.state.minutes * 60000}
/>
<Countdown
ref={this.countdownRef2}
autoStart={false}
date={Date.now() + this.state.minutes * 60000}
renderer={this.customRenderer}
/>
</div>
<audio ref={this.notificationAudio} src={window.location.origin + "/sound/notification.mp3"}></audio>
</div>
);
}
}
export default App;