import React from 'react';
import throttle from 'lodash.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 { text };
}
if (type === 'content') {
return { text };
}
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,
};