2018-03-07 00:28:19 +00:00
|
|
|
/* global $, APP, interfaceConfig */
|
|
|
|
|
|
|
|
import { setDocumentEditingState } from '../../../react/features/etherpad';
|
|
|
|
import { getToolboxHeight } from '../../../react/features/toolbox';
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
import VideoLayout from '../videolayout/VideoLayout';
|
2015-12-25 16:55:45 +00:00
|
|
|
import LargeContainer from '../videolayout/LargeContainer';
|
2017-04-10 17:59:44 +00:00
|
|
|
import Filmstrip from '../videolayout/Filmstrip';
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Etherpad options.
|
|
|
|
*/
|
2015-12-25 16:55:45 +00:00
|
|
|
const options = $.param({
|
2018-11-29 18:25:42 +00:00
|
|
|
showControls: true,
|
2015-12-25 16:55:45 +00:00
|
|
|
showChat: false,
|
|
|
|
showLineNumbers: true,
|
|
|
|
useMonospaceFont: false
|
|
|
|
});
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function bubbleIframeMouseMove(iframe) {
|
|
|
|
const existingOnMouseMove = iframe.contentWindow.onmousemove;
|
|
|
|
|
|
|
|
iframe.contentWindow.onmousemove = function(e) {
|
|
|
|
if (existingOnMouseMove) {
|
|
|
|
existingOnMouseMove(e);
|
|
|
|
}
|
|
|
|
const evt = document.createEvent('MouseEvents');
|
|
|
|
const boundingClientRect = iframe.getBoundingClientRect();
|
|
|
|
|
2015-01-07 14:54:03 +00:00
|
|
|
evt.initMouseEvent(
|
2017-10-12 23:02:29 +00:00
|
|
|
'mousemove',
|
2015-01-07 14:54:03 +00:00
|
|
|
true, // bubbles
|
|
|
|
false, // not cancelable
|
|
|
|
window,
|
|
|
|
e.detail,
|
|
|
|
e.screenX,
|
|
|
|
e.screenY,
|
2015-12-25 16:55:45 +00:00
|
|
|
e.clientX + boundingClientRect.left,
|
|
|
|
e.clientY + boundingClientRect.top,
|
2015-01-07 14:54:03 +00:00
|
|
|
e.ctrlKey,
|
|
|
|
e.altKey,
|
|
|
|
e.shiftKey,
|
|
|
|
e.metaKey,
|
|
|
|
e.button,
|
|
|
|
null // no related element
|
|
|
|
);
|
|
|
|
iframe.dispatchEvent(evt);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Default Etherpad frame width.
|
|
|
|
*/
|
2015-12-25 16:55:45 +00:00
|
|
|
const DEFAULT_WIDTH = 640;
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Default Etherpad frame height.
|
|
|
|
*/
|
2015-12-25 16:55:45 +00:00
|
|
|
const DEFAULT_HEIGHT = 480;
|
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
const ETHERPAD_CONTAINER_TYPE = 'etherpad';
|
2015-12-25 16:55:45 +00:00
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Container for Etherpad iframe.
|
|
|
|
*/
|
2015-12-25 16:55:45 +00:00
|
|
|
class Etherpad extends LargeContainer {
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
* Creates new Etherpad object
|
|
|
|
*/
|
|
|
|
constructor(domain, name) {
|
2015-12-25 16:55:45 +00:00
|
|
|
super();
|
|
|
|
|
|
|
|
const iframe = document.createElement('iframe');
|
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
iframe.id = 'etherpadIFrame';
|
|
|
|
iframe.src = `${domain + name}?${options}`;
|
2015-12-25 16:55:45 +00:00
|
|
|
iframe.frameBorder = 0;
|
2017-10-12 23:02:29 +00:00
|
|
|
iframe.scrolling = 'no';
|
2015-12-25 16:55:45 +00:00
|
|
|
iframe.width = DEFAULT_WIDTH;
|
|
|
|
iframe.height = DEFAULT_HEIGHT;
|
|
|
|
iframe.setAttribute('style', 'visibility: hidden;');
|
|
|
|
|
|
|
|
this.container.appendChild(iframe);
|
|
|
|
|
|
|
|
iframe.onload = function() {
|
2018-10-02 13:03:23 +00:00
|
|
|
// eslint-disable-next-line no-self-assign
|
2015-12-25 16:55:45 +00:00
|
|
|
document.domain = document.domain;
|
|
|
|
bubbleIframeMouseMove(iframe);
|
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
setTimeout(() => {
|
2015-12-25 16:55:45 +00:00
|
|
|
const doc = iframe.contentDocument;
|
|
|
|
|
|
|
|
// the iframes inside of the etherpad are
|
|
|
|
// not yet loaded when the etherpad iframe is loaded
|
2017-10-12 23:02:29 +00:00
|
|
|
const outer = doc.getElementsByName('ace_outer')[0];
|
|
|
|
|
2015-12-25 16:55:45 +00:00
|
|
|
bubbleIframeMouseMove(outer);
|
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
const inner = doc.getElementsByName('ace_inner')[0];
|
|
|
|
|
2015-12-25 16:55:45 +00:00
|
|
|
bubbleIframeMouseMove(inner);
|
|
|
|
}, 2000);
|
|
|
|
};
|
|
|
|
|
|
|
|
this.iframe = iframe;
|
|
|
|
}
|
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
get isOpen() {
|
|
|
|
return Boolean(this.iframe);
|
2015-12-25 16:55:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
get container() {
|
2015-12-25 16:55:45 +00:00
|
|
|
return document.getElementById('etherpad');
|
|
|
|
}
|
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
resize(containerWidth, containerHeight) {
|
2017-06-14 23:52:59 +00:00
|
|
|
let height, width;
|
|
|
|
|
|
|
|
if (interfaceConfig.VERTICAL_FILMSTRIP) {
|
2018-04-09 05:03:26 +00:00
|
|
|
height = containerHeight - getToolboxHeight();
|
2017-06-14 23:52:59 +00:00
|
|
|
width = containerWidth - Filmstrip.getFilmstripWidth();
|
|
|
|
} else {
|
|
|
|
height = containerHeight - Filmstrip.getFilmstripHeight();
|
|
|
|
width = containerWidth;
|
|
|
|
}
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
$(this.iframe)
|
|
|
|
.width(width)
|
|
|
|
.height(height);
|
2015-12-25 16:55:45 +00:00
|
|
|
}
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
show() {
|
2015-12-25 16:55:45 +00:00
|
|
|
const $iframe = $(this.iframe);
|
|
|
|
const $container = $(this.container);
|
2017-10-12 23:02:29 +00:00
|
|
|
const self = this;
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2015-12-25 16:55:45 +00:00
|
|
|
return new Promise(resolve => {
|
2017-10-12 23:02:29 +00:00
|
|
|
$iframe.fadeIn(300, () => {
|
2016-03-18 20:00:55 +00:00
|
|
|
self.bodyBackground = document.body.style.background;
|
2015-12-25 16:55:45 +00:00
|
|
|
document.body.style.background = '#eeeeee';
|
2017-10-12 23:02:29 +00:00
|
|
|
$iframe.css({ visibility: 'visible' });
|
|
|
|
$container.css({ zIndex: 2 });
|
2018-04-09 18:02:21 +00:00
|
|
|
|
|
|
|
APP.store.dispatch(setDocumentEditingState(true));
|
|
|
|
|
2015-12-25 16:55:45 +00:00
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
hide() {
|
2015-12-25 16:55:45 +00:00
|
|
|
const $iframe = $(this.iframe);
|
|
|
|
const $container = $(this.container);
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2016-03-18 20:00:55 +00:00
|
|
|
document.body.style.background = this.bodyBackground;
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2015-12-25 16:55:45 +00:00
|
|
|
return new Promise(resolve => {
|
2017-10-12 23:02:29 +00:00
|
|
|
$iframe.fadeOut(300, () => {
|
|
|
|
$iframe.css({ visibility: 'hidden' });
|
|
|
|
$container.css({ zIndex: 0 });
|
2018-04-09 18:02:21 +00:00
|
|
|
|
|
|
|
APP.store.dispatch(setDocumentEditingState(false));
|
|
|
|
|
2015-12-25 16:55:45 +00:00
|
|
|
resolve();
|
2015-01-07 14:54:03 +00:00
|
|
|
});
|
2015-12-25 16:55:45 +00:00
|
|
|
});
|
|
|
|
}
|
2016-03-18 03:19:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {boolean} do not switch on dominant speaker event if on stage.
|
|
|
|
*/
|
2017-10-12 23:02:29 +00:00
|
|
|
stayOnStage() {
|
2016-03-18 03:19:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-12-25 16:55:45 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Manager of the Etherpad frame.
|
|
|
|
*/
|
2015-12-25 16:55:45 +00:00
|
|
|
export default class EtherpadManager {
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
constructor(domain, name, eventEmitter) {
|
2015-12-25 16:55:45 +00:00
|
|
|
if (!domain || !name) {
|
2017-10-12 23:02:29 +00:00
|
|
|
throw new Error('missing domain or name');
|
2015-01-07 14:54:03 +00:00
|
|
|
}
|
|
|
|
|
2015-12-25 16:55:45 +00:00
|
|
|
this.domain = domain;
|
|
|
|
this.name = name;
|
2016-03-24 01:43:29 +00:00
|
|
|
this.eventEmitter = eventEmitter;
|
2015-12-25 16:55:45 +00:00
|
|
|
this.etherpad = null;
|
|
|
|
}
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
get isOpen() {
|
|
|
|
return Boolean(this.etherpad);
|
2015-12-25 16:55:45 +00:00
|
|
|
}
|
2015-01-07 14:54:03 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
2017-11-16 18:26:14 +00:00
|
|
|
*
|
2017-10-12 23:02:29 +00:00
|
|
|
*/
|
2016-03-24 01:43:29 +00:00
|
|
|
isVisible() {
|
|
|
|
return VideoLayout.isLargeContainerTypeVisible(ETHERPAD_CONTAINER_TYPE);
|
|
|
|
}
|
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Create new Etherpad frame.
|
|
|
|
*/
|
2017-10-12 23:02:29 +00:00
|
|
|
openEtherpad() {
|
2015-12-25 16:55:45 +00:00
|
|
|
this.etherpad = new Etherpad(this.domain, this.name);
|
|
|
|
VideoLayout.addLargeVideoContainer(
|
2016-03-18 02:58:40 +00:00
|
|
|
ETHERPAD_CONTAINER_TYPE,
|
2015-12-25 16:55:45 +00:00
|
|
|
this.etherpad
|
|
|
|
);
|
2015-01-07 14:54:03 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Toggle Etherpad frame visibility.
|
|
|
|
* Open new Etherpad frame if there is no Etherpad frame yet.
|
|
|
|
*/
|
2017-10-12 23:02:29 +00:00
|
|
|
toggleEtherpad() {
|
2015-12-25 16:55:45 +00:00
|
|
|
if (!this.isOpen) {
|
|
|
|
this.openEtherpad();
|
|
|
|
}
|
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
const isVisible = this.isVisible();
|
2015-12-25 16:55:45 +00:00
|
|
|
|
2016-03-18 02:58:40 +00:00
|
|
|
VideoLayout.showLargeVideoContainer(
|
|
|
|
ETHERPAD_CONTAINER_TYPE, !isVisible);
|
2016-03-24 01:43:29 +00:00
|
|
|
|
2018-03-07 00:28:19 +00:00
|
|
|
APP.store.dispatch(setDocumentEditingState(!isVisible));
|
2015-12-25 16:55:45 +00:00
|
|
|
}
|
|
|
|
}
|