mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 21:11:56 +03:00
cb17c0a379
This currently causes a split-brain scenario for the application due to the priority of each level. Granular settings assumes a simple override, however the crypto setting wants per room to be overriden with the global setting, regardless of the room setting. Some additional comments are needed on the intended behaviour. Signed-off-by: Travis Ralston <travpc@gmail.com>
110 lines
3.6 KiB
JavaScript
110 lines
3.6 KiB
JavaScript
/*
|
|
Copyright 2017 Travis Ralston
|
|
|
|
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 SettingsStore from "../../../settings/SettingsStore";
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'SettingsFlag',
|
|
propTypes: {
|
|
name: React.PropTypes.string.isRequired,
|
|
level: React.PropTypes.string.isRequired,
|
|
roomId: React.PropTypes.string, // for per-room settings
|
|
label: React.PropTypes.string, // untranslated
|
|
onChange: React.PropTypes.func,
|
|
isExplicit: React.PropTypes.bool,
|
|
manualSave: React.PropTypes.bool,
|
|
|
|
// If group is supplied, then this will create a radio button instead.
|
|
group: React.PropTypes.string,
|
|
value: React.PropTypes.any, // the value for the radio button
|
|
},
|
|
|
|
getInitialState: function() {
|
|
return {
|
|
value: SettingsStore.getValueAt(
|
|
this.props.level,
|
|
this.props.name,
|
|
this.props.roomId,
|
|
this.props.isExplicit,
|
|
),
|
|
};
|
|
},
|
|
|
|
onChange: function(e) {
|
|
if (this.props.group && !e.target.checked) return;
|
|
|
|
const newState = this.props.group ? this.props.value : e.target.checked;
|
|
if (!this.props.manualSave) this.save(newState);
|
|
else this.setState({ value: newState });
|
|
if (this.props.onChange) this.props.onChange(newState);
|
|
},
|
|
|
|
save: function(val = null) {
|
|
return SettingsStore.setValue(
|
|
this.props.name,
|
|
this.props.roomId,
|
|
this.props.level,
|
|
val ? val : this.state.value
|
|
);
|
|
},
|
|
|
|
render: function() {
|
|
const value = this.props.manualSave ? this.state.value : SettingsStore.getValueAt(
|
|
this.props.level,
|
|
this.props.name,
|
|
this.props.roomId,
|
|
this.props.isExplicit,
|
|
);
|
|
|
|
const canChange = SettingsStore.canSetValue(this.props.name, this.props.roomId, this.props.level);
|
|
|
|
let label = this.props.label;
|
|
if (!label) label = SettingsStore.getDisplayName(this.props.name, this.props.level);
|
|
else label = _t(label);
|
|
|
|
// We generate a relatively complex ID to avoid conflicts
|
|
const id = this.props.name + "_" + this.props.group + "_" + this.props.value + "_" + this.props.level;
|
|
let checkbox = (
|
|
<input id={id}
|
|
type="checkbox"
|
|
defaultChecked={value}
|
|
onChange={this.onChange}
|
|
disabled={!canChange}
|
|
/>
|
|
);
|
|
if (this.props.group) {
|
|
checkbox = (
|
|
<input id={id}
|
|
type="radio"
|
|
name={this.props.group}
|
|
value={this.props.value}
|
|
checked={value === this.props.value}
|
|
onChange={this.onChange}
|
|
disabled={!canChange}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<label>
|
|
{ checkbox }
|
|
{ label }
|
|
</label>
|
|
);
|
|
},
|
|
});
|