2017-05-08 13:18:31 +03:00
|
|
|
/*
|
2017-08-17 15:33:07 +03:00
|
|
|
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
|
2017-05-08 13:18:31 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import sdk from '../../../index';
|
2017-08-17 15:33:07 +03:00
|
|
|
import SdkConfig from '../../../SdkConfig';
|
2017-08-02 15:41:26 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-05-08 13:18:31 +03:00
|
|
|
|
|
|
|
export default React.createClass({
|
2017-08-17 15:33:07 +03:00
|
|
|
displayName: 'CreateRoomDialog',
|
2017-05-08 13:18:31 +03:00
|
|
|
propTypes: {
|
|
|
|
onFinished: React.PropTypes.func.isRequired,
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function() {
|
2017-08-17 15:33:07 +03:00
|
|
|
const config = SdkConfig.get();
|
|
|
|
// Dialog shows inverse of m.federate (noFederate) strict false check to skip undefined check (default = true)
|
|
|
|
this.defaultNoFederate = config.default_federate === false;
|
2017-05-08 13:18:31 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onOk: function() {
|
2017-08-02 16:00:24 +03:00
|
|
|
this.props.onFinished(true, this.refs.textinput.value, this.refs.checkbox.checked);
|
2017-05-08 13:18:31 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onCancel: function() {
|
|
|
|
this.props.onFinished(false);
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
|
|
|
return (
|
2017-08-17 15:33:07 +03:00
|
|
|
<BaseDialog className="mx_CreateRoomDialog" onFinished={this.props.onFinished}
|
2017-05-08 13:18:31 +03:00
|
|
|
onEnterPressed={this.onOk}
|
2017-08-17 15:33:07 +03:00
|
|
|
title={_t('Create Room')}
|
2017-05-08 13:18:31 +03:00
|
|
|
>
|
|
|
|
<div className="mx_Dialog_content">
|
2017-08-17 15:33:07 +03:00
|
|
|
<div className="mx_CreateRoomDialog_label">
|
|
|
|
<label htmlFor="textinput"> {_t('Room name (optional)')} </label>
|
2017-05-08 13:18:31 +03:00
|
|
|
</div>
|
|
|
|
<div>
|
2017-08-17 15:33:07 +03:00
|
|
|
<input id="textinput" ref="textinput" className="mx_CreateRoomDialog_input" autoFocus={true} size="64" onKeyDown={this.onKeyDown}/>
|
2017-05-08 13:18:31 +03:00
|
|
|
</div>
|
2017-08-02 15:41:26 +03:00
|
|
|
<br/>
|
2017-08-17 15:33:07 +03:00
|
|
|
|
|
|
|
<details className="mx_CreateRoomDialog_details">
|
|
|
|
<summary className="mx_CreateRoomDialog_details_summary">{ _t('Advanced options') }</summary>
|
|
|
|
<div>
|
|
|
|
<input type="checkbox" id="checkbox" ref="checkbox" defaultChecked={this.defaultNoFederate}/>
|
|
|
|
<label htmlFor="checkbox">
|
|
|
|
{_t('Block users on other matrix homeservers from joining this room')}
|
|
|
|
<br/>
|
|
|
|
({_t('This setting cannot be changed later!')})
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</details>
|
2017-05-08 13:18:31 +03:00
|
|
|
</div>
|
|
|
|
<div className="mx_Dialog_buttons">
|
|
|
|
<button onClick={this.onCancel}>
|
2017-08-17 15:33:07 +03:00
|
|
|
{ _t('Cancel') }
|
2017-05-08 13:18:31 +03:00
|
|
|
</button>
|
|
|
|
<button className="mx_Dialog_primary" onClick={this.onOk}>
|
2017-08-17 15:33:07 +03:00
|
|
|
{ _t('Create Room') }
|
2017-05-08 13:18:31 +03:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</BaseDialog>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|