2015-07-14 16:14:26 +02:00
|
|
|
/*
|
|
|
|
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 PresetsController = require("../../../../../src/controllers/atoms/create_room/Presets");
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'CreateRoomPresets',
|
|
|
|
mixins: [PresetsController],
|
|
|
|
|
2015-07-14 17:59:11 +02:00
|
|
|
onValueChanged: function(ev) {
|
2015-07-16 18:24:33 +02:00
|
|
|
this.props.onChange(ev.target.value)
|
2015-07-14 17:59:11 +02:00
|
|
|
},
|
|
|
|
|
2015-07-14 16:14:26 +02:00
|
|
|
render: function() {
|
|
|
|
return (
|
2015-07-16 18:24:33 +02:00
|
|
|
<select className="mx_Presets" onChange={this.onValueChanged} value={this.props.preset}>
|
2015-07-16 16:55:46 +02:00
|
|
|
<option value={this.Presets.PrivateChat}>Private Chat</option>
|
|
|
|
<option value={this.Presets.PublicChat}>Public Chat</option>
|
|
|
|
<option value={this.Presets.Custom}>Custom</option>
|
2015-07-14 16:14:26 +02:00
|
|
|
</select>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|