bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/notifications-bar/container.jsx
João Victor Nunes 33ebbde924
refactor: remove Meteor trackers (#20351)
* Replace Auth tracker with makeVar

* Replace connection status tracker with makeVar

* Replace notification bar tracker with makeVar
2024-06-04 14:09:48 -03:00

170 lines
4.6 KiB
JavaScript

import { Meteor } from 'meteor/meteor';
import { withTracker } from 'meteor/react-meteor-data';
import React, { useEffect } from 'react';
import { defineMessages, useIntl } from 'react-intl';
import { makeVar, useReactiveVar } from '@apollo/client';
import { isEmpty } from 'radash';
import MeetingRemainingTime from '/imports/ui/components/common/remaining-time/meeting-duration/component';
import Styled from './styles';
import { layoutSelectInput, layoutDispatch } from '../layout/context';
import { ACTIONS } from '../layout/enums';
import NotificationsBar from './component';
import useMeeting from '../../core/hooks/useMeeting';
// disconnected and trying to open a new connection
const STATUS_CONNECTING = 'connecting';
// permanently failed to connect; e.g., the client and server support different versions of DDP
const STATUS_FAILED = 'failed';
// failed to connect and waiting to try to reconnect
const STATUS_WAITING = 'waiting';
const intlMessages = defineMessages({
failedMessage: {
id: 'app.failedMessage',
description: 'Notification for connecting to server problems',
},
connectingMessage: {
id: 'app.connectingMessage',
description: 'Notification message for when client is connecting to server',
},
waitingMessage: {
id: 'app.waitingMessage',
description: 'Notification message for disconnection with reconnection counter',
},
retryNow: {
id: 'app.retryNow',
description: 'Retry now text for reconnection counter',
},
calculatingBreakoutTimeRemaining: {
id: 'app.calculatingBreakoutTimeRemaining',
description: 'Message that tells that the remaining time is being calculated',
},
alertMeetingEndsUnderMinutes: {
id: 'app.meeting.alertMeetingEndsUnderMinutes',
description: 'Alert that tells that the meeting ends under x minutes',
},
alertBreakoutEndsUnderMinutes: {
id: 'app.meeting.alertBreakoutEndsUnderMinutes',
description: 'Alert that tells that the breakout ends under x minutes',
},
});
const retrySecondsVar = makeVar(0);
let retryInterval = null;
const getRetrySeconds = () => retrySecondsVar();
const setRetrySeconds = (sec = 0) => {
if (sec !== retrySecondsVar()) {
retrySecondsVar(sec);
}
};
const startCounter = (sec, set, get, interval) => {
clearInterval(interval);
set(sec);
return setInterval(() => {
set(get() - 1);
}, 1000);
};
const reconnect = () => {
Meteor.reconnect();
};
const NotificationsBarContainer = (props) => {
const {
connected,
status,
retryTime,
} = props;
let message;
let color;
useReactiveVar(retrySecondsVar);
const intl = useIntl();
const { data: meeting } = useMeeting((m) => ({
isBreakout: m.isBreakout,
componentsFlags: m.componentsFlags,
}));
if (!connected) {
switch (status) {
case STATUS_FAILED: {
color = 'danger';
message = intl.formatMessage(intlMessages.failedMessage);
break;
}
case STATUS_CONNECTING: {
message = intl.formatMessage(intlMessages.connectingMessage);
break;
}
case STATUS_WAITING: {
const sec = Math.round((retryTime - (new Date()).getTime()) / 1000);
retryInterval = startCounter(sec, setRetrySeconds, getRetrySeconds, retryInterval);
message = (
<>
{intl.formatMessage(intlMessages.waitingMessage, { 0: getRetrySeconds() })}
<Styled.RetryButton type="button" onClick={reconnect}>
{intl.formatMessage(intlMessages.retryNow)}
</Styled.RetryButton>
</>
);
break;
}
default:
color = 'primary';
break;
}
} else {
color = 'primary';
if (meeting?.isBreakout) {
message = (
<MeetingRemainingTime />
);
}
if (meeting) {
const { isBreakout, componentsFlags } = meeting;
if (componentsFlags?.showRemainingTime && !isBreakout) {
message = (
<MeetingRemainingTime />
);
}
}
}
const notificationsBar = layoutSelectInput((i) => i.notificationsBar);
const layoutContextDispatch = layoutDispatch();
const { hasNotification } = notificationsBar;
useEffect(() => {
const localHasNotification = !!message;
if (localHasNotification !== hasNotification) {
layoutContextDispatch({
type: ACTIONS.SET_HAS_NOTIFICATIONS_BAR,
value: localHasNotification,
});
}
}, [message, hasNotification]);
if (isEmpty(message)) {
return null;
}
return (
<NotificationsBar color={color}>
{message}
</NotificationsBar>
);
};
export default withTracker(() => Meteor.status())(NotificationsBarContainer);