2017-05-18 01:21:02 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-06-20 12:54:41 +03:00
|
|
|
import React from 'react';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
import AppTile from '../elements/AppTile';
|
|
|
|
import Modal from '../../../Modal';
|
|
|
|
import dis from '../../../dispatcher';
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import SdkConfig from '../../../SdkConfig';
|
|
|
|
import ScalarAuthClient from '../../../ScalarAuthClient';
|
2017-06-20 19:56:45 +03:00
|
|
|
import ScalarMessaging from '../../../ScalarMessaging';
|
2017-05-30 15:47:17 +03:00
|
|
|
|
2017-05-18 01:21:02 +03:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'AppsDrawer',
|
|
|
|
|
|
|
|
propTypes: {
|
2017-06-13 16:28:37 +03:00
|
|
|
room: React.PropTypes.object.isRequired,
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
2017-06-20 19:56:45 +03:00
|
|
|
ScalarMessaging.startListening();
|
2017-06-13 16:28:37 +03:00
|
|
|
MatrixClientPeg.get().on("RoomState.events", this.onRoomStateEvents);
|
2017-05-18 01:21:02 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function() {
|
2017-06-20 12:54:41 +03:00
|
|
|
this.scalarClient = null;
|
|
|
|
const appsDrawer = this;
|
|
|
|
if (SdkConfig.get().integrations_ui_url && SdkConfig.get().integrations_rest_url) {
|
|
|
|
this.scalarClient = new ScalarAuthClient();
|
|
|
|
this.scalarClient.connect().done(() => {
|
|
|
|
this.forceUpdate();
|
|
|
|
if (appsDrawer.state.apps && appsDrawer.state.apps.length < 1) {
|
|
|
|
appsDrawer.onClickAddWidget();
|
|
|
|
}
|
|
|
|
}, (err) => {
|
|
|
|
this.setState({
|
|
|
|
scalar_error: err,
|
|
|
|
});
|
|
|
|
});
|
2017-06-14 16:05:29 +03:00
|
|
|
}
|
2017-05-18 01:21:02 +03:00
|
|
|
},
|
|
|
|
|
2017-06-13 16:28:37 +03:00
|
|
|
componentWillUnmount: function() {
|
2017-06-20 19:56:45 +03:00
|
|
|
ScalarMessaging.startListening();
|
2017-06-13 16:28:37 +03:00
|
|
|
if (MatrixClientPeg.get()) {
|
|
|
|
MatrixClientPeg.get().removeListener("RoomState.events", this.onRoomStateEvents);
|
|
|
|
}
|
2017-06-05 20:21:31 +03:00
|
|
|
},
|
|
|
|
|
2017-06-13 16:28:37 +03:00
|
|
|
_initAppConfig: function(appId, app) {
|
|
|
|
console.log("App props: ", this.props);
|
|
|
|
app.id = appId;
|
|
|
|
app.name = app.type;
|
|
|
|
|
|
|
|
switch(app.type) {
|
|
|
|
case 'etherpad':
|
2017-06-14 14:26:43 +03:00
|
|
|
app.queryParams = '?userName=' + this.props.userId +
|
2017-06-13 16:28:37 +03:00
|
|
|
'&padId=' + this.props.room.roomId;
|
|
|
|
break;
|
|
|
|
case 'jitsi': {
|
|
|
|
const user = MatrixClientPeg.get().getUser(this.props.userId);
|
2017-06-14 14:26:43 +03:00
|
|
|
app.queryParams = '?confId=' + app.data.confId +
|
2017-06-13 16:28:37 +03:00
|
|
|
'&displayName=' + encodeURIComponent(user.displayName) +
|
|
|
|
'&avatarUrl=' + encodeURIComponent(MatrixClientPeg.get().mxcUrlToHttp(user.avatarUrl)) +
|
|
|
|
'&email=' + encodeURIComponent(this.props.userId) +
|
|
|
|
'&isAudioConf=' + app.data.isAudioConf;
|
|
|
|
|
|
|
|
app.name += ' - ' + app.data.confId;
|
|
|
|
break;
|
2017-05-30 15:47:17 +03:00
|
|
|
}
|
2017-06-14 14:05:43 +03:00
|
|
|
case 'vrdemo':
|
2017-06-14 14:27:15 +03:00
|
|
|
app.name = 'Matrix VR Demo - ' + app.data.roomAlias;
|
|
|
|
app.queryParams = '?roomAlias=' + encodeURIComponent(app.data.roomAlias);
|
2017-06-14 14:05:43 +03:00
|
|
|
break;
|
2017-05-30 15:47:17 +03:00
|
|
|
}
|
2017-06-13 16:28:37 +03:00
|
|
|
|
|
|
|
return app;
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
2017-05-18 01:21:02 +03:00
|
|
|
return {
|
2017-06-13 16:28:37 +03:00
|
|
|
apps: this._getApps(),
|
2017-05-18 01:21:02 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-06-13 16:28:37 +03:00
|
|
|
onRoomStateEvents: function(ev, state) {
|
|
|
|
if (ev.getRoomId() !== this.props.room.roomId || ev.getType() !== 'im.vector.modular.widgets') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._updateApps();
|
|
|
|
},
|
|
|
|
|
|
|
|
_getApps: function() {
|
|
|
|
const appsStateEvents = this.props.room.currentState.getStateEvents('im.vector.modular.widgets', '');
|
|
|
|
if (!appsStateEvents) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
const appsStateEvent = appsStateEvents.getContent();
|
|
|
|
if (Object.keys(appsStateEvent).length < 1) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
return Object.keys(appsStateEvent).map((appId) => {
|
|
|
|
return this._initAppConfig(appId, appsStateEvent[appId]);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateApps: function() {
|
|
|
|
const apps = this._getApps();
|
|
|
|
if (apps.length < 1) {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'appsDrawer',
|
|
|
|
show: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
apps: this._getApps(),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-06-20 12:54:41 +03:00
|
|
|
onClickAddWidget: function(e) {
|
|
|
|
// Modal.createDialog(AddAppDialog, {
|
|
|
|
// onFinished: (proceed, type, value) => {
|
|
|
|
// if (!proceed || !type) return;
|
|
|
|
// if (type === 'custom' && !value) return;
|
|
|
|
//
|
|
|
|
// const appsStateEvents = this.props.room.currentState.getStateEvents('im.vector.modular.widgets', '');
|
|
|
|
// let appsStateEvent = {};
|
|
|
|
// if (appsStateEvents) {
|
|
|
|
// appsStateEvent = appsStateEvents.getContent();
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// if (appsStateEvent[type]) {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// switch (type) {
|
|
|
|
// case 'etherpad':
|
|
|
|
// appsStateEvent.etherpad = {
|
|
|
|
// type: type,
|
|
|
|
// url: 'http://localhost:8000/etherpad.html',
|
|
|
|
// };
|
|
|
|
// break;
|
|
|
|
// case 'grafana':
|
|
|
|
// appsStateEvent.grafana = {
|
|
|
|
// type: type,
|
|
|
|
// url: 'http://localhost:8000/grafana.html',
|
|
|
|
// };
|
|
|
|
// break;
|
|
|
|
// case 'jitsi':
|
|
|
|
// appsStateEvent.videoConf = {
|
|
|
|
// type: type,
|
|
|
|
// url: 'http://localhost:8000/jitsi.html',
|
|
|
|
// data: {
|
|
|
|
// confId: this.props.room.roomId.replace(/[^A-Za-z0-9]/g, '_') + Date.now(),
|
|
|
|
// },
|
|
|
|
// };
|
|
|
|
// break;
|
|
|
|
// case 'vrdemo':
|
|
|
|
// appsStateEvent.vrDemo = {
|
|
|
|
// type: type,
|
|
|
|
// url: 'http://localhost:8000/vrdemo.html',
|
|
|
|
// data: {
|
|
|
|
// roomAlias: '#vrvc' + this.props.room.roomId.replace(/[^A-Za-z0-9]/g, '_') + Date.now(),
|
|
|
|
// },
|
|
|
|
// };
|
|
|
|
// break;
|
|
|
|
// case 'custom':
|
|
|
|
// appsStateEvent.custom = {
|
|
|
|
// type: type,
|
|
|
|
// url: value,
|
|
|
|
// };
|
|
|
|
// break;
|
|
|
|
// default:
|
|
|
|
// console.warn('Unsupported app type:', type);
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// MatrixClientPeg.get().sendStateEvent(
|
|
|
|
// this.props.room.roomId,
|
|
|
|
// 'im.vector.modular.widgets',
|
|
|
|
// appsStateEvent,
|
|
|
|
// '',
|
|
|
|
// );
|
|
|
|
// },
|
|
|
|
// });
|
|
|
|
|
|
|
|
if (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
2017-06-13 16:31:37 +03:00
|
|
|
|
2017-06-20 12:54:41 +03:00
|
|
|
const IntegrationsManager = sdk.getComponent("views.settings.IntegrationsManager");
|
|
|
|
const src = (this.scalarClient !== null && this.scalarClient.hasCredentials()) ?
|
|
|
|
this.scalarClient.getScalarInterfaceUrlForRoom(this.props.room.roomId) :
|
|
|
|
null;
|
|
|
|
Modal.createDialog(IntegrationsManager, {
|
|
|
|
src: src,
|
|
|
|
onFinished: ()=>{
|
2017-06-20 19:56:45 +03:00
|
|
|
if (e) {
|
|
|
|
this.props.onCancelClick(e);
|
2017-06-13 16:31:37 +03:00
|
|
|
}
|
2017-05-22 14:34:27 +03:00
|
|
|
},
|
2017-06-20 12:54:41 +03:00
|
|
|
}, "mx_IntegrationsManager");
|
2017-05-18 01:21:02 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2017-05-22 14:34:27 +03:00
|
|
|
const apps = this.state.apps.map(
|
2017-06-14 14:26:43 +03:00
|
|
|
(app, index, arr) => {
|
|
|
|
let appUrl = app.url;
|
|
|
|
if (app.queryParams) {
|
|
|
|
appUrl += app.queryParams;
|
|
|
|
}
|
|
|
|
return <AppTile
|
|
|
|
key={app.name}
|
|
|
|
id={app.id}
|
|
|
|
url={appUrl}
|
|
|
|
name={app.name}
|
|
|
|
fullWidth={arr.length<2 ? true : false}
|
|
|
|
room={this.props.room}
|
|
|
|
userId={this.props.userId}
|
|
|
|
/>;
|
|
|
|
});
|
2017-05-22 14:34:27 +03:00
|
|
|
|
2017-06-06 16:50:43 +03:00
|
|
|
const addWidget = this.state.apps && this.state.apps.length < 2 &&
|
|
|
|
(<div onClick={this.onClickAddWidget}
|
|
|
|
role="button"
|
|
|
|
tabIndex="0"
|
|
|
|
className="mx_AddWidget_button"
|
|
|
|
title="Add a widget">
|
|
|
|
[+] Add a widget
|
|
|
|
</div>);
|
|
|
|
|
2017-05-18 01:21:02 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_AppsDrawer">
|
2017-05-22 14:34:27 +03:00
|
|
|
<div id="apps" className="mx_AppsContainer">
|
|
|
|
{apps}
|
|
|
|
</div>
|
2017-06-06 16:50:43 +03:00
|
|
|
{addWidget}
|
2017-05-18 01:21:02 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|