Skip to content
Snippets Groups Projects
Commit b7b1fb66 authored by Pedro Beschorner Marin's avatar Pedro Beschorner Marin Committed by prlanzarin
Browse files

Removed Chrome's extension code

Just a regular cleanup. We removed this legacy feature a while back
and this part went missing.
parent d3acfa4c
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,6 @@ import Auth from '/imports/ui/services/auth'; ...@@ -20,7 +20,6 @@ import Auth from '/imports/ui/services/auth';
import breakoutService from '/imports/ui/components/breakout-room/service'; import breakoutService from '/imports/ui/components/breakout-room/service';
const LAYOUT_CONFIG = Meteor.settings.public.layout; const LAYOUT_CONFIG = Meteor.settings.public.layout;
const KURENTO_CONFIG = Meteor.settings.public.kurento;
const propTypes = { const propTypes = {
isScreensharing: PropTypes.bool.isRequired, isScreensharing: PropTypes.bool.isRequired,
...@@ -40,19 +39,10 @@ const intlMessages = defineMessages({ ...@@ -40,19 +39,10 @@ const intlMessages = defineMessages({
id: 'app.media.screenshare.notSupported', id: 'app.media.screenshare.notSupported',
description: 'Error message for screenshare not supported', description: 'Error message for screenshare not supported',
}, },
chromeExtensionError: {
id: 'app.video.chromeExtensionError',
description: 'Error message for Chrome Extension not installed',
},
chromeExtensionErrorLink: {
id: 'app.video.chromeExtensionErrorLink',
description: 'Error message for Chrome Extension not installed',
},
}); });
class MediaContainer extends Component { class MediaContainer extends Component {
componentDidMount() { componentDidMount() {
document.addEventListener('installChromeExtension', this.installChromeExtension.bind(this));
document.addEventListener('screenshareNotSupported', this.screenshareNotSupported.bind(this)); document.addEventListener('screenshareNotSupported', this.screenshareNotSupported.bind(this));
} }
...@@ -75,29 +65,9 @@ class MediaContainer extends Component { ...@@ -75,29 +65,9 @@ class MediaContainer extends Component {
} }
componentWillUnmount() { componentWillUnmount() {
document.removeEventListener('installChromeExtension', this.installChromeExtension.bind(this));
document.removeEventListener('screenshareNotSupported', this.screenshareNotSupported.bind(this)); document.removeEventListener('screenshareNotSupported', this.screenshareNotSupported.bind(this));
} }
installChromeExtension() {
const { intl } = this.props;
const CHROME_DEFAULT_EXTENSION_LINK = KURENTO_CONFIG.chromeDefaultExtensionLink;
const CHROME_CUSTOM_EXTENSION_LINK = KURENTO_CONFIG.chromeExtensionLink;
const CHROME_EXTENSION_LINK = CHROME_CUSTOM_EXTENSION_LINK === 'LINK' ? CHROME_DEFAULT_EXTENSION_LINK : CHROME_CUSTOM_EXTENSION_LINK;
const chromeErrorElement = (
<div>
{intl.formatMessage(intlMessages.chromeExtensionError)}
{' '}
<a href={CHROME_EXTENSION_LINK} target="_blank" rel="noopener noreferrer">
{intl.formatMessage(intlMessages.chromeExtensionErrorLink)}
</a>
</div>
);
notify(chromeErrorElement, 'error', 'desktop');
}
screenshareNotSupported() { screenshareNotSupported() {
const { intl } = this.props; const { intl } = this.props;
notify(intl.formatMessage(intlMessages.screenshareNotSupported), 'error', 'desktop'); notify(intl.formatMessage(intlMessages.screenshareNotSupported), 'error', 'desktop');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment