mirror of https://github.com/vector-im/riot-web
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
/*
|
|
Copyright 2015 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';
|
|
|
|
var React = require('react');
|
|
|
|
var CreateRoomController = require("../../../../src/controllers/organisms/CreateRoom");
|
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
|
|
|
var CreateRoomButton = ComponentBroker.get("atoms/create_room/CreateRoomButton");
|
|
var RoomNameTextbox = ComponentBroker.get("atoms/create_room/RoomNameTextbox");
|
|
var Presets = ComponentBroker.get("atoms/create_room/Presets");
|
|
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'CreateRoom',
|
|
mixins: [CreateRoomController],
|
|
|
|
render: function() {
|
|
return (
|
|
<div className="mx_CreateRoom">
|
|
<label>Room Name <RoomNameTextbox ref="name_textbox" /></label>
|
|
<Presets ref="presets"/>
|
|
<CreateRoomButton onCreateRoom={this.onCreateRoom} />
|
|
</div>
|
|
);
|
|
}
|
|
});
|