|
|
@@ -15,6 +15,7 @@ import {
|
|
15
|
15
|
showParticipantJoinedNotification
|
|
16
|
16
|
} from './actions';
|
|
17
|
17
|
import { NOTIFICATION_TIMEOUT } from './constants';
|
|
|
18
|
+import { joinLeaveNotificationsDisabled } from './functions';
|
|
18
|
19
|
|
|
19
|
20
|
declare var interfaceConfig: Object;
|
|
20
|
21
|
|
|
|
@@ -31,7 +32,7 @@ MiddlewareRegistry.register(store => next => action => {
|
|
31
|
32
|
|
|
32
|
33
|
const { participant: p } = action;
|
|
33
|
34
|
|
|
34
|
|
- if (!p.local) {
|
|
|
35
|
+ if (!p.local && !joinLeaveNotificationsDisabled()) {
|
|
35
|
36
|
store.dispatch(showParticipantJoinedNotification(
|
|
36
|
37
|
getParticipantDisplayName(store.getState, p.id)
|
|
37
|
38
|
));
|
|
|
@@ -40,20 +41,21 @@ MiddlewareRegistry.register(store => next => action => {
|
|
40
|
41
|
return result;
|
|
41
|
42
|
}
|
|
42
|
43
|
case PARTICIPANT_LEFT: {
|
|
43
|
|
- const participant = getParticipantById(
|
|
44
|
|
- store.getState(),
|
|
45
|
|
- action.participant.id
|
|
46
|
|
- );
|
|
|
44
|
+ if (!joinLeaveNotificationsDisabled()) {
|
|
|
45
|
+ const participant = getParticipantById(
|
|
|
46
|
+ store.getState(),
|
|
|
47
|
+ action.participant.id
|
|
|
48
|
+ );
|
|
47
|
49
|
|
|
48
|
|
- if (typeof interfaceConfig === 'object'
|
|
49
|
|
- && participant
|
|
50
|
|
- && !participant.local) {
|
|
51
|
|
- store.dispatch(showNotification({
|
|
52
|
|
- descriptionKey: 'notify.disconnected',
|
|
53
|
|
- titleKey: 'notify.somebody',
|
|
54
|
|
- title: participant.name
|
|
55
|
|
- },
|
|
56
|
|
- NOTIFICATION_TIMEOUT));
|
|
|
50
|
+ if (typeof interfaceConfig === 'object'
|
|
|
51
|
+ && participant
|
|
|
52
|
+ && !participant.local) {
|
|
|
53
|
+ store.dispatch(showNotification({
|
|
|
54
|
+ descriptionKey: 'notify.disconnected',
|
|
|
55
|
+ titleKey: 'notify.somebody',
|
|
|
56
|
+ title: participant.name
|
|
|
57
|
+ }, NOTIFICATION_TIMEOUT));
|
|
|
58
|
+ }
|
|
57
|
59
|
}
|
|
58
|
60
|
|
|
59
|
61
|
return next(action);
|