forked from matrix-org/matrix-react-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Notify user when crypto data is missing
If we have account data in local storage but nothing in the crypto store, it generally means the browser has evicted IndexedDB out from under us. This adds a modal to explain the situation and offer to completely clear storage to get things back to normal. Fixes element-hq/element-web#9109
- Loading branch information
Showing
5 changed files
with
120 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
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'; | ||
import PropTypes from 'prop-types'; | ||
import sdk from '../../../index'; | ||
import SdkConfig from '../../../SdkConfig'; | ||
import Modal from '../../../Modal'; | ||
import { _t } from '../../../languageHandler'; | ||
|
||
export default class StorageEvictedDialog extends React.Component { | ||
static propTypes = { | ||
onFinished: PropTypes.func.isRequired, | ||
}; | ||
|
||
_sendBugReport = () => { | ||
const BugReportDialog = sdk.getComponent("dialogs.BugReportDialog"); | ||
Modal.createTrackedDialog('Storage evicted', 'Send Bug Report Dialog', BugReportDialog, {}); | ||
}; | ||
|
||
_onClearStorageClick = () => { | ||
this.props.onFinished(true); | ||
}; | ||
|
||
render() { | ||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog'); | ||
const DialogButtons = sdk.getComponent('views.elements.DialogButtons'); | ||
|
||
let secondaryButton; | ||
let logRequest; | ||
if (SdkConfig.get().bug_report_endpoint_url) { | ||
secondaryButton = <button onClick={this._sendBugReport}> | ||
{_t("Send Logs")} | ||
</button>; | ||
logRequest = <p>{_t( | ||
"We'd like to find ways to avoid this happening in the future. " + | ||
"If you'd like to help, please consider sending logs as well.", | ||
)}</p>; | ||
} | ||
|
||
return ( | ||
<BaseDialog className="mx_ErrorDialog" onFinished={this.props.onFinished} | ||
title={_t('Some session data is missing')} | ||
contentId='mx_Dialog_content' | ||
hasCancel={false} | ||
> | ||
<div className="mx_Dialog_content" id='mx_Dialog_content'> | ||
<p>{_t( | ||
"Riot noticed that some session data, including encrypted " + | ||
"message keys, is missing from this device.", | ||
)}</p> | ||
<p>{_t( | ||
"Some browsers may remove this data without telling you or " + | ||
"Riot when your device is running low on free disk space.", | ||
)}</p> | ||
<p>{_t( | ||
"We recommend that you allow Riot to clear and rebuild " + | ||
"your session data. If you previously enabled Secure " + | ||
"Message Recovery, your encrypted message keys will be " + | ||
"restored from the most recent backup.", | ||
) }</p> | ||
{logRequest} | ||
</div> | ||
<DialogButtons primaryButton={_t("Clear and Rebuild Storage")} | ||
onPrimaryButtonClick={this._onSignOutClick} | ||
focus={true} | ||
hasCancel={false} | ||
> | ||
{ secondaryButton } | ||
</DialogButtons> | ||
</BaseDialog> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters