cc2387a7dd
Stops music when timer indicator component is unmounted.
342 lines
7.9 KiB
JavaScript
342 lines
7.9 KiB
JavaScript
import React, { Component } from 'react';
|
|
import Icon from '/imports/ui/components/common/icon/component';
|
|
import TimerService from '/imports/ui/components/timer/service';
|
|
import Styled from './styles';
|
|
|
|
const CDN = Meteor.settings.public.app.cdn;
|
|
const BASENAME = Meteor.settings.public.app.basename;
|
|
const HOST = CDN + BASENAME;
|
|
const trackName = Meteor.settings.public.timer.music;
|
|
|
|
class Indicator extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.timeRef = React.createRef();
|
|
this.interval = null;
|
|
|
|
this.alarm = null;
|
|
this.music = null;
|
|
|
|
// We need to avoid trigger on mount
|
|
this.triggered = true;
|
|
|
|
this.alreadyNotified = false;
|
|
|
|
this.updateTime = this.updateTime.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { timer } = this.props;
|
|
const { running } = timer;
|
|
|
|
this.alarm = new Audio(`${HOST}/resources/sounds/alarm.mp3`);
|
|
this.setUpMusic();
|
|
|
|
this.triggered = this.initTriggered();
|
|
|
|
const { current } = this.timeRef;
|
|
if (current && running) {
|
|
this.interval = setInterval(this.updateTime, TimerService.getInterval());
|
|
}
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
const { timer } = this.props;
|
|
const { timer: prevTimer } = prevProps;
|
|
|
|
if (this.shouldPlayMusic()) {
|
|
this.playMusic();
|
|
}
|
|
|
|
this.updateInterval(prevTimer, timer);
|
|
this.updateAlarmTrigger(prevTimer, timer);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
clearInterval(this.interval);
|
|
this.stopMusic();
|
|
}
|
|
|
|
updateInterval(prevTimer, timer) {
|
|
const { running } = timer;
|
|
const { running: prevRunning } = prevTimer;
|
|
|
|
if (!prevRunning && running) {
|
|
this.interval = setInterval(this.updateTime, TimerService.getInterval());
|
|
}
|
|
|
|
if (prevRunning && !running) {
|
|
clearInterval(this.interval);
|
|
}
|
|
}
|
|
|
|
setUpMusic() {
|
|
const { currentTrack } = this.props;
|
|
|
|
if (trackName[currentTrack] !== undefined) {
|
|
this.music = new Audio(`${HOST}/resources/sounds/${trackName[currentTrack]}.mp3`);
|
|
this.music.track = currentTrack;
|
|
this.music.volume = TimerService.getMusicVolume();
|
|
this.music.addEventListener('timeupdate', () => {
|
|
const buffer = 0.19;
|
|
// Start playing the music before it ends to make the loop gapless
|
|
if (this.music.currentTime > this.music.duration - buffer) {
|
|
this.music.currentTime = 0;
|
|
this.music.play();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
updateAlarmTrigger(prevTimer, timer) {
|
|
const {
|
|
accumulated,
|
|
timestamp,
|
|
} = timer;
|
|
|
|
const { timestamp: prevTimestamp } = prevTimer;
|
|
|
|
const reseted = timestamp !== prevTimestamp && accumulated === 0;
|
|
|
|
if (reseted) {
|
|
this.triggered = false;
|
|
this.alreadyNotified = false;
|
|
}
|
|
}
|
|
|
|
initTriggered() {
|
|
const {
|
|
timer,
|
|
timeOffset,
|
|
} = this.props;
|
|
|
|
const {
|
|
stopwatch,
|
|
running,
|
|
} = timer;
|
|
|
|
if (stopwatch || !running) return false;
|
|
|
|
const {
|
|
time,
|
|
accumulated,
|
|
timestamp,
|
|
} = timer;
|
|
|
|
const elapsedTime = TimerService.getElapsedTime(running, timestamp, timeOffset, accumulated);
|
|
const updatedTime = Math.max(time - elapsedTime, 0);
|
|
|
|
if (updatedTime === 0) return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
play() {
|
|
if (this.alarm && !this.triggered) {
|
|
this.triggered = true;
|
|
this.alarm.play();
|
|
}
|
|
}
|
|
|
|
soundAlarm(time) {
|
|
const { timer } = this.props;
|
|
const {
|
|
running,
|
|
stopwatch,
|
|
} = timer;
|
|
|
|
const enabled = TimerService.isAlarmEnabled();
|
|
const zero = time === 0;
|
|
|
|
return enabled && running && zero && !stopwatch;
|
|
}
|
|
|
|
playMusic() {
|
|
const handleUserInteraction = () => {
|
|
this.music.play();
|
|
window.removeEventListener('click', handleUserInteraction);
|
|
window.removeEventListener('auxclick', handleUserInteraction);
|
|
window.removeEventListener('keydown', handleUserInteraction);
|
|
window.removeEventListener('touchstart', handleUserInteraction);
|
|
};
|
|
|
|
const playMusicAfterUserInteraction = () => {
|
|
window.addEventListener('click', handleUserInteraction);
|
|
window.addEventListener('auxclick', handleUserInteraction);
|
|
window.addEventListener('keydown', handleUserInteraction);
|
|
window.addEventListener('touchstart', handleUserInteraction);
|
|
};
|
|
|
|
this.handleUserInteraction = handleUserInteraction;
|
|
|
|
if (this.music !== null) {
|
|
this.music.play()
|
|
.catch((error) => {
|
|
if (error.name === 'NotAllowedError') {
|
|
playMusicAfterUserInteraction();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
stopMusic() {
|
|
if (this.music !== null) {
|
|
this.music.pause();
|
|
this.music.currentTime = 0;
|
|
window.removeEventListener('click', this.handleUserInteraction);
|
|
window.removeEventListener('auxclick', this.handleUserInteraction);
|
|
window.removeEventListener('keydown', this.handleUserInteraction);
|
|
window.removeEventListener('touchstart', this.handleUserInteraction);
|
|
}
|
|
}
|
|
|
|
shouldPlayMusic() {
|
|
const {
|
|
timer,
|
|
isMusicActive,
|
|
} = this.props;
|
|
|
|
const {
|
|
running,
|
|
stopwatch,
|
|
} = timer;
|
|
|
|
return isMusicActive && running && !stopwatch;
|
|
}
|
|
|
|
shouldStopMusic(time) {
|
|
const {
|
|
timer,
|
|
isMusicActive,
|
|
} = this.props;
|
|
|
|
const {
|
|
running,
|
|
stopwatch,
|
|
} = timer;
|
|
|
|
const zero = time === 0;
|
|
const validMusic = this.music != null;
|
|
|
|
const reachedZeroOrStopped = (running && zero) || (!running);
|
|
|
|
return !isMusicActive || !validMusic || stopwatch || reachedZeroOrStopped;
|
|
}
|
|
|
|
shoulNotifyTimerEnded(time) {
|
|
const { timer } = this.props;
|
|
const {
|
|
running,
|
|
stopwatch,
|
|
} = timer;
|
|
|
|
if (stopwatch || !running) return false;
|
|
|
|
const reachedZero = time === 0;
|
|
|
|
if (reachedZero && !this.alreadyNotified) {
|
|
this.alreadyNotified = true;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
getTime() {
|
|
const {
|
|
timer,
|
|
timeOffset,
|
|
} = this.props;
|
|
|
|
const {
|
|
stopwatch,
|
|
running,
|
|
time,
|
|
accumulated,
|
|
timestamp,
|
|
} = timer;
|
|
|
|
const elapsedTime = TimerService.getElapsedTime(running, timestamp, timeOffset, accumulated);
|
|
|
|
let updatedTime;
|
|
if (stopwatch) {
|
|
updatedTime = elapsedTime;
|
|
} else {
|
|
updatedTime = Math.max(time - elapsedTime, 0);
|
|
}
|
|
|
|
if (this.shoulNotifyTimerEnded(updatedTime)) {
|
|
TimerService.timerEnded();
|
|
}
|
|
|
|
if (this.shouldStopMusic(updatedTime)) {
|
|
this.stopMusic();
|
|
}
|
|
|
|
if (this.soundAlarm(updatedTime)) {
|
|
this.play();
|
|
}
|
|
|
|
return TimerService.getTimeAsString(updatedTime, stopwatch);
|
|
}
|
|
|
|
updateTime() {
|
|
const { current } = this.timeRef;
|
|
if (current) {
|
|
current.textContent = this.getTime();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { isTimerActive, currentTrack } = this.props;
|
|
if (!isTimerActive) {
|
|
this.stopMusic();
|
|
return null;
|
|
}
|
|
|
|
if (this.music?.track !== currentTrack) {
|
|
this.stopMusic();
|
|
this.setUpMusic();
|
|
}
|
|
|
|
const {
|
|
isModerator,
|
|
timer,
|
|
sidebarNavigationIsOpen,
|
|
sidebarContentIsOpen,
|
|
} = this.props;
|
|
const { running } = timer;
|
|
|
|
const onClick = running ? TimerService.stopTimer : TimerService.startTimer;
|
|
|
|
return (
|
|
<Styled.TimerWrapper>
|
|
<Styled.Timer>
|
|
<Styled.TimerIndicator
|
|
role="button"
|
|
tabIndex={0}
|
|
running={running}
|
|
disabled={!isModerator}
|
|
hide={sidebarNavigationIsOpen && sidebarContentIsOpen}
|
|
onClick={isModerator ? onClick : null}
|
|
>
|
|
<Styled.TimerContent>
|
|
<Styled.TimerIcon>
|
|
<Icon iconName="time" />
|
|
</Styled.TimerIcon>
|
|
<Styled.TimerTime
|
|
aria-hidden
|
|
ref={this.timeRef}
|
|
>
|
|
{this.getTime()}
|
|
</Styled.TimerTime>
|
|
</Styled.TimerContent>
|
|
</Styled.TimerIndicator>
|
|
</Styled.Timer>
|
|
</Styled.TimerWrapper>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Indicator;
|