bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/timer/indicator/container.jsx
Arthurk12 f5a5a960ba feat(timer): adds more songs
Adds 2 more songs to the timer, which can be switched using the radio
buttons inside timer panel.
Changed the music loop logic to make it gapless.
2023-05-18 15:29:35 -03:00

19 lines
629 B
JavaScript

import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import Indicator from './component';
import TimerService from '/imports/ui/components/timer/service';
const IndicatorContainer = (props) => {
return (<Indicator {...props} />);
};
export default withTracker(() => ({
timer: TimerService.getTimer(),
timeOffset: TimerService.getTimeOffset(),
isModerator: TimerService.isModerator(),
isTimerActive: TimerService.isActive(),
isMusicActive: TimerService.isMusicActive(),
currentTrack: TimerService.getCurrentTrack(),
hidden: Session.get('openPanel') !== '',
}))(IndicatorContainer);