mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
Add modal dialog on new room button
https://github.com/vector-im/vector-web/issues/2178
This commit is contained in:
parent
c8def540c4
commit
3741768a3a
1 changed files with 13 additions and 1 deletions
|
@ -364,7 +364,19 @@ module.exports = React.createClass({
|
|||
//this._setPage(this.PageTypes.CreateRoom);
|
||||
//this.notifyNewScreen('new');
|
||||
|
||||
createRoom().done();
|
||||
var TextInputDialog = sdk.getComponent("dialogs.TextInputDialog");
|
||||
Modal.createDialog(TextInputDialog, {
|
||||
title: "Create Room",
|
||||
description: "Name your new room, or leave it nameless",
|
||||
button: "Create Room",
|
||||
onFinished: (should_create, name) => {
|
||||
if (should_create) {
|
||||
const createOpts = {};
|
||||
if (name) createOpts.name = name;
|
||||
createRoom({createOpts}).done();
|
||||
}
|
||||
}
|
||||
});
|
||||
break;
|
||||
case 'view_room_directory':
|
||||
this._setPage(this.PageTypes.RoomDirectory);
|
||||
|
|
Loading…
Reference in a new issue