Bring over the deactivate account button
This commit is contained in:
parent
3f897468a6
commit
7fb0cd6c42
2 changed files with 20 additions and 5 deletions
|
@ -29,6 +29,8 @@ import * as languageHandler from "../../../../languageHandler";
|
||||||
import {SettingLevel} from "../../../../settings/SettingsStore";
|
import {SettingLevel} from "../../../../settings/SettingsStore";
|
||||||
import SettingsStore from "../../../../settings/SettingsStore";
|
import SettingsStore from "../../../../settings/SettingsStore";
|
||||||
import LanguageDropdown from "../../elements/LanguageDropdown";
|
import LanguageDropdown from "../../elements/LanguageDropdown";
|
||||||
|
import AccessibleButton from "../../elements/AccessibleButton";
|
||||||
|
import DeactivateAccountDialog from "../../dialogs/DeactivateAccountDialog";
|
||||||
const PlatformPeg = require("../../../../PlatformPeg");
|
const PlatformPeg = require("../../../../PlatformPeg");
|
||||||
const sdk = require('../../../../index');
|
const sdk = require('../../../../index');
|
||||||
const Modal = require("../../../../Modal");
|
const Modal = require("../../../../Modal");
|
||||||
|
@ -98,6 +100,10 @@ export default class GeneralSettingsTab extends React.Component {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
_onDeactivateClicked = () => {
|
||||||
|
Modal.createTrackedDialog('Deactivate Account', '', DeactivateAccountDialog, {});
|
||||||
|
};
|
||||||
|
|
||||||
_renderProfileSection() {
|
_renderProfileSection() {
|
||||||
// HACK/TODO: Using DragDropContext feels wrong, but we need it.
|
// HACK/TODO: Using DragDropContext feels wrong, but we need it.
|
||||||
return (
|
return (
|
||||||
|
@ -171,10 +177,16 @@ export default class GeneralSettingsTab extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
_renderManagementSection() {
|
_renderManagementSection() {
|
||||||
|
// TODO: Improve warning text for account deactivation
|
||||||
return (
|
return (
|
||||||
<div className="mx_SettingsTab_section">
|
<div className="mx_SettingsTab_section">
|
||||||
<span className="mx_SettingsTab_subheading">{_t("Account management")}</span>
|
<span className="mx_SettingsTab_subheading">{_t("Account management")}</span>
|
||||||
<p>MANAGEMENT SECTION</p>
|
<span className="mx_SettingsTab_subsectionText">
|
||||||
|
{_t("Deactivating your account is a permanent action - be careful!")}
|
||||||
|
</span>
|
||||||
|
<AccessibleButton onClick={this._onDeactivateClicked} kind="danger">
|
||||||
|
{_t("Close Account")}
|
||||||
|
</AccessibleButton>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -413,6 +413,7 @@
|
||||||
"Off": "Off",
|
"Off": "Off",
|
||||||
"On": "On",
|
"On": "On",
|
||||||
"Noisy": "Noisy",
|
"Noisy": "Noisy",
|
||||||
|
"Unable to verify phone number.": "Unable to verify phone number.",
|
||||||
"Verification code": "Verification code",
|
"Verification code": "Verification code",
|
||||||
"Phone Number": "Phone Number",
|
"Phone Number": "Phone Number",
|
||||||
"Profile picture": "Profile picture",
|
"Profile picture": "Profile picture",
|
||||||
|
@ -430,7 +431,13 @@
|
||||||
"Phone numbers": "Phone numbers",
|
"Phone numbers": "Phone numbers",
|
||||||
"Language and region": "Language and region",
|
"Language and region": "Language and region",
|
||||||
"Theme": "Theme",
|
"Theme": "Theme",
|
||||||
|
"Light theme": "Light theme",
|
||||||
|
"Dark theme": "Dark theme",
|
||||||
|
"2018 theme": "2018 theme",
|
||||||
|
"Status.im theme": "Status.im theme",
|
||||||
"Account management": "Account management",
|
"Account management": "Account management",
|
||||||
|
"Deactivating your account is a permanent action - be careful!": "Deactivating your account is a permanent action - be careful!",
|
||||||
|
"Close Account": "Close Account",
|
||||||
"General": "General",
|
"General": "General",
|
||||||
"Cannot add any more widgets": "Cannot add any more widgets",
|
"Cannot add any more widgets": "Cannot add any more widgets",
|
||||||
"The maximum permitted number of widgets have already been added to this room.": "The maximum permitted number of widgets have already been added to this room.",
|
"The maximum permitted number of widgets have already been added to this room.": "The maximum permitted number of widgets have already been added to this room.",
|
||||||
|
@ -1254,10 +1261,6 @@
|
||||||
"Uploading %(filename)s and %(count)s others|other": "Uploading %(filename)s and %(count)s others",
|
"Uploading %(filename)s and %(count)s others|other": "Uploading %(filename)s and %(count)s others",
|
||||||
"Uploading %(filename)s and %(count)s others|zero": "Uploading %(filename)s",
|
"Uploading %(filename)s and %(count)s others|zero": "Uploading %(filename)s",
|
||||||
"Uploading %(filename)s and %(count)s others|one": "Uploading %(filename)s and %(count)s other",
|
"Uploading %(filename)s and %(count)s others|one": "Uploading %(filename)s and %(count)s other",
|
||||||
"Light theme": "Light theme",
|
|
||||||
"Dark theme": "Dark theme",
|
|
||||||
"2018 theme": "2018 theme",
|
|
||||||
"Status.im theme": "Status.im theme",
|
|
||||||
"Can't load user settings": "Can't load user settings",
|
"Can't load user settings": "Can't load user settings",
|
||||||
"Server may be unavailable or overloaded": "Server may be unavailable or overloaded",
|
"Server may be unavailable or overloaded": "Server may be unavailable or overloaded",
|
||||||
"Remove Contact Information?": "Remove Contact Information?",
|
"Remove Contact Information?": "Remove Contact Information?",
|
||||||
|
|
Loading…
Reference in a new issue