Add call handling logic. Outbound voice calls work!
This commit is contained in:
parent
7e30c0f47b
commit
6316f1b195
|
@ -28,7 +28,25 @@ var VideoView = ComponentBroker.get('molecules/voip/VideoView');
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: 'CallHandler',
|
displayName: 'CallHandler',
|
||||||
mixins: [CallHandlerController],
|
mixins: [CallHandlerController],
|
||||||
|
|
||||||
|
getVideoView: function() {
|
||||||
|
return this.refs.video;
|
||||||
|
},
|
||||||
|
|
||||||
render: function(){
|
render: function(){
|
||||||
|
if (this.state && this.state.call) {
|
||||||
|
if (this.state.call.type === "video") {
|
||||||
|
return (
|
||||||
|
<VideoView ref="video"/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else if (this.state.call.type === "voice") {
|
||||||
|
// <WaveformView /> in the future.
|
||||||
|
return (
|
||||||
|
<div></div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<div></div>
|
<div></div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -15,13 +15,25 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
var MatrixClientPeg = require("../../../MatrixClientPeg");
|
||||||
|
var Matrix = require("matrix-js-sdk");
|
||||||
var dis = require("../../../dispatcher");
|
var dis = require("../../../dispatcher");
|
||||||
|
|
||||||
|
/*
|
||||||
|
* State vars:
|
||||||
|
* this.state.call = MatrixCall|null
|
||||||
|
*
|
||||||
|
* Props:
|
||||||
|
* this.props.room = Room (JS SDK) - can be null (for singleton views)
|
||||||
|
*/
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
this.dispatcherRef = dis.register(this.onAction);
|
this.dispatcherRef = dis.register(this.onAction);
|
||||||
|
this.setState({
|
||||||
|
call: null
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillUnmount: function() {
|
componentWillUnmount: function() {
|
||||||
|
@ -37,12 +49,75 @@ module.exports = {
|
||||||
|
|
||||||
switch (payload.action) {
|
switch (payload.action) {
|
||||||
case 'place_call':
|
case 'place_call':
|
||||||
|
if (this.state.call) {
|
||||||
|
return; // don't allow >1 call to be placed.
|
||||||
|
}
|
||||||
console.log("Place %s call in %s", payload.type, payload.room_id);
|
console.log("Place %s call in %s", payload.type, payload.room_id);
|
||||||
|
var call = Matrix.createNewMatrixCall(
|
||||||
|
MatrixClientPeg.get(), payload.room_id
|
||||||
|
);
|
||||||
|
this._setCallListeners(call);
|
||||||
|
this.setState({
|
||||||
|
call: call
|
||||||
|
});
|
||||||
|
if (payload.type === 'voice') {
|
||||||
|
call.placeVoiceCall();
|
||||||
|
}
|
||||||
|
else if (payload.type === 'video') {
|
||||||
|
var videoView = this.getVideoView();
|
||||||
|
call.placeVideoCall(
|
||||||
|
videoView.getRemoteVideoElement(),
|
||||||
|
videoView.getLocalVideoElement()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
console.error("Unknown call type: %s", payload.type);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'incoming_call':
|
case 'incoming_call':
|
||||||
|
if (this.state.call) {
|
||||||
|
payload.call.hangup("busy");
|
||||||
|
return; // don't allow >1 call to be received.
|
||||||
|
}
|
||||||
|
this._setCallListeners(call);
|
||||||
|
this.setState({
|
||||||
|
call: call
|
||||||
|
});
|
||||||
console.log("Incoming call: %s", payload.call);
|
console.log("Incoming call: %s", payload.call);
|
||||||
break;
|
break;
|
||||||
|
case 'hangup':
|
||||||
|
if (!this.state.call) {
|
||||||
|
return; // no call to hangup
|
||||||
}
|
}
|
||||||
|
this.state.call.hangup();
|
||||||
|
this.setState({
|
||||||
|
call: null
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'answer':
|
||||||
|
if (!this.state.call) {
|
||||||
|
return; // no call to answer
|
||||||
|
}
|
||||||
|
this.state.call.answer();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_setCallListeners: function(call) {
|
||||||
|
var self = this;
|
||||||
|
call.on("error", function(err) {
|
||||||
|
console.error("Call error: %s", err);
|
||||||
|
console.error(err.stack);
|
||||||
|
call.hangup();
|
||||||
|
self.setState({
|
||||||
|
call: null
|
||||||
|
});
|
||||||
|
});
|
||||||
|
call.on("hangup", function() {
|
||||||
|
self.setState({
|
||||||
|
call: null
|
||||||
|
});
|
||||||
|
})
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue