mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-10-31 18:46:07 +01:00
158 lines
4.1 KiB
TypeScript
158 lines
4.1 KiB
TypeScript
/*
|
|
* Copyright (c) 2020 - present Cloudogu GmbH
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* 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/.
|
|
*/
|
|
|
|
import React, { ComponentProps, FC } from "react";
|
|
import { BackendError } from "@scm-manager/ui-api";
|
|
import Notification from "./Notification";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
type Props = Omit<ComponentProps<typeof Notification>, "type" | "role"> & {
|
|
error: BackendError;
|
|
};
|
|
|
|
/**
|
|
* @deprecated Please import the identical module from "@scm-manager/ui-core"
|
|
*/
|
|
|
|
const BackendErrorNotification: FC<Props> = ({ error, ...props }) => {
|
|
const [t] = useTranslation("plugins");
|
|
|
|
const renderErrorName = () => {
|
|
const translation = t(`errors.${error.errorCode}.displayName`);
|
|
if (translation === error.errorCode) {
|
|
return error.message;
|
|
}
|
|
return translation;
|
|
};
|
|
|
|
const renderErrorDescription = () => {
|
|
const translation = t(`errors.${error.errorCode}.description`);
|
|
if (translation === error.errorCode) {
|
|
return "";
|
|
}
|
|
return translation;
|
|
};
|
|
|
|
const renderAdditionalMessages = () => {
|
|
if (error.additionalMessages) {
|
|
return (
|
|
<>
|
|
<hr />
|
|
{error.additionalMessages
|
|
.map((additionalMessage) =>
|
|
additionalMessage.key ? t(`errors.${additionalMessage.key}.description`) : additionalMessage.message
|
|
)
|
|
.map((message) => (
|
|
<p>{message}</p>
|
|
))}
|
|
<hr />
|
|
</>
|
|
);
|
|
}
|
|
};
|
|
|
|
const renderViolations = () => {
|
|
if (error.violations) {
|
|
return (
|
|
<>
|
|
<p>
|
|
<strong>{t("errors.violations")}</strong>
|
|
</p>
|
|
<ul>
|
|
{error.violations.map((violation, index) => {
|
|
return (
|
|
<li key={index}>
|
|
{violation.path && <strong>{violation.path}:</strong>} {violation.message}{" "}
|
|
{violation.key && t(violation.key)}
|
|
</li>
|
|
);
|
|
})}
|
|
</ul>
|
|
</>
|
|
);
|
|
}
|
|
};
|
|
|
|
const renderMetadata = () => {
|
|
return (
|
|
<>
|
|
{renderContext()}
|
|
{renderMoreInformationLink()}
|
|
<div className="level is-size-7">
|
|
<div className="left" aria-hidden={true}>
|
|
{t("errors.transactionId")} {error.transactionId}
|
|
</div>
|
|
<div className="right" aria-hidden={true}>
|
|
{t("errors.errorCode")} {error.errorCode}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const renderContext = () => {
|
|
if (error.context) {
|
|
return (
|
|
<>
|
|
<p>
|
|
<strong>{t("errors.context")}</strong>
|
|
</p>
|
|
<ul>
|
|
{error.context.map((context, index) => {
|
|
return (
|
|
<li key={index}>
|
|
<strong>{context.type}:</strong> {context.id}
|
|
</li>
|
|
);
|
|
})}
|
|
</ul>
|
|
</>
|
|
);
|
|
}
|
|
};
|
|
|
|
const renderMoreInformationLink = () => {
|
|
if (error.url) {
|
|
return (
|
|
<p>
|
|
{t("errors.moreInfo")}{" "}
|
|
<a href={error.url} target="_blank" rel="noreferrer" aria-label={t("error.link")}>
|
|
{error.errorCode}
|
|
</a>
|
|
</p>
|
|
);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Notification type="danger" role="alert" {...props}>
|
|
<div className="content">
|
|
<p className="subtitle">
|
|
{t("error.subtitle")}
|
|
{": "}
|
|
{renderErrorName()}
|
|
</p>
|
|
<p>{renderErrorDescription()}</p>
|
|
{renderAdditionalMessages()}
|
|
<p>{renderViolations()}</p>
|
|
{renderMetadata()}
|
|
</div>
|
|
</Notification>
|
|
);
|
|
};
|
|
|
|
export default BackendErrorNotification;
|