Files
SCM-Manager/scm-ui/ui-components/src/repos/HealthCheckFailureList.tsx
René Pfeuffer 1e83c34823 Enable Health Checks (#1621)
In the release of version 2.0.0 of SCM-Manager, the health checks had been neglected. This makes them visible again in the frontend and adds the ability to trigger them. In addition there are two types of health checks: The "normal" ones, now called "light checks", that are run on startup, and more intense checks run only on request.

As a change to version 1.x, health checks will no longer be persisted for repositories.

Co-authored-by: Eduard Heimbuch <eduard.heimbuch@cloudogu.com>
2021-04-21 10:09:23 +02:00

70 lines
2.4 KiB
TypeScript

/*
* 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.
*/
import { HealthCheckFailure } from "@scm-manager/ui-types";
import React, { FC } from "react";
import { useTranslation } from "react-i18next";
type Props = {
failures?: HealthCheckFailure[];
};
const HealthCheckFailureList: FC<Props> = ({ failures }) => {
const [t] = useTranslation("plugins");
const translationOrDefault = (translationKey: string, defaultValue: string) => {
const translation = t(translationKey);
return translation === translationKey ? defaultValue : translation;
};
if (!failures) {
return null;
}
const failureLine = (failure: HealthCheckFailure) => {
const summary = translationOrDefault(`healthCheckFailures.${failure.id}.summary`, failure.summary);
const description = translationOrDefault(`healthCheckFailures.${failure.id}.description`, failure.description);
return (
<li>
<em>{summary}</em>
<br />
{description}
<br />
{failure.url && (
<a href={failure.url} target="_blank" rel="noreferrer">
{t("healthCheckFailures.detailUrl")}
</a>
)}
</li>
);
};
const failureComponents = failures.map(failureLine);
return <ul>{failureComponents}</ul>;
};
export default HealthCheckFailureList;