Rearrange backup status to always have advanced
This commit is contained in:
parent
cc2c179a0f
commit
b484bc5e09
2 changed files with 38 additions and 36 deletions
|
@ -165,24 +165,28 @@ export default class SecureBackupPanel extends React.PureComponent {
|
||||||
render() {
|
render() {
|
||||||
const Spinner = sdk.getComponent("elements.Spinner");
|
const Spinner = sdk.getComponent("elements.Spinner");
|
||||||
const AccessibleButton = sdk.getComponent("elements.AccessibleButton");
|
const AccessibleButton = sdk.getComponent("elements.AccessibleButton");
|
||||||
const featureDescription = _t(
|
|
||||||
"Back up your encryption keys with your account data in case you " +
|
const {
|
||||||
"lose access to your sessions. Your keys will be secured with a " +
|
loading,
|
||||||
"unique Recovery Key.",
|
error,
|
||||||
);
|
backupInfo,
|
||||||
|
backupSigStatus,
|
||||||
|
backupKeyStored,
|
||||||
|
sessionsRemaining,
|
||||||
|
} = this.state;
|
||||||
|
|
||||||
let statusDescription;
|
let statusDescription;
|
||||||
let details;
|
let extraDetails;
|
||||||
let actions;
|
let actions;
|
||||||
if (this.state.error) {
|
if (error) {
|
||||||
statusDescription = (
|
statusDescription = (
|
||||||
<div className="error">
|
<div className="error">
|
||||||
{_t("Unable to load key backup status")}
|
{_t("Unable to load key backup status")}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
} else if (this.state.loading) {
|
} else if (loading) {
|
||||||
statusDescription = <Spinner />;
|
statusDescription = <Spinner />;
|
||||||
} else if (this.state.backupInfo) {
|
} else if (backupInfo) {
|
||||||
let restoreButtonCaption = _t("Restore from Backup");
|
let restoreButtonCaption = _t("Restore from Backup");
|
||||||
|
|
||||||
if (MatrixClientPeg.get().getKeyBackupEnabled()) {
|
if (MatrixClientPeg.get().getKeyBackupEnabled()) {
|
||||||
|
@ -203,15 +207,7 @@ export default class SecureBackupPanel extends React.PureComponent {
|
||||||
restoreButtonCaption = _t("Connect this session to Key Backup");
|
restoreButtonCaption = _t("Connect this session to Key Backup");
|
||||||
}
|
}
|
||||||
|
|
||||||
let keyStatus;
|
|
||||||
if (this.state.backupKeyStored === true) {
|
|
||||||
keyStatus = _t("in secret storage");
|
|
||||||
} else {
|
|
||||||
keyStatus = _t("not stored");
|
|
||||||
}
|
|
||||||
|
|
||||||
let uploadStatus;
|
let uploadStatus;
|
||||||
const { sessionsRemaining } = this.state;
|
|
||||||
if (!MatrixClientPeg.get().getKeyBackupEnabled()) {
|
if (!MatrixClientPeg.get().getKeyBackupEnabled()) {
|
||||||
// No upload status to show when backup disabled.
|
// No upload status to show when backup disabled.
|
||||||
uploadStatus = "";
|
uploadStatus = "";
|
||||||
|
@ -225,7 +221,7 @@ export default class SecureBackupPanel extends React.PureComponent {
|
||||||
</div>;
|
</div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
let backupSigStatuses = this.state.backupSigStatus.sigs.map((sig, i) => {
|
let backupSigStatuses = backupSigStatus.sigs.map((sig, i) => {
|
||||||
const deviceName = sig.device ? (sig.device.getDisplayName() || sig.device.deviceId) : null;
|
const deviceName = sig.device ? (sig.device.getDisplayName() || sig.device.deviceId) : null;
|
||||||
const validity = sub =>
|
const validity = sub =>
|
||||||
<span className={sig.valid ? 'mx_SecureBackupPanel_sigValid' : 'mx_SecureBackupPanel_sigInvalid'}>
|
<span className={sig.valid ? 'mx_SecureBackupPanel_sigValid' : 'mx_SecureBackupPanel_sigInvalid'}>
|
||||||
|
@ -306,12 +302,12 @@ export default class SecureBackupPanel extends React.PureComponent {
|
||||||
{sigStatus}
|
{sigStatus}
|
||||||
</div>;
|
</div>;
|
||||||
});
|
});
|
||||||
if (this.state.backupSigStatus.sigs.length === 0) {
|
if (backupSigStatus.sigs.length === 0) {
|
||||||
backupSigStatuses = _t("Backup is not signed by any of your sessions");
|
backupSigStatuses = _t("Backup is not signed by any of your sessions");
|
||||||
}
|
}
|
||||||
|
|
||||||
let trustedLocally;
|
let trustedLocally;
|
||||||
if (this.state.backupSigStatus.trusted_locally) {
|
if (backupSigStatus.trusted_locally) {
|
||||||
trustedLocally = _t("This backup is trusted because it has been restored on this session");
|
trustedLocally = _t("This backup is trusted because it has been restored on this session");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,17 +318,13 @@ export default class SecureBackupPanel extends React.PureComponent {
|
||||||
</AccessibleButton>;
|
</AccessibleButton>;
|
||||||
}
|
}
|
||||||
|
|
||||||
details = (
|
extraDetails = <>
|
||||||
<details>
|
<div>{_t("Backup version: ")}{backupInfo.version}</div>
|
||||||
<summary>{_t("Advanced")}</summary>
|
<div>{_t("Algorithm: ")}{backupInfo.algorithm}</div>
|
||||||
<div>{_t("Backup version: ")}{this.state.backupInfo.version}</div>
|
{uploadStatus}
|
||||||
<div>{_t("Algorithm: ")}{this.state.backupInfo.algorithm}</div>
|
<div>{backupSigStatuses}</div>
|
||||||
<div>{_t("Backup key stored: ")}{keyStatus}</div>
|
<div>{trustedLocally}</div>
|
||||||
{uploadStatus}
|
</>;
|
||||||
<div>{backupSigStatuses}</div>
|
|
||||||
<div>{trustedLocally}</div>
|
|
||||||
</details>
|
|
||||||
);
|
|
||||||
|
|
||||||
actions = (
|
actions = (
|
||||||
<div className="mx_SecureBackupPanel_buttonRow">
|
<div className="mx_SecureBackupPanel_buttonRow">
|
||||||
|
@ -361,9 +353,19 @@ export default class SecureBackupPanel extends React.PureComponent {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<p>{featureDescription}</p>
|
<p>{_t(
|
||||||
|
"Back up your encryption keys with your account data in case you " +
|
||||||
|
"lose access to your sessions. Your keys will be secured with a " +
|
||||||
|
"unique Recovery Key.",
|
||||||
|
)}</p>
|
||||||
{statusDescription}
|
{statusDescription}
|
||||||
{details}
|
<details>
|
||||||
|
<summary>{_t("Advanced")}</summary>
|
||||||
|
<div>{_t("Backup key stored: ")}{
|
||||||
|
backupKeyStored === true ? _t("in secret storage") : _t("not stored")
|
||||||
|
}</div>
|
||||||
|
{extraDetails}
|
||||||
|
</details>
|
||||||
{actions}
|
{actions}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -730,14 +730,12 @@
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"Delete Backup": "Delete Backup",
|
"Delete Backup": "Delete Backup",
|
||||||
"Are you sure? You will lose your encrypted messages if your keys are not backed up properly.": "Are you sure? You will lose your encrypted messages if your keys are not backed up properly.",
|
"Are you sure? You will lose your encrypted messages if your keys are not backed up properly.": "Are you sure? You will lose your encrypted messages if your keys are not backed up properly.",
|
||||||
"Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Recovery Key.": "Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Recovery Key.",
|
|
||||||
"Unable to load key backup status": "Unable to load key backup status",
|
"Unable to load key backup status": "Unable to load key backup status",
|
||||||
"Restore from Backup": "Restore from Backup",
|
"Restore from Backup": "Restore from Backup",
|
||||||
"This session is backing up your keys. ": "This session is backing up your keys. ",
|
"This session is backing up your keys. ": "This session is backing up your keys. ",
|
||||||
"This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.": "This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.",
|
"This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.": "This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.",
|
||||||
"Connect this session to key backup before signing out to avoid losing any keys that may only be on this session.": "Connect this session to key backup before signing out to avoid losing any keys that may only be on this session.",
|
"Connect this session to key backup before signing out to avoid losing any keys that may only be on this session.": "Connect this session to key backup before signing out to avoid losing any keys that may only be on this session.",
|
||||||
"Connect this session to Key Backup": "Connect this session to Key Backup",
|
"Connect this session to Key Backup": "Connect this session to Key Backup",
|
||||||
"not stored": "not stored",
|
|
||||||
"Backing up %(sessionsRemaining)s keys...": "Backing up %(sessionsRemaining)s keys...",
|
"Backing up %(sessionsRemaining)s keys...": "Backing up %(sessionsRemaining)s keys...",
|
||||||
"All keys backed up": "All keys backed up",
|
"All keys backed up": "All keys backed up",
|
||||||
"Backup has a <validity>valid</validity> signature from this user": "Backup has a <validity>valid</validity> signature from this user",
|
"Backup has a <validity>valid</validity> signature from this user": "Backup has a <validity>valid</validity> signature from this user",
|
||||||
|
@ -754,10 +752,12 @@
|
||||||
"This backup is trusted because it has been restored on this session": "This backup is trusted because it has been restored on this session",
|
"This backup is trusted because it has been restored on this session": "This backup is trusted because it has been restored on this session",
|
||||||
"Backup version: ": "Backup version: ",
|
"Backup version: ": "Backup version: ",
|
||||||
"Algorithm: ": "Algorithm: ",
|
"Algorithm: ": "Algorithm: ",
|
||||||
"Backup key stored: ": "Backup key stored: ",
|
|
||||||
"Your keys are <b>not being backed up from this session</b>.": "Your keys are <b>not being backed up from this session</b>.",
|
"Your keys are <b>not being backed up from this session</b>.": "Your keys are <b>not being backed up from this session</b>.",
|
||||||
"Back up your keys before signing out to avoid losing them.": "Back up your keys before signing out to avoid losing them.",
|
"Back up your keys before signing out to avoid losing them.": "Back up your keys before signing out to avoid losing them.",
|
||||||
"Start using Key Backup": "Start using Key Backup",
|
"Start using Key Backup": "Start using Key Backup",
|
||||||
|
"Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Recovery Key.": "Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Recovery Key.",
|
||||||
|
"Backup key stored: ": "Backup key stored: ",
|
||||||
|
"not stored": "not stored",
|
||||||
"Identity Server URL must be HTTPS": "Identity Server URL must be HTTPS",
|
"Identity Server URL must be HTTPS": "Identity Server URL must be HTTPS",
|
||||||
"Not a valid Identity Server (status code %(code)s)": "Not a valid Identity Server (status code %(code)s)",
|
"Not a valid Identity Server (status code %(code)s)": "Not a valid Identity Server (status code %(code)s)",
|
||||||
"Could not connect to Identity Server": "Could not connect to Identity Server",
|
"Could not connect to Identity Server": "Could not connect to Identity Server",
|
||||||
|
|
Loading…
Reference in a new issue