jiti-meet/react/features/large-video/subscriber.web.js

15 lines
399 B
JavaScript
Raw Normal View History

// @flow
import VideoLayout from '../../../modules/UI/videolayout/VideoLayout';
2020-05-20 10:57:03 +00:00
import { StateListenerRegistry } from '../base/redux';
/**
* Updates the on stage participant video.
*/
StateListenerRegistry.register(
/* selector */ state => state['features/large-video'].participantId,
/* listener */ participantId => {
VideoLayout.updateLargeVideo(participantId, true);
}
);