bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/notifications-bar/container.jsx

174 lines
4.7 KiB
React
Raw Normal View History

import { Meteor } from 'meteor/meteor';
import { withTracker } from 'meteor/react-meteor-data';
2017-08-12 04:17:35 +08:00
import React from 'react';
import { defineMessages, injectIntl } from 'react-intl';
2017-03-10 03:50:21 +08:00
import _ from 'lodash';
2016-11-14 19:57:10 +08:00
import Auth from '/imports/ui/services/auth';
2017-10-24 00:26:56 +08:00
import humanizeSeconds from '/imports/utils/humanizeSeconds';
2017-08-12 04:17:35 +08:00
import NavBarService from '../nav-bar/service';
import NotificationsBar from './component';
// 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',
2017-05-17 22:32:35 +08:00
description: 'Notification for connecting to server problems',
},
connectingMessage: {
id: 'app.connectingMessage',
2017-05-17 22:32:35 +08:00
description: 'Notification message for when client is connecting to server',
},
waitingMessage: {
id: 'app.waitingMessage',
2017-05-17 22:32:35 +08:00
description: 'Notification message for disconnection with reconnection counter',
},
2016-11-15 00:12:54 +08:00
breakoutTimeRemaining: {
id: 'app.breakoutTimeRemainingMessage',
description: 'Message that tells how much time is remaining for the breakout room',
},
breakoutWillClose: {
id: 'app.breakoutWillCloseMessage',
description: 'Message that tells time has ended and breakout will close',
},
calculatingBreakoutTimeRemaining: {
id: 'app.calculatingBreakoutTimeRemaining',
description: 'Message that tells that the remaining time is being calculated',
},
});
2017-08-12 04:17:35 +08:00
const NotificationsBarContainer = (props) => {
if (_.isEmpty(props.message)) {
return null;
}
2017-08-12 04:17:35 +08:00
const { message, color } = props;
2017-08-12 04:17:35 +08:00
return (
<NotificationsBar color={color}>
{message}
</NotificationsBar>
);
};
let retrySeconds = 0;
let timeRemaining = 0;
2017-06-03 03:25:02 +08:00
const retrySecondsDep = new Tracker.Dependency();
const timeRemainingDep = new Tracker.Dependency();
let retryInterval = null;
let timeRemainingInterval = null;
const getRetrySeconds = () => {
retrySecondsDep.depend();
return retrySeconds;
};
const getTimeRemaining = () => {
timeRemainingDep.depend();
return timeRemaining;
};
const setRetrySeconds = (sec = 0) => {
if (sec !== retrySeconds) {
retrySeconds = sec;
retrySecondsDep.changed();
}
};
2016-11-14 19:57:10 +08:00
const setTimeRemaining = (sec = 0) => {
if (sec !== timeRemaining) {
timeRemaining = sec;
timeRemainingDep.changed();
}
};
2016-11-22 23:46:08 +08:00
const startCounter = (sec, set, get, interval) => {
clearInterval(interval);
set(sec);
return setInterval(() => {
set(get() - 1);
}, 1000);
};
2016-11-22 23:46:08 +08:00
export default injectIntl(withTracker(({ intl }) => {
2017-08-12 04:17:35 +08:00
const { status, connected, retryTime } = Meteor.status();
2017-06-03 03:25:02 +08:00
const data = {};
if (!connected) {
data.color = 'primary';
switch (status) {
2017-08-12 04:17:35 +08:00
case STATUS_FAILED: {
data.color = 'danger';
data.message = intl.formatMessage(intlMessages.failedMessage);
break;
2017-08-12 04:17:35 +08:00
}
case STATUS_CONNECTING: {
data.message = intl.formatMessage(intlMessages.connectingMessage);
break;
2017-08-12 04:17:35 +08:00
}
case STATUS_WAITING: {
2016-11-15 00:12:54 +08:00
const sec = Math.round((retryTime - (new Date()).getTime()) / 1000);
retryInterval = startCounter(sec, setRetrySeconds, getRetrySeconds, retryInterval);
data.message = intl.formatMessage(
intlMessages.waitingMessage,
2017-06-03 03:25:02 +08:00
{ 0: getRetrySeconds() },
);
break;
2017-08-12 04:17:35 +08:00
}
default:
break;
}
return data;
}
2016-11-14 19:57:10 +08:00
const meetingId = Auth.meetingID;
const breakouts = NavBarService.getBreakouts();
2016-11-15 00:12:54 +08:00
2017-08-12 04:17:35 +08:00
if (breakouts.length > 0) {
const currentBreakout = breakouts.find(b => b.breakoutId === meetingId);
2016-11-14 19:57:10 +08:00
if (currentBreakout) {
2017-08-12 04:17:35 +08:00
const roomRemainingTime = currentBreakout.timeRemaining;
2016-11-14 19:57:10 +08:00
if (!timeRemainingInterval && roomRemainingTime) {
timeRemainingInterval = startCounter(
roomRemainingTime,
setTimeRemaining,
getTimeRemaining,
timeRemainingInterval,
);
2016-11-14 19:57:10 +08:00
}
2016-11-22 23:46:08 +08:00
} else if (timeRemainingInterval) {
clearInterval(timeRemainingInterval);
2016-11-14 19:57:10 +08:00
}
2017-08-12 04:17:35 +08:00
timeRemaining = getTimeRemaining();
if (timeRemaining) {
if (timeRemaining > 0) {
2016-11-29 03:48:02 +08:00
data.message = intl.formatMessage(
intlMessages.breakoutTimeRemaining,
2017-08-12 04:17:35 +08:00
{ 0: humanizeSeconds(timeRemaining) },
2016-11-29 03:48:02 +08:00
);
} else {
clearInterval(timeRemainingInterval);
data.message = intl.formatMessage(intlMessages.breakoutWillClose);
}
} else if (currentBreakout) {
2016-11-29 03:48:02 +08:00
data.message = intl.formatMessage(intlMessages.calculatingBreakoutTimeRemaining);
2016-11-15 00:12:54 +08:00
}
2016-11-14 19:57:10 +08:00
}
2016-11-15 00:12:54 +08:00
data.color = 'primary';
return data;
})(NotificationsBarContainer));