2015-06-23 18:41:25 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-06-23 18:41:25 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2015-11-26 20:31:10 +03:00
|
|
|
var React = require("react");
|
2015-12-15 02:37:34 +03:00
|
|
|
|
2015-11-20 19:08:57 +03:00
|
|
|
var marked = require("marked");
|
|
|
|
marked.setOptions({
|
|
|
|
renderer: new marked.Renderer(),
|
|
|
|
gfm: true,
|
|
|
|
tables: true,
|
|
|
|
breaks: true,
|
|
|
|
pedantic: false,
|
|
|
|
sanitize: true,
|
|
|
|
smartLists: true,
|
|
|
|
smartypants: false
|
|
|
|
});
|
2015-12-15 02:37:34 +03:00
|
|
|
|
2015-11-26 20:31:10 +03:00
|
|
|
var MatrixClientPeg = require("../../../MatrixClientPeg");
|
|
|
|
var SlashCommands = require("../../../SlashCommands");
|
|
|
|
var Modal = require("../../../Modal");
|
2015-12-15 02:37:34 +03:00
|
|
|
var CallHandler = require('../../../CallHandler');
|
2015-12-22 13:00:30 +03:00
|
|
|
var MemberEntry = require("../../../TabCompleteEntries").MemberEntry;
|
2015-11-26 20:31:10 +03:00
|
|
|
var sdk = require('../../../index');
|
2015-06-15 20:35:28 +03:00
|
|
|
|
2015-11-26 20:31:10 +03:00
|
|
|
var dis = require("../../../dispatcher");
|
2015-09-18 12:44:57 +03:00
|
|
|
var KeyCode = {
|
|
|
|
ENTER: 13,
|
2015-11-15 06:36:59 +03:00
|
|
|
BACKSPACE: 8,
|
|
|
|
DELETE: 46,
|
2015-09-18 12:44:57 +03:00
|
|
|
TAB: 9,
|
|
|
|
SHIFT: 16,
|
|
|
|
UP: 38,
|
|
|
|
DOWN: 40
|
|
|
|
};
|
|
|
|
|
|
|
|
var TYPING_USER_TIMEOUT = 10000;
|
|
|
|
var TYPING_SERVER_TIMEOUT = 30000;
|
2015-11-20 19:08:57 +03:00
|
|
|
var MARKDOWN_ENABLED = true;
|
|
|
|
|
|
|
|
function mdownToHtml(mdown) {
|
|
|
|
var html = marked(mdown) || "";
|
|
|
|
html = html.trim();
|
|
|
|
// strip start and end <p> tags else you get 'orrible spacing
|
|
|
|
if (html.indexOf("<p>") === 0) {
|
|
|
|
html = html.substring("<p>".length);
|
|
|
|
}
|
|
|
|
if (html.lastIndexOf("</p>") === (html.length - "</p>".length)) {
|
|
|
|
html = html.substring(0, html.length - "</p>".length);
|
|
|
|
}
|
|
|
|
return html;
|
|
|
|
}
|
2015-06-15 20:35:28 +03:00
|
|
|
|
2015-11-26 20:31:10 +03:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MessageComposer',
|
2015-11-16 00:37:22 +03:00
|
|
|
|
2016-01-11 18:28:59 +03:00
|
|
|
statics: {
|
|
|
|
// the height we limit the composer to
|
|
|
|
MAX_HEIGHT: 100,
|
|
|
|
},
|
|
|
|
|
2015-12-21 13:59:10 +03:00
|
|
|
propTypes: {
|
2016-01-11 18:28:59 +03:00
|
|
|
tabComplete: React.PropTypes.any,
|
|
|
|
|
|
|
|
// a callback which is called when the height of the composer is
|
|
|
|
// changed due to a change in content.
|
2016-01-12 16:11:53 +03:00
|
|
|
onResize: React.PropTypes.func,
|
2015-12-21 13:59:10 +03:00
|
|
|
},
|
|
|
|
|
2015-09-18 12:44:57 +03:00
|
|
|
componentWillMount: function() {
|
2015-11-26 20:31:10 +03:00
|
|
|
this.oldScrollHeight = 0;
|
2015-11-20 19:08:57 +03:00
|
|
|
this.markdownEnabled = MARKDOWN_ENABLED;
|
2015-11-29 01:20:14 +03:00
|
|
|
var self = this;
|
2015-09-18 12:44:57 +03:00
|
|
|
this.sentHistory = {
|
|
|
|
// The list of typed messages. Index 0 is more recent
|
|
|
|
data: [],
|
|
|
|
// The position in data currently displayed
|
|
|
|
position: -1,
|
|
|
|
// The room the history is for.
|
|
|
|
roomId: null,
|
|
|
|
// The original text before they hit UP
|
|
|
|
originalText: null,
|
|
|
|
// The textarea element to set text to.
|
|
|
|
element: null,
|
|
|
|
|
|
|
|
init: function(element, roomId) {
|
|
|
|
this.roomId = roomId;
|
|
|
|
this.element = element;
|
|
|
|
this.position = -1;
|
|
|
|
var storedData = window.sessionStorage.getItem(
|
|
|
|
"history_" + roomId
|
|
|
|
);
|
|
|
|
if (storedData) {
|
|
|
|
this.data = JSON.parse(storedData);
|
|
|
|
}
|
|
|
|
if (this.roomId) {
|
|
|
|
this.setLastTextEntry();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
push: function(text) {
|
|
|
|
// store a message in the sent history
|
|
|
|
this.data.unshift(text);
|
|
|
|
window.sessionStorage.setItem(
|
|
|
|
"history_" + this.roomId,
|
|
|
|
JSON.stringify(this.data)
|
|
|
|
);
|
|
|
|
// reset history position
|
|
|
|
this.position = -1;
|
|
|
|
this.originalText = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
// move in the history. Returns true if we managed to move.
|
|
|
|
next: function(offset) {
|
|
|
|
if (this.position === -1) {
|
|
|
|
// user is going into the history, save the current line.
|
|
|
|
this.originalText = this.element.value;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// user may have modified this line in the history; remember it.
|
|
|
|
this.data[this.position] = this.element.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offset > 0 && this.position === (this.data.length - 1)) {
|
|
|
|
// we've run out of history
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// retrieve the next item (bounded).
|
|
|
|
var newPosition = this.position + offset;
|
|
|
|
newPosition = Math.max(-1, newPosition);
|
|
|
|
newPosition = Math.min(newPosition, this.data.length - 1);
|
|
|
|
this.position = newPosition;
|
|
|
|
|
|
|
|
if (this.position !== -1) {
|
|
|
|
// show the message
|
|
|
|
this.element.value = this.data[this.position];
|
|
|
|
}
|
|
|
|
else if (this.originalText !== undefined) {
|
|
|
|
// restore the original text the user was typing.
|
|
|
|
this.element.value = this.originalText;
|
|
|
|
}
|
2015-11-29 01:20:14 +03:00
|
|
|
|
|
|
|
self.resizeInput();
|
2015-09-18 12:44:57 +03:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
saveLastTextEntry: function() {
|
|
|
|
// save the currently entered text in order to restore it later.
|
|
|
|
// NB: This isn't 'originalText' because we want to restore
|
|
|
|
// sent history items too!
|
|
|
|
var text = this.element.value;
|
|
|
|
window.sessionStorage.setItem("input_" + this.roomId, text);
|
|
|
|
},
|
|
|
|
|
|
|
|
setLastTextEntry: function() {
|
|
|
|
var text = window.sessionStorage.getItem("input_" + this.roomId);
|
|
|
|
if (text) {
|
|
|
|
this.element.value = text;
|
2015-11-29 01:20:14 +03:00
|
|
|
self.resizeInput();
|
2015-09-18 12:44:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-06-18 17:03:57 +03:00
|
|
|
componentDidMount: function() {
|
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
2015-09-18 12:44:57 +03:00
|
|
|
this.sentHistory.init(
|
2015-11-10 02:59:28 +03:00
|
|
|
this.refs.textarea,
|
2015-09-18 12:44:57 +03:00
|
|
|
this.props.room.roomId
|
|
|
|
);
|
2015-11-30 04:12:32 +03:00
|
|
|
this.resizeInput();
|
2015-12-21 13:59:10 +03:00
|
|
|
if (this.props.tabComplete) {
|
|
|
|
this.props.tabComplete.setTextArea(this.refs.textarea);
|
|
|
|
}
|
2015-06-18 17:03:57 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
dis.unregister(this.dispatcherRef);
|
2015-09-18 12:44:57 +03:00
|
|
|
this.sentHistory.saveLastTextEntry();
|
2015-06-18 17:03:57 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onAction: function(payload) {
|
|
|
|
switch (payload.action) {
|
|
|
|
case 'focus_composer':
|
2015-11-10 02:59:28 +03:00
|
|
|
this.refs.textarea.focus();
|
2015-06-18 17:03:57 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-06-16 13:08:27 +03:00
|
|
|
onKeyDown: function (ev) {
|
2015-11-15 06:36:59 +03:00
|
|
|
if (ev.keyCode === KeyCode.ENTER && !ev.shiftKey) {
|
2015-11-10 02:59:28 +03:00
|
|
|
var input = this.refs.textarea.value;
|
2015-09-18 12:44:57 +03:00
|
|
|
if (input.length === 0) {
|
|
|
|
ev.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.sentHistory.push(input);
|
|
|
|
this.onEnter(ev);
|
|
|
|
}
|
2015-11-15 06:36:59 +03:00
|
|
|
else if (ev.keyCode === KeyCode.UP) {
|
|
|
|
var input = this.refs.textarea.value;
|
|
|
|
var offset = this.refs.textarea.selectionStart || 0;
|
|
|
|
if (ev.ctrlKey || !input.substr(0, offset).match(/\n/)) {
|
|
|
|
this.sentHistory.next(1);
|
|
|
|
ev.preventDefault();
|
|
|
|
this.resizeInput();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (ev.keyCode === KeyCode.DOWN) {
|
|
|
|
var input = this.refs.textarea.value;
|
|
|
|
var offset = this.refs.textarea.selectionStart || 0;
|
|
|
|
if (ev.ctrlKey || !input.substr(offset).match(/\n/)) {
|
|
|
|
this.sentHistory.next(-1);
|
|
|
|
ev.preventDefault();
|
|
|
|
this.resizeInput();
|
|
|
|
}
|
2015-09-18 12:44:57 +03:00
|
|
|
}
|
2015-12-21 13:59:10 +03:00
|
|
|
|
|
|
|
if (this.props.tabComplete) {
|
|
|
|
this.props.tabComplete.onKeyDown(ev);
|
|
|
|
}
|
2015-09-18 12:44:57 +03:00
|
|
|
|
|
|
|
var self = this;
|
|
|
|
setTimeout(function() {
|
2015-11-10 02:59:28 +03:00
|
|
|
if (self.refs.textarea && self.refs.textarea.value != '') {
|
2015-09-18 12:44:57 +03:00
|
|
|
self.onTypingActivity();
|
2015-06-16 17:29:13 +03:00
|
|
|
} else {
|
2015-09-18 12:44:57 +03:00
|
|
|
self.onFinishedTyping();
|
2015-06-16 17:29:13 +03:00
|
|
|
}
|
2015-09-18 12:44:57 +03:00
|
|
|
}, 10); // XXX: what is this 10ms setTimeout doing? Looks hacky :(
|
|
|
|
},
|
|
|
|
|
2015-11-15 06:36:59 +03:00
|
|
|
resizeInput: function() {
|
|
|
|
// scrollHeight is at least equal to clientHeight, so we have to
|
|
|
|
// temporarily crimp clientHeight to 0 to get an accurate scrollHeight value
|
|
|
|
this.refs.textarea.style.height = "0px";
|
2016-01-11 18:28:59 +03:00
|
|
|
var newHeight = Math.min(this.refs.textarea.scrollHeight,
|
|
|
|
this.constructor.MAX_HEIGHT);
|
2015-11-29 06:21:21 +03:00
|
|
|
this.refs.textarea.style.height = Math.ceil(newHeight) + "px";
|
2016-01-11 18:28:59 +03:00
|
|
|
this.oldScrollHeight = this.refs.textarea.scrollHeight;
|
|
|
|
|
|
|
|
if (this.props.onResize) {
|
2015-11-15 06:36:59 +03:00
|
|
|
// kick gemini-scrollbar to re-layout
|
2016-01-11 18:28:59 +03:00
|
|
|
this.props.onResize();
|
2015-11-15 06:36:59 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onKeyUp: function(ev) {
|
2015-11-16 00:37:22 +03:00
|
|
|
if (this.refs.textarea.scrollHeight !== this.oldScrollHeight ||
|
2015-11-15 06:36:59 +03:00
|
|
|
ev.keyCode === KeyCode.DELETE ||
|
|
|
|
ev.keyCode === KeyCode.BACKSPACE)
|
|
|
|
{
|
|
|
|
this.resizeInput();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-09-18 12:44:57 +03:00
|
|
|
onEnter: function(ev) {
|
2015-11-10 02:59:28 +03:00
|
|
|
var contentText = this.refs.textarea.value;
|
2015-06-16 17:29:13 +03:00
|
|
|
|
2015-11-20 19:08:57 +03:00
|
|
|
// bodge for now to set markdown state on/off. We probably want a separate
|
|
|
|
// area for "local" commands which don't hit out to the server.
|
|
|
|
if (contentText.indexOf("/markdown") === 0) {
|
|
|
|
ev.preventDefault();
|
|
|
|
this.refs.textarea.value = '';
|
|
|
|
if (contentText.indexOf("/markdown on") === 0) {
|
|
|
|
this.markdownEnabled = true;
|
|
|
|
}
|
|
|
|
else if (contentText.indexOf("/markdown off") === 0) {
|
|
|
|
this.markdownEnabled = false;
|
|
|
|
}
|
|
|
|
else {
|
2015-11-30 17:11:04 +03:00
|
|
|
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
2015-11-20 19:08:57 +03:00
|
|
|
Modal.createDialog(ErrorDialog, {
|
|
|
|
title: "Unknown command",
|
|
|
|
description: "Usage: /markdown on|off"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-18 12:44:57 +03:00
|
|
|
var cmd = SlashCommands.processInput(this.props.room.roomId, contentText);
|
|
|
|
if (cmd) {
|
|
|
|
ev.preventDefault();
|
|
|
|
if (!cmd.error) {
|
2015-11-10 02:59:28 +03:00
|
|
|
this.refs.textarea.value = '';
|
2015-09-18 12:44:57 +03:00
|
|
|
}
|
|
|
|
if (cmd.promise) {
|
|
|
|
cmd.promise.done(function() {
|
|
|
|
console.log("Command success.");
|
|
|
|
}, function(err) {
|
|
|
|
console.error("Command failure: %s", err);
|
2015-11-30 17:11:04 +03:00
|
|
|
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
2015-09-18 12:44:57 +03:00
|
|
|
Modal.createDialog(ErrorDialog, {
|
|
|
|
title: "Server error",
|
|
|
|
description: err.message
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else if (cmd.error) {
|
|
|
|
console.error(cmd.error);
|
2015-11-30 17:11:04 +03:00
|
|
|
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
2015-09-18 12:44:57 +03:00
|
|
|
Modal.createDialog(ErrorDialog, {
|
|
|
|
title: "Command error",
|
|
|
|
description: cmd.error
|
2015-06-24 20:15:34 +03:00
|
|
|
});
|
2015-09-18 12:44:57 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-20 19:08:57 +03:00
|
|
|
var isEmote = /^\/me /i.test(contentText);
|
|
|
|
var sendMessagePromise;
|
2015-11-29 01:34:45 +03:00
|
|
|
|
2015-11-20 19:08:57 +03:00
|
|
|
if (isEmote) {
|
2015-11-29 01:34:45 +03:00
|
|
|
contentText = contentText.substring(4);
|
|
|
|
}
|
2015-12-22 03:57:57 +03:00
|
|
|
else if (contentText[0] === '/') {
|
|
|
|
contentText = contentText.substring(1);
|
|
|
|
}
|
2015-11-29 01:34:45 +03:00
|
|
|
|
|
|
|
var htmlText;
|
2015-11-29 06:21:21 +03:00
|
|
|
if (this.markdownEnabled && (htmlText = mdownToHtml(contentText)) !== contentText) {
|
2015-11-29 01:34:45 +03:00
|
|
|
sendMessagePromise = isEmote ?
|
|
|
|
MatrixClientPeg.get().sendHtmlEmote(this.props.room.roomId, contentText, htmlText) :
|
|
|
|
MatrixClientPeg.get().sendHtmlMessage(this.props.room.roomId, contentText, htmlText);
|
2015-11-20 19:08:57 +03:00
|
|
|
}
|
|
|
|
else {
|
2015-11-29 01:34:45 +03:00
|
|
|
sendMessagePromise = isEmote ?
|
|
|
|
MatrixClientPeg.get().sendEmoteMessage(this.props.room.roomId, contentText) :
|
|
|
|
MatrixClientPeg.get().sendTextMessage(this.props.room.roomId, contentText);
|
2015-09-18 12:44:57 +03:00
|
|
|
}
|
|
|
|
|
2016-01-14 17:39:58 +03:00
|
|
|
sendMessagePromise.done(function() {
|
2015-09-18 12:44:57 +03:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_sent'
|
2015-06-24 20:15:34 +03:00
|
|
|
});
|
2015-09-18 12:44:57 +03:00
|
|
|
}, function() {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_send_failed'
|
|
|
|
});
|
|
|
|
});
|
2015-11-10 02:59:28 +03:00
|
|
|
this.refs.textarea.value = '';
|
2015-11-20 20:09:28 +03:00
|
|
|
this.resizeInput();
|
2015-09-18 12:44:57 +03:00
|
|
|
ev.preventDefault();
|
|
|
|
},
|
|
|
|
|
|
|
|
onTypingActivity: function() {
|
|
|
|
this.isTyping = true;
|
|
|
|
if (!this.userTypingTimer) {
|
|
|
|
this.sendTyping(true);
|
|
|
|
}
|
|
|
|
this.startUserTypingTimer();
|
|
|
|
this.startServerTypingTimer();
|
2015-06-16 13:08:27 +03:00
|
|
|
},
|
2015-09-18 12:44:57 +03:00
|
|
|
|
|
|
|
onFinishedTyping: function() {
|
|
|
|
this.isTyping = false;
|
|
|
|
this.sendTyping(false);
|
|
|
|
this.stopUserTypingTimer();
|
|
|
|
this.stopServerTypingTimer();
|
|
|
|
},
|
|
|
|
|
|
|
|
startUserTypingTimer: function() {
|
|
|
|
this.stopUserTypingTimer();
|
|
|
|
var self = this;
|
|
|
|
this.userTypingTimer = setTimeout(function() {
|
|
|
|
self.isTyping = false;
|
|
|
|
self.sendTyping(self.isTyping);
|
|
|
|
self.userTypingTimer = null;
|
|
|
|
}, TYPING_USER_TIMEOUT);
|
|
|
|
},
|
|
|
|
|
|
|
|
stopUserTypingTimer: function() {
|
|
|
|
if (this.userTypingTimer) {
|
|
|
|
clearTimeout(this.userTypingTimer);
|
|
|
|
this.userTypingTimer = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
startServerTypingTimer: function() {
|
|
|
|
if (!this.serverTypingTimer) {
|
|
|
|
var self = this;
|
|
|
|
this.serverTypingTimer = setTimeout(function() {
|
|
|
|
if (self.isTyping) {
|
|
|
|
self.sendTyping(self.isTyping);
|
|
|
|
self.startServerTypingTimer();
|
|
|
|
}
|
|
|
|
}, TYPING_SERVER_TIMEOUT / 2);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
stopServerTypingTimer: function() {
|
|
|
|
if (this.serverTypingTimer) {
|
|
|
|
clearTimeout(this.servrTypingTimer);
|
|
|
|
this.serverTypingTimer = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
sendTyping: function(isTyping) {
|
|
|
|
MatrixClientPeg.get().sendTyping(
|
|
|
|
this.props.room.roomId,
|
|
|
|
this.isTyping, TYPING_SERVER_TIMEOUT
|
|
|
|
).done();
|
|
|
|
},
|
|
|
|
|
|
|
|
refreshTyping: function() {
|
|
|
|
if (this.typingTimeout) {
|
|
|
|
clearTimeout(this.typingTimeout);
|
|
|
|
this.typingTimeout = null;
|
|
|
|
}
|
2015-11-26 20:31:10 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onInputClick: function(ev) {
|
|
|
|
this.refs.textarea.focus();
|
|
|
|
},
|
|
|
|
|
|
|
|
onUploadClick: function(ev) {
|
|
|
|
this.refs.uploadInput.click();
|
|
|
|
},
|
|
|
|
|
|
|
|
onUploadFileSelected: function(ev) {
|
|
|
|
var files = ev.target.files;
|
|
|
|
// MessageComposer shouldn't have to rely on it's parent passing in a callback to upload a file
|
|
|
|
if (files && files.length > 0) {
|
|
|
|
this.props.uploadFile(files[0]);
|
|
|
|
}
|
|
|
|
this.refs.uploadInput.value = null;
|
|
|
|
},
|
2015-09-18 12:44:57 +03:00
|
|
|
|
2015-12-15 02:37:34 +03:00
|
|
|
onHangupClick: function() {
|
|
|
|
var call = CallHandler.getCallForRoom(this.props.room.roomId);
|
2015-12-17 05:49:09 +03:00
|
|
|
//var call = CallHandler.getAnyActiveCall();
|
2015-12-15 02:37:34 +03:00
|
|
|
if (!call) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'hangup',
|
|
|
|
// hangup the call for this room, which may not be the room in props
|
|
|
|
// (e.g. conferences which will hangup the 1:1 room instead)
|
|
|
|
room_id: call.roomId
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-11-26 20:31:10 +03:00
|
|
|
onCallClick: function(ev) {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'place_call',
|
|
|
|
type: ev.shiftKey ? "screensharing" : "video",
|
|
|
|
room_id: this.props.room.roomId
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onVoiceCallClick: function(ev) {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'place_call',
|
|
|
|
type: 'voice',
|
|
|
|
room_id: this.props.room.roomId
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
var me = this.props.room.getMember(MatrixClientPeg.get().credentials.userId);
|
|
|
|
var uploadInputStyle = {display: 'none'};
|
|
|
|
var MemberAvatar = sdk.getComponent('avatars.MemberAvatar');
|
2016-01-06 05:11:07 +03:00
|
|
|
var TintableSvg = sdk.getComponent("elements.TintableSvg");
|
2015-12-15 02:37:34 +03:00
|
|
|
|
|
|
|
var callButton, videoCallButton, hangupButton;
|
|
|
|
var call = CallHandler.getCallForRoom(this.props.room.roomId);
|
2015-12-17 05:49:09 +03:00
|
|
|
//var call = CallHandler.getAnyActiveCall();
|
2015-12-15 02:37:34 +03:00
|
|
|
if (this.props.callState && this.props.callState !== 'ended') {
|
|
|
|
hangupButton =
|
|
|
|
<div className="mx_MessageComposer_hangup" onClick={this.onHangupClick}>
|
|
|
|
<img src="img/hangup.svg" alt="Hangup" title="Hangup" width="25" height="26"/>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
callButton =
|
2016-01-04 01:34:56 +03:00
|
|
|
<div className="mx_MessageComposer_voicecall" onClick={this.onVoiceCallClick} title="Voice call">
|
2016-01-06 05:11:07 +03:00
|
|
|
<TintableSvg src="img/voice.svg" width="16" height="26"/>
|
2015-12-15 02:37:34 +03:00
|
|
|
</div>
|
|
|
|
videoCallButton =
|
2016-01-04 01:34:56 +03:00
|
|
|
<div className="mx_MessageComposer_videocall" onClick={this.onCallClick} title="Video call">
|
2016-01-06 05:11:07 +03:00
|
|
|
<TintableSvg src="img/call.svg" width="30" height="22"/>
|
2015-12-15 02:37:34 +03:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
|
2015-11-26 20:31:10 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_MessageComposer">
|
|
|
|
<div className="mx_MessageComposer_wrapper">
|
|
|
|
<div className="mx_MessageComposer_row">
|
|
|
|
<div className="mx_MessageComposer_avatar">
|
|
|
|
<MemberAvatar member={me} width={24} height={24} />
|
|
|
|
</div>
|
|
|
|
<div className="mx_MessageComposer_input" onClick={ this.onInputClick }>
|
|
|
|
<textarea ref="textarea" rows="1" onKeyDown={this.onKeyDown} onKeyUp={this.onKeyUp} placeholder="Type a message..." />
|
|
|
|
</div>
|
2016-01-04 01:34:56 +03:00
|
|
|
<div className="mx_MessageComposer_upload" onClick={this.onUploadClick} title="Upload file">
|
2016-01-06 05:11:07 +03:00
|
|
|
<TintableSvg src="img/upload.svg" width="19" height="24"/>
|
2015-11-26 20:31:10 +03:00
|
|
|
<input type="file" style={uploadInputStyle} ref="uploadInput" onChange={this.onUploadFileSelected} />
|
|
|
|
</div>
|
2015-12-15 02:37:34 +03:00
|
|
|
{ hangupButton }
|
|
|
|
{ callButton }
|
|
|
|
{ videoCallButton }
|
2015-11-26 20:31:10 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2015-09-18 12:44:57 +03:00
|
|
|
}
|
2015-11-26 20:31:10 +03:00
|
|
|
});
|
2015-06-15 20:35:28 +03:00
|
|
|
|