mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 11:51:31 +03:00
fix and i18n the impl
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
fd454b476a
commit
4b4b730233
3 changed files with 27 additions and 32 deletions
|
@ -214,10 +214,6 @@ module.exports = React.createClass({
|
|||
return this.props.config.default_is_url || "https://vector.im";
|
||||
},
|
||||
|
||||
getDefaultFederate() {
|
||||
return this.props.config.default_federate && true;
|
||||
},
|
||||
|
||||
componentWillMount: function() {
|
||||
SdkConfig.put(this.props.config);
|
||||
|
||||
|
@ -790,19 +786,27 @@ module.exports = React.createClass({
|
|||
dis.dispatch({action: 'view_set_mxid'});
|
||||
return;
|
||||
}
|
||||
// Dialog shows inverse of m.federate (noFederate) strict false check to skip undefined check (default = true)
|
||||
const defaultNoFederate = this.props.config.default_federate === false;
|
||||
const TextInputWithCheckboxDialog = sdk.getComponent("dialogs.TextInputWithCheckboxDialog");
|
||||
Modal.createDialog(TextInputWithCheckboxDialog, {
|
||||
title: _t('Create Room'),
|
||||
description: _t('Room name (optional)'),
|
||||
button: _t('Create Room'),
|
||||
// TODO i18n below.
|
||||
check: this.getDefaultFederate(),
|
||||
checkLabel: 'Federate room in domain ' + MatrixClientPeg.get().getDomain(),
|
||||
onFinished: (shouldCreate, name, federate) => {
|
||||
check: defaultNoFederate,
|
||||
checkLabel: <span>
|
||||
{_t('Block users on other matrix homeservers from joining this room')}
|
||||
<br/>
|
||||
({_t('This setting cannot be changed later!')})
|
||||
</span>,
|
||||
onFinished: (shouldCreate, name, noFederate) => {
|
||||
if (shouldCreate) {
|
||||
const createOpts = {};
|
||||
const createOpts = {
|
||||
creation_content: {
|
||||
"m.federate": !noFederate,
|
||||
},
|
||||
};
|
||||
if (name) createOpts.name = name;
|
||||
if (federate) createOpts.creation_content = {"m.federate": federate};
|
||||
createRoom({createOpts}).done();
|
||||
}
|
||||
},
|
||||
|
|
|
@ -16,6 +16,7 @@ limitations under the License.
|
|||
|
||||
import React from 'react';
|
||||
import sdk from '../../../index';
|
||||
import { _t } from '../../../languageHandler';
|
||||
|
||||
export default React.createClass({
|
||||
displayName: 'TextInputWithCheckboxDialog',
|
||||
|
@ -28,7 +29,10 @@ export default React.createClass({
|
|||
value: React.PropTypes.string,
|
||||
button: React.PropTypes.string,
|
||||
focus: React.PropTypes.bool,
|
||||
checkLabel: React.PropTypes.string,
|
||||
checkLabel: React.PropTypes.oneOfType([
|
||||
React.PropTypes.element,
|
||||
React.PropTypes.string,
|
||||
]),
|
||||
check: React.PropTypes.bool,
|
||||
onFinished: React.PropTypes.func.isRequired,
|
||||
},
|
||||
|
@ -38,16 +42,9 @@ export default React.createClass({
|
|||
title: "",
|
||||
value: "",
|
||||
description: "",
|
||||
button: "OK",
|
||||
focus: true,
|
||||
checkLabel: "",
|
||||
check: true,
|
||||
};
|
||||
},
|
||||
|
||||
getInitialState: function() {
|
||||
return {
|
||||
isChecked: this.props.check,
|
||||
check: false,
|
||||
};
|
||||
},
|
||||
|
||||
|
@ -59,20 +56,13 @@ export default React.createClass({
|
|||
},
|
||||
|
||||
onOk: function() {
|
||||
this.props.onFinished(true, this.refs.textinput.value, this.state.isChecked);
|
||||
this.props.onFinished(true, this.refs.textinput.value, this.refs.checkbox.value);
|
||||
},
|
||||
|
||||
onCancel: function() {
|
||||
this.props.onFinished(false);
|
||||
},
|
||||
|
||||
_onToggle: function(keyName, checkedValue, uncheckedValue, ev) {
|
||||
console.log("Checkbox toggle: %s %s", keyName, ev.target.checked);
|
||||
var state = {};
|
||||
state[keyName] = ev.target.checked ? checkedValue : uncheckedValue;
|
||||
this.setState(state);
|
||||
},
|
||||
|
||||
render: function() {
|
||||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
||||
return (
|
||||
|
@ -87,16 +77,15 @@ export default React.createClass({
|
|||
<div>
|
||||
<input id="textinput" ref="textinput" className="mx_TextInputWithCheckboxDialog_input" defaultValue={this.props.value} autoFocus={this.props.focus} size="64" onKeyDown={this.onKeyDown}/>
|
||||
</div>
|
||||
<br/>
|
||||
<label>
|
||||
<input type="checkbox" id="checkbox" ref="checkbox"
|
||||
onChange={ this._onToggle.bind(this, "isChecked", true, false)}
|
||||
checked={this.state.isChecked}/>
|
||||
{this.props.checkLabel}?
|
||||
<input type="checkbox" id="checkbox" ref="checkbox" defaultChecked={this.props.check}/>
|
||||
{this.props.checkLabel}
|
||||
</label>
|
||||
</div>
|
||||
<div className="mx_Dialog_buttons">
|
||||
<button onClick={this.onCancel}>
|
||||
Cancel
|
||||
{ _t("Cancel") }
|
||||
</button>
|
||||
<button className="mx_Dialog_primary" onClick={this.onOk}>
|
||||
{this.props.button}
|
||||
|
|
|
@ -184,6 +184,8 @@
|
|||
"Banned users": "Banned users",
|
||||
"Bans user with given id": "Bans user with given id",
|
||||
"Blacklisted": "Blacklisted",
|
||||
"Block users on other matrix homeservers from joining this room": "Block users on other matrix homeservers from joining this room",
|
||||
"This setting cannot be changed later!": "This setting cannot be changed later!",
|
||||
"Bug Report": "Bug Report",
|
||||
"Bulk Options": "Bulk Options",
|
||||
"Call Timeout": "Call Timeout",
|
||||
|
|
Loading…
Reference in a new issue