Add modal dialog on new room button

https://github.com/vector-im/vector-web/issues/2178
This commit is contained in:
David Baker 2016-09-13 16:40:15 +01:00
parent c8def540c4
commit 3741768a3a

View file

@ -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);