bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/waiting-users/alert/service.js
2023-03-02 10:25:08 -03:00

59 lines
1.4 KiB
JavaScript

import React from 'react';
import { throttle } from '/imports/utils/throttle';
import { notify } from '/imports/ui/services/notification';
import Settings from '/imports/ui/services/settings';
import Styled from './styles';
const CDN = Meteor.settings.public.app.cdn;
const BASENAME = Meteor.settings.public.app.basename;
const HOST = CDN + BASENAME;
const GUEST_WAITING_BELL_THROTTLE_TIME = 10000;
function ringGuestWaitingBell() {
if (Settings.application.guestWaitingAudioAlerts) {
const audio = new Audio(`${HOST}/resources/sounds/doorbell.mp3`);
audio.play();
}
}
const ringGuestWaitingBellThrottled = throttle(
ringGuestWaitingBell,
GUEST_WAITING_BELL_THROTTLE_TIME,
{ leading: true, trailing: false },
);
function messageElement(text, type) {
if (type === 'title') {
return <Styled.TitleMessage>{ text }</Styled.TitleMessage>;
}
if (type === 'content') {
return <Styled.ContentMessage>{ text }</Styled.ContentMessage>;
}
return false;
}
function alert(obj, intl) {
if (Settings.application.guestWaitingPushAlerts) {
notify(
messageElement(obj.messageValues[0], 'title'),
obj.notificationType,
obj.icon,
null,
messageElement(
intl.formatMessage({
id: obj.messageId,
description: obj.messageDescription,
}),
'content',
),
true,
);
}
ringGuestWaitingBellThrottled();
}
export default {
alert,
};