2020-03-23 15:35:58 +01:00
|
|
|
/*
|
2024-09-24 09:42:07 +02:00
|
|
|
* Copyright (c) 2020 - present Cloudogu GmbH
|
2020-03-23 15:35:58 +01:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify it under
|
|
|
|
|
* the terms of the GNU Affero General Public License as published by the Free
|
|
|
|
|
* Software Foundation, version 3.
|
2020-03-23 15:35:58 +01:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
|
|
|
* details.
|
2020-03-23 15:35:58 +01:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
2020-03-23 15:35:58 +01:00
|
|
|
*/
|
2024-09-24 09:42:07 +02:00
|
|
|
|
2023-01-12 14:01:04 +01:00
|
|
|
import React, { ComponentProps, FC } from "react";
|
2021-02-24 08:17:40 +01:00
|
|
|
import { BackendError } from "@scm-manager/ui-api";
|
2019-10-20 16:59:02 +02:00
|
|
|
import Notification from "./Notification";
|
2021-11-03 08:14:54 +01:00
|
|
|
import { useTranslation } from "react-i18next";
|
2019-02-26 17:08:33 +01:00
|
|
|
|
2023-01-12 14:01:04 +01:00
|
|
|
type Props = Omit<ComponentProps<typeof Notification>, "type" | "role"> & {
|
2019-10-19 16:38:07 +02:00
|
|
|
error: BackendError;
|
|
|
|
|
};
|
2019-02-26 17:08:33 +01:00
|
|
|
|
2024-01-24 10:38:17 +01:00
|
|
|
/**
|
|
|
|
|
* @deprecated Please import the identical module from "@scm-manager/ui-core"
|
|
|
|
|
*/
|
|
|
|
|
|
2023-01-12 14:01:04 +01:00
|
|
|
const BackendErrorNotification: FC<Props> = ({ error, ...props }) => {
|
2021-11-03 08:14:54 +01:00
|
|
|
const [t] = useTranslation("plugins");
|
2019-02-26 17:08:33 +01:00
|
|
|
|
2021-11-03 08:14:54 +01:00
|
|
|
const renderErrorName = () => {
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-03 08:14:54 +01:00
|
|
|
const renderErrorDescription = () => {
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-03 08:14:54 +01:00
|
|
|
const renderAdditionalMessages = () => {
|
2020-11-10 08:33:22 +01:00
|
|
|
if (error.additionalMessages) {
|
2020-11-11 11:37:24 +01:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<hr />
|
|
|
|
|
{error.additionalMessages
|
2021-11-03 08:14:54 +01:00
|
|
|
.map((additionalMessage) =>
|
2020-11-12 13:55:01 +01:00
|
|
|
additionalMessage.key ? t(`errors.${additionalMessage.key}.description`) : additionalMessage.message
|
|
|
|
|
)
|
2021-11-03 08:14:54 +01:00
|
|
|
.map((message) => (
|
2020-11-12 13:55:01 +01:00
|
|
|
<p>{message}</p>
|
2020-11-11 11:37:24 +01:00
|
|
|
))}
|
|
|
|
|
<hr />
|
|
|
|
|
</>
|
|
|
|
|
);
|
2020-11-10 08:33:22 +01:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-03 08:14:54 +01:00
|
|
|
const renderViolations = () => {
|
2019-03-04 11:09:12 +01:00
|
|
|
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>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-03 08:14:54 +01:00
|
|
|
const renderMetadata = () => {
|
2019-03-01 13:16:54 +01:00
|
|
|
return (
|
|
|
|
|
<>
|
2021-11-03 08:14:54 +01:00
|
|
|
{renderContext()}
|
|
|
|
|
{renderMoreInformationLink()}
|
2019-03-04 08:44:41 +01:00
|
|
|
<div className="level is-size-7">
|
2021-11-03 08:14:54 +01:00
|
|
|
<div className="left" aria-hidden={true}>
|
2019-10-20 16:59:02 +02:00
|
|
|
{t("errors.transactionId")} {error.transactionId}
|
2019-03-04 08:44:41 +01:00
|
|
|
</div>
|
2021-11-03 08:14:54 +01:00
|
|
|
<div className="right" aria-hidden={true}>
|
2019-10-20 16:59:02 +02:00
|
|
|
{t("errors.errorCode")} {error.errorCode}
|
2019-03-04 08:44:41 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-03 08:14:54 +01:00
|
|
|
const renderContext = () => {
|
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
|
|
|
};
|
|
|
|
|
|
2021-11-03 08:14:54 +01:00
|
|
|
const renderMoreInformationLink = () => {
|
2019-02-26 17:08:33 +01:00
|
|
|
if (error.url) {
|
|
|
|
|
return (
|
|
|
|
|
<p>
|
2019-10-20 16:59:02 +02:00
|
|
|
{t("errors.moreInfo")}{" "}
|
2021-11-03 08:14:54 +01:00
|
|
|
<a href={error.url} target="_blank" rel="noreferrer" aria-label={t("error.link")}>
|
2019-02-26 17:08:33 +01:00
|
|
|
{error.errorCode}
|
|
|
|
|
</a>
|
|
|
|
|
</p>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-03 08:14:54 +01:00
|
|
|
return (
|
2023-01-12 14:01:04 +01:00
|
|
|
<Notification type="danger" role="alert" {...props}>
|
2021-11-03 08:14:54 +01:00
|
|
|
<div className="content">
|
|
|
|
|
<p className="subtitle">
|
|
|
|
|
{t("error.subtitle")}
|
|
|
|
|
{": "}
|
|
|
|
|
{renderErrorName()}
|
|
|
|
|
</p>
|
|
|
|
|
<p>{renderErrorDescription()}</p>
|
|
|
|
|
{renderAdditionalMessages()}
|
|
|
|
|
<p>{renderViolations()}</p>
|
|
|
|
|
{renderMetadata()}
|
|
|
|
|
</div>
|
|
|
|
|
</Notification>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default BackendErrorNotification;
|