2019-01-23 17:32:27 -07:00
|
|
|
/*
|
|
|
|
|
Copyright 2019 New Vector 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
2019-02-22 10:47:18 -07:00
|
|
|
import {_t} from "../../../../../languageHandler";
|
2019-01-23 17:32:27 -07:00
|
|
|
import PropTypes from "prop-types";
|
2019-02-22 10:47:18 -07:00
|
|
|
import SettingsStore, {SettingLevel} from "../../../../../settings/SettingsStore";
|
|
|
|
|
import LabelledToggleSwitch from "../../../elements/LabelledToggleSwitch";
|
|
|
|
|
const sdk = require("../../../../..");
|
2019-01-23 17:32:27 -07:00
|
|
|
|
|
|
|
|
export class LabsSettingToggle extends React.Component {
|
|
|
|
|
static propTypes = {
|
|
|
|
|
featureId: PropTypes.string.isRequired,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
_onChange = async (checked) => {
|
|
|
|
|
await SettingsStore.setFeatureEnabled(this.props.featureId, checked);
|
|
|
|
|
this.forceUpdate();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
render() {
|
2019-08-21 08:55:19 -06:00
|
|
|
const label = SettingsStore.getDisplayName(this.props.featureId);
|
2019-01-23 17:32:27 -07:00
|
|
|
const value = SettingsStore.isFeatureEnabled(this.props.featureId);
|
2019-01-23 20:26:00 -07:00
|
|
|
return <LabelledToggleSwitch value={value} label={label} onChange={this._onChange} />;
|
2019-01-23 17:32:27 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-22 10:47:18 -07:00
|
|
|
export default class LabsUserSettingsTab extends React.Component {
|
2019-01-23 17:32:27 -07:00
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
2019-01-24 12:38:48 -07:00
|
|
|
const SettingsFlag = sdk.getComponent("views.elements.SettingsFlag");
|
2019-01-23 17:32:27 -07:00
|
|
|
const flags = SettingsStore.getLabsFeatures().map(f => <LabsSettingToggle featureId={f} key={f} />);
|
|
|
|
|
return (
|
|
|
|
|
<div className="mx_SettingsTab">
|
|
|
|
|
<div className="mx_SettingsTab_heading">{_t("Labs")}</div>
|
2019-11-26 14:31:11 -06:00
|
|
|
<div className='mx_SettingsTab_subsectionText'>
|
|
|
|
|
{
|
|
|
|
|
_t('These are experimental features. For more information on what ' +
|
|
|
|
|
'these options do see <a>the documentation</a>.', {}, {
|
|
|
|
|
'a': (sub) => <a href="https://github.com/vector-im/riot-web/blob/develop/docs/labs.md"
|
|
|
|
|
rel='noopener' target='_blank'>{sub}</a>,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</div>
|
2019-01-23 17:32:27 -07:00
|
|
|
<div className="mx_SettingsTab_section">
|
|
|
|
|
{flags}
|
2019-01-24 12:38:48 -07:00
|
|
|
<SettingsFlag name={"enableWidgetScreenshots"} level={SettingLevel.ACCOUNT} />
|
2019-05-17 17:43:08 +01:00
|
|
|
<SettingsFlag name={"showHiddenEventsInTimeline"} level={SettingLevel.DEVICE} />
|
2019-05-30 19:57:17 -06:00
|
|
|
<SettingsFlag name={"lowBandwidth"} level={SettingLevel.DEVICE} />
|
2019-09-05 20:30:19 -06:00
|
|
|
<SettingsFlag name={"sendReadReceipts"} level={SettingLevel.ACCOUNT} />
|
2019-01-23 17:32:27 -07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|