* inline call to `SettingsStore.isEnabled` * Remove confusing `SettingsStore.isEnabled` This was basically the same as `SettingsStore.canSetValue` only more confusing, so let's get rid of it. * Add `configDisablesSetting` value for Settings The current magic where this only works for features (but not beta features!) is, well, magical. And I need more flexibility here. * Remove redundant levels constant `LEVELS_FEATURE` I don't know if this was ever intended to have different semantics to `LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG`, but if it was, those semantics shuold have been written down. They now seem to be used entirely interchangably.
42 lines
1.6 KiB
TypeScript
42 lines
1.6 KiB
TypeScript
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
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 { _t } from "../../../languageHandler";
|
|
import { SettingLevel } from "../../../settings/SettingLevel";
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
|
import SettingsFlag from "../elements/SettingsFlag";
|
|
import SettingsSubsection, { SettingsSubsectionText } from "./shared/SettingsSubsection";
|
|
|
|
const SETTING_MANUALLY_VERIFY_ALL_SESSIONS = "e2ee.manuallyVerifyAllSessions";
|
|
|
|
const E2eAdvancedPanel: React.FC = () => {
|
|
return (
|
|
<SettingsSubsection heading={_t("settings|security|encryption_section")}>
|
|
<SettingsFlag name={SETTING_MANUALLY_VERIFY_ALL_SESSIONS} level={SettingLevel.DEVICE} />
|
|
<SettingsSubsectionText>
|
|
{_t("settings|security|encryption_individual_verification_mode")}
|
|
</SettingsSubsectionText>
|
|
</SettingsSubsection>
|
|
);
|
|
};
|
|
|
|
export default E2eAdvancedPanel;
|
|
|
|
export function isE2eAdvancedPanelPossible(): boolean {
|
|
return SettingsStore.canSetValue(SETTING_MANUALLY_VERIFY_ALL_SESSIONS, null, SettingLevel.DEVICE);
|
|
}
|