2016-02-23 18:46:27 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2017-10-12 19:03:38 +03:00
|
|
|
Copyright 2017 New Vector Ltd
|
2016-02-23 18:46:27 +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.
|
|
|
|
*/
|
|
|
|
|
2017-05-30 17:09:57 +03:00
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-30 17:09:57 +03:00
|
|
|
import MatrixClientPeg from "../../../MatrixClientPeg";
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import dis from "../../../dispatcher";
|
|
|
|
import ObjectUtils from '../../../ObjectUtils';
|
2017-06-09 13:06:44 +03:00
|
|
|
import AppsDrawer from './AppsDrawer';
|
2017-11-13 22:19:33 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-05-30 17:09:57 +03:00
|
|
|
|
|
|
|
|
2016-02-23 18:46:27 +03:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'AuxPanel',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
// js-sdk room object
|
2017-12-26 04:03:18 +03:00
|
|
|
room: PropTypes.object.isRequired,
|
|
|
|
userId: PropTypes.string.isRequired,
|
2018-02-23 18:37:33 +03:00
|
|
|
showApps: PropTypes.bool, // Render apps
|
|
|
|
hideAppsDrawer: PropTypes.bool, // Do not display apps drawer and content (may still be rendered)
|
2016-02-23 18:46:27 +03:00
|
|
|
|
|
|
|
// Conference Handler implementation
|
2017-12-26 04:03:18 +03:00
|
|
|
conferenceHandler: PropTypes.object,
|
2016-02-23 18:46:27 +03:00
|
|
|
|
|
|
|
// set to true to show the file drop target
|
2017-12-26 04:03:18 +03:00
|
|
|
draggingFile: PropTypes.bool,
|
2016-02-23 18:46:27 +03:00
|
|
|
|
|
|
|
// set to true to show the 'active conf call' banner
|
2017-12-26 04:03:18 +03:00
|
|
|
displayConfCallNotification: PropTypes.bool,
|
2016-02-23 18:46:27 +03:00
|
|
|
|
|
|
|
// maxHeight attribute for the aux panel and the video
|
|
|
|
// therein
|
2017-12-26 04:03:18 +03:00
|
|
|
maxHeight: PropTypes.number,
|
2016-02-23 18:46:27 +03:00
|
|
|
|
2016-03-08 15:16:34 +03:00
|
|
|
// a callback which is called when the content of the aux panel changes
|
|
|
|
// content in a way that is likely to make it change size.
|
2017-12-26 04:03:18 +03:00
|
|
|
onResize: PropTypes.func,
|
2016-03-08 15:16:34 +03:00
|
|
|
},
|
|
|
|
|
2018-02-09 16:23:34 +03:00
|
|
|
defaultProps: {
|
|
|
|
showApps: true,
|
|
|
|
hideAppsDrawer: false,
|
|
|
|
},
|
|
|
|
|
2016-03-08 15:16:34 +03:00
|
|
|
shouldComponentUpdate: function(nextProps, nextState) {
|
|
|
|
return (!ObjectUtils.shallowEqual(this.props, nextProps) ||
|
|
|
|
!ObjectUtils.shallowEqual(this.state, nextState));
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidUpdate: function(prevProps, prevState) {
|
|
|
|
// most changes are likely to cause a resize
|
|
|
|
if (this.props.onResize) {
|
|
|
|
this.props.onResize();
|
|
|
|
}
|
2016-02-23 18:46:27 +03:00
|
|
|
},
|
|
|
|
|
2016-09-03 15:27:46 +03:00
|
|
|
onConferenceNotificationClick: function(ev, type) {
|
2016-02-23 18:46:27 +03:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'place_call',
|
2016-09-02 17:38:28 +03:00
|
|
|
type: type,
|
2016-02-23 18:46:27 +03:00
|
|
|
room_id: this.props.room.roomId,
|
|
|
|
});
|
2016-09-03 15:27:46 +03:00
|
|
|
ev.stopPropagation();
|
|
|
|
ev.preventDefault();
|
2016-02-23 18:46:27 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2017-05-17 23:15:57 +03:00
|
|
|
const CallView = sdk.getComponent("voip.CallView");
|
|
|
|
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
2016-02-23 18:46:27 +03:00
|
|
|
|
2017-05-17 23:15:57 +03:00
|
|
|
let fileDropTarget = null;
|
2016-02-23 18:46:27 +03:00
|
|
|
if (this.props.draggingFile) {
|
|
|
|
fileDropTarget = (
|
|
|
|
<div className="mx_RoomView_fileDropTarget">
|
|
|
|
<div className="mx_RoomView_fileDropTargetLabel"
|
2017-06-08 16:08:51 +03:00
|
|
|
title={_t("Drop File Here")}>
|
2017-10-11 19:56:17 +03:00
|
|
|
<TintableSvg src="img/upload-big.svg" width="45" height="59" />
|
|
|
|
<br />
|
|
|
|
{ _t("Drop file here to upload") }
|
2016-02-23 18:46:27 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-05-17 23:15:57 +03:00
|
|
|
let conferenceCallNotification = null;
|
2016-02-23 18:46:27 +03:00
|
|
|
if (this.props.displayConfCallNotification) {
|
2017-06-10 00:06:43 +03:00
|
|
|
let supportedText = '';
|
|
|
|
let joinNode;
|
2016-02-23 18:46:27 +03:00
|
|
|
if (!MatrixClientPeg.get().supportsVoip()) {
|
2017-05-30 17:09:57 +03:00
|
|
|
supportedText = _t(" (unsupported)");
|
2017-05-17 23:15:57 +03:00
|
|
|
} else {
|
2017-06-10 00:06:43 +03:00
|
|
|
joinNode = (<span>
|
2017-11-13 22:19:33 +03:00
|
|
|
{ _t(
|
2017-06-08 16:45:59 +03:00
|
|
|
"Join as <voiceText>voice</voiceText> or <videoText>video</videoText>.",
|
2017-11-13 22:19:33 +03:00
|
|
|
{},
|
|
|
|
{
|
|
|
|
'voiceText': (sub) => <a onClick={(event)=>{ this.onConferenceNotificationClick(event, 'voice');}} href="#">{ sub }</a>,
|
|
|
|
'videoText': (sub) => <a onClick={(event)=>{ this.onConferenceNotificationClick(event, 'video');}} href="#">{ sub }</a>,
|
|
|
|
},
|
2017-10-11 19:56:17 +03:00
|
|
|
) }
|
2016-09-02 17:38:28 +03:00
|
|
|
</span>);
|
|
|
|
}
|
2017-06-10 00:06:43 +03:00
|
|
|
// XXX: the translation here isn't great: appending ' (unsupported)' is likely to not make sense in many languages,
|
|
|
|
// but there are translations for this in the languages we do have so I'm leaving it for now.
|
2016-02-23 18:46:27 +03:00
|
|
|
conferenceCallNotification = (
|
2016-09-02 17:38:28 +03:00
|
|
|
<div className="mx_RoomView_ongoingConfCallNotification">
|
2017-10-11 19:56:17 +03:00
|
|
|
{ _t("Ongoing conference call%(supportedText)s.", {supportedText: supportedText}) }
|
2017-06-10 00:06:43 +03:00
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
{ joinNode }
|
2016-02-23 18:46:27 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-05-17 23:15:57 +03:00
|
|
|
const callView = (
|
2016-02-23 18:46:27 +03:00
|
|
|
<CallView ref="callView" room={this.props.room}
|
|
|
|
ConferenceHandler={this.props.conferenceHandler}
|
2016-03-08 15:16:34 +03:00
|
|
|
onResize={this.props.onResize}
|
2016-02-23 18:46:27 +03:00
|
|
|
maxVideoHeight={this.props.maxHeight}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2017-10-12 19:03:38 +03:00
|
|
|
const appsDrawer = <AppsDrawer ref="appsDrawer"
|
|
|
|
room={this.props.room}
|
|
|
|
userId={this.props.userId}
|
|
|
|
maxHeight={this.props.maxHeight}
|
|
|
|
showApps={this.props.showApps}
|
2018-02-09 16:23:34 +03:00
|
|
|
hide={this.props.hideAppsDrawer}
|
2017-10-12 19:03:38 +03:00
|
|
|
/>;
|
2017-05-17 23:15:57 +03:00
|
|
|
|
2016-02-23 18:46:27 +03:00
|
|
|
return (
|
2017-08-21 17:29:11 +03:00
|
|
|
<div className="mx_RoomView_auxPanel" style={{maxHeight: this.props.maxHeight}} >
|
2017-05-17 23:15:57 +03:00
|
|
|
{ appsDrawer }
|
2016-02-23 18:46:27 +03:00
|
|
|
{ fileDropTarget }
|
|
|
|
{ callView }
|
|
|
|
{ conferenceCallNotification }
|
|
|
|
{ this.props.children }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|