lbry-desktop/ui/modal/modalError/view.jsx
infinite-persistence ad07ee0de3
Error: add support to log additional info (not shown in Modal)
`doError` supported either a string or object, and so far there are no instances where the object version is used, so this enhancement should be safe to do without affecting anyone.

## Change
For the object version, support an additional `cause` parameter that will be logged but not show in the GUI.
2022-01-06 15:39:50 +08:00

80 lines
2.5 KiB
JavaScript

// @flow
import { Lbryio } from 'lbryinc';
import React from 'react';
import { Modal } from 'modal/modal';
// Note: It accepts an object for 'error', but never pass Error itself as Error
// cannot be stringified (unless the code below is updated to handle that).
type Props = {
error: string | { message: string, cause?: any },
closeModal: () => void,
};
class ModalError extends React.PureComponent<Props> {
componentDidMount() {
const { error } = this.props;
// Yuck
// https://github.com/lbryio/lbry-sdk/issues/1118
// The sdk logs failed downloads, they happen so often that it's mostly noise in the desktop logs
let errorMessage = typeof error === 'string' ? error : error.message;
const skipLog =
errorMessage.startsWith('Failed to download') ||
errorMessage.endsWith('Uploading the same file from multiple tabs or windows is not allowed.');
if (error.cause) {
try {
errorMessage += ' => ' + (JSON.stringify(error.cause, null, '\t') || '');
} catch (e) {
console.error(e); // eslint-disable-line no-console
}
}
if (process.env.NODE_ENV === 'production' && !skipLog) {
Lbryio.call('event', 'desktop_error', { error_message: errorMessage });
}
}
render() {
const { closeModal, error } = this.props;
const errorObj = typeof error === 'string' ? { message: error, cause: undefined } : error;
const errorKeyLabels = {
connectionString: __('API connection string'),
method: __('Method'),
params: __('Parameters'),
code: __('Error code'),
message: __('Error message'),
data: __('Error data'),
cause: 'skip',
};
const errorInfoList = [];
for (const key of Object.keys(errorObj)) {
const label = errorKeyLabels[key];
if (label !== 'skip') {
const val = typeof errorObj[key] === 'string' ? errorObj[key] : JSON.stringify(errorObj[key]);
errorInfoList.push(
<li key={key}>
<strong>{label}</strong>: {val}
</li>
);
}
}
return (
<Modal isOpen contentLabel={__('Error')} title={__('Error')} className="error-modal" onConfirmed={closeModal}>
<p>
{__(
"We're sorry that Odysee has encountered an error. Please try again or reach out to hello@odysee.com with detailed information."
)}
</p>
<ul className="error-modal__error-list ul--no-style">{errorInfoList}</ul>
</Modal>
);
}
}
export default ModalError;