2017-10-12 10:00:28 +08:00
|
|
|
import Breakouts from '/imports/api/breakouts';
|
2017-03-29 02:41:48 +08:00
|
|
|
import Settings from '/imports/ui/services/settings';
|
2017-08-12 01:14:50 +08:00
|
|
|
import Auth from '/imports/ui/services/auth/index';
|
2016-05-11 03:39:01 +08:00
|
|
|
|
2017-02-25 04:19:53 +08:00
|
|
|
const getCaptionsStatus = () => {
|
2017-04-06 19:46:15 +08:00
|
|
|
const ccSettings = Settings.cc;
|
|
|
|
return ccSettings ? ccSettings.enabled : false;
|
2016-12-23 08:44:31 +08:00
|
|
|
};
|
|
|
|
|
2017-02-25 04:19:53 +08:00
|
|
|
const getFontSize = () => {
|
2017-04-06 19:46:15 +08:00
|
|
|
const applicationSettings = Settings.application;
|
|
|
|
return applicationSettings ? applicationSettings.fontSize : '16px';
|
2016-12-23 08:44:31 +08:00
|
|
|
};
|
|
|
|
|
2017-03-17 22:23:00 +08:00
|
|
|
function meetingIsBreakout() {
|
|
|
|
const breakouts = Breakouts.find().fetch();
|
2017-08-12 04:17:35 +08:00
|
|
|
return (breakouts && breakouts.some(b => b.breakoutId === Auth.meetingID));
|
2017-03-17 22:23:00 +08:00
|
|
|
}
|
|
|
|
|
2016-05-13 03:50:02 +08:00
|
|
|
export {
|
2016-12-23 08:44:31 +08:00
|
|
|
getCaptionsStatus,
|
2017-02-25 04:19:53 +08:00
|
|
|
getFontSize,
|
2017-03-15 04:57:22 +08:00
|
|
|
meetingIsBreakout,
|
2016-05-12 23:41:51 +08:00
|
|
|
};
|