2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
2019-10-20 16:59:02 +02:00
|
|
|
import React from "react";
|
|
|
|
|
import { BackendError } from "./errors";
|
|
|
|
|
import Notification from "./Notification";
|
2019-02-26 17:08:33 +01:00
|
|
|
|
2019-10-23 15:47:08 +02:00
|
|
|
import { WithTranslation, withTranslation } from "react-i18next";
|
2019-02-26 17:08:33 +01:00
|
|
|
|
2019-10-23 15:47:08 +02:00
|
|
|
type Props = WithTranslation & {
|
2019-10-19 16:38:07 +02:00
|
|
|
error: BackendError;
|
|
|
|
|
};
|
2019-02-26 17:08:33 +01:00
|
|
|
|
2019-03-01 13:16:54 +01:00
|
|
|
class BackendErrorNotification extends React.Component<Props> {
|
2019-02-26 17:08:33 +01:00
|
|
|
constructor(props: Props) {
|
|
|
|
|
super(props);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
2019-02-27 14:28:20 +01:00
|
|
|
<Notification type="danger">
|
2019-03-01 13:16:54 +01:00
|
|
|
<div className="content">
|
|
|
|
|
<p className="subtitle">{this.renderErrorName()}</p>
|
|
|
|
|
<p>{this.renderErrorDescription()}</p>
|
2020-11-10 08:33:22 +01:00
|
|
|
{this.renderAdditionalMessages()}
|
2019-03-04 11:09:12 +01:00
|
|
|
<p>{this.renderViolations()}</p>
|
2019-03-01 13:16:54 +01:00
|
|
|
{this.renderMetadata()}
|
|
|
|
|
</div>
|
2019-02-27 14:28:20 +01:00
|
|
|
</Notification>
|
2019-02-26 17:08:33 +01:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-01 13:16:54 +01:00
|
|
|
renderErrorName = () => {
|
2019-02-26 17:08:33 +01:00
|
|
|
const { error, t } = this.props;
|
2020-11-10 08:33:22 +01:00
|
|
|
const translation = t(`errors.${error.errorCode}.displayName`);
|
2019-02-26 17:08:33 +01:00
|
|
|
if (translation === error.errorCode) {
|
|
|
|
|
return error.message;
|
|
|
|
|
}
|
|
|
|
|
return translation;
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-01 13:16:54 +01:00
|
|
|
renderErrorDescription = () => {
|
2019-02-27 10:45:10 +01:00
|
|
|
const { error, t } = this.props;
|
2020-11-10 08:33:22 +01:00
|
|
|
const translation = t(`errors.${error.errorCode}.description`);
|
2019-03-01 13:16:54 +01:00
|
|
|
if (translation === error.errorCode) {
|
2019-10-20 16:59:02 +02:00
|
|
|
return "";
|
2019-02-26 17:08:33 +01:00
|
|
|
}
|
2019-03-01 13:16:54 +01:00
|
|
|
return translation;
|
|
|
|
|
};
|
|
|
|
|
|
2020-11-10 08:33:22 +01:00
|
|
|
renderAdditionalMessages = () => {
|
|
|
|
|
const { error, t } = this.props;
|
|
|
|
|
if (error.additionalMessages) {
|
|
|
|
|
return error.additionalMessages.map(a => a.key ? t(`errors.${a.key}.description`) : a.message).map(m => <p>{m}</p>);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-04 11:09:12 +01:00
|
|
|
renderViolations = () => {
|
|
|
|
|
const { error, t } = this.props;
|
|
|
|
|
if (error.violations) {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<p>
|
2019-10-20 16:59:02 +02:00
|
|
|
<strong>{t("errors.violations")}</strong>
|
2019-03-04 11:09:12 +01:00
|
|
|
</p>
|
|
|
|
|
<ul>
|
|
|
|
|
{error.violations.map((violation, index) => {
|
|
|
|
|
return (
|
|
|
|
|
<li key={index}>
|
2020-01-15 17:38:11 +01:00
|
|
|
{violation.path && <strong>{violation.path}:</strong>} {violation.message}{" "}
|
|
|
|
|
{violation.key && t(violation.key)}
|
2019-03-04 11:09:12 +01:00
|
|
|
</li>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</ul>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-01 13:16:54 +01:00
|
|
|
renderMetadata = () => {
|
|
|
|
|
const { error, t } = this.props;
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2019-03-04 11:19:33 +01:00
|
|
|
{this.renderContext()}
|
|
|
|
|
{this.renderMoreInformationLink()}
|
2019-03-04 08:44:41 +01:00
|
|
|
<div className="level is-size-7">
|
|
|
|
|
<div className="left">
|
2019-10-20 16:59:02 +02:00
|
|
|
{t("errors.transactionId")} {error.transactionId}
|
2019-03-04 08:44:41 +01:00
|
|
|
</div>
|
|
|
|
|
<div className="right">
|
2019-10-20 16:59:02 +02:00
|
|
|
{t("errors.errorCode")} {error.errorCode}
|
2019-03-04 08:44:41 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-04 11:19:33 +01:00
|
|
|
renderContext = () => {
|
2019-10-19 16:38:07 +02:00
|
|
|
const { error, t } = this.props;
|
2019-03-04 08:44:41 +01:00
|
|
|
if (error.context) {
|
2019-03-04 11:09:12 +01:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<p>
|
2019-10-20 16:59:02 +02:00
|
|
|
<strong>{t("errors.context")}</strong>
|
2019-03-04 11:09:12 +01:00
|
|
|
</p>
|
|
|
|
|
<ul>
|
|
|
|
|
{error.context.map((context, index) => {
|
|
|
|
|
return (
|
|
|
|
|
<li key={index}>
|
|
|
|
|
<strong>{context.type}:</strong> {context.id}
|
|
|
|
|
</li>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</ul>
|
|
|
|
|
</>
|
|
|
|
|
);
|
2019-03-04 08:44:41 +01:00
|
|
|
}
|
2019-02-26 17:08:33 +01:00
|
|
|
};
|
|
|
|
|
|
2019-03-04 11:19:33 +01:00
|
|
|
renderMoreInformationLink = () => {
|
|
|
|
|
const { error, t } = this.props;
|
2019-02-26 17:08:33 +01:00
|
|
|
if (error.url) {
|
|
|
|
|
return (
|
|
|
|
|
<p>
|
2019-10-20 16:59:02 +02:00
|
|
|
{t("errors.moreInfo")}{" "}
|
2019-02-26 17:08:33 +01:00
|
|
|
<a href={error.url} target="_blank">
|
|
|
|
|
{error.errorCode}
|
|
|
|
|
</a>
|
|
|
|
|
</p>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-23 15:47:08 +02:00
|
|
|
export default withTranslation("plugins")(BackendErrorNotification);
|