mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
Removed commented code
This commit is contained in:
parent
e343e99355
commit
18ea76b864
@ -135,72 +135,6 @@ module.exports = React.createClass({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onClickAddWidget: function(e) {
|
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) {
|
if (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user