mirror of
https://github.com/gethomepage/homepage.git
synced 2026-09-26 05:51:17 -07:00
Docker CI / Docker Build & Push (push) Has been cancelled
Lint / Linting Checks (push) Has been cancelled
Release Drafter / Update Release Draft (push) Has been cancelled
Release Drafter / Auto Label PR (push) Has been cancelled
Tests / vitest (1) (push) Has been cancelled
Tests / vitest (2) (push) Has been cancelled
Tests / vitest (3) (push) Has been cancelled
Tests / vitest (4) (push) Has been cancelled
71 lines
2.4 KiB
React
71 lines
2.4 KiB
React
import classNames from "classnames";
|
|
import { useTranslation } from "next-i18next/pages";
|
|
import { useContext, useMemo } from "react";
|
|
|
|
import { BlockHighlightContext } from "./highlight-context";
|
|
|
|
import { SettingsContext } from "utils/contexts/settings";
|
|
import { evaluateHighlight, getHighlightClass } from "utils/highlights";
|
|
|
|
export default function Block({ value, highlightValue, label, field }) {
|
|
const { t } = useTranslation();
|
|
const highlightConfig = useContext(BlockHighlightContext);
|
|
const { settings } = useContext(SettingsContext);
|
|
const refined = settings?.blockStyle === "refined";
|
|
|
|
const highlight = useMemo(() => {
|
|
if (!highlightConfig) return null;
|
|
const labels = Array.isArray(label) ? label : [label];
|
|
const candidates = [];
|
|
if (typeof field === "string") candidates.push(field);
|
|
for (const candidateLabel of labels) {
|
|
if (typeof candidateLabel === "string") candidates.push(candidateLabel);
|
|
}
|
|
|
|
for (const candidate of candidates) {
|
|
const result = evaluateHighlight(candidate, highlightValue ?? value, highlightConfig);
|
|
if (result) return result;
|
|
}
|
|
|
|
return null;
|
|
}, [field, label, value, highlightValue, highlightConfig]);
|
|
|
|
const highlightClass = useMemo(() => {
|
|
if (!highlight?.level) return undefined;
|
|
return getHighlightClass(highlight.level, highlightConfig);
|
|
}, [highlight, highlightConfig]);
|
|
|
|
const applyToValueOnly = highlight?.valueOnly === true;
|
|
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
"bg-theme-200/50 dark:bg-theme-900/20 rounded-sm m-1 flex-1 flex flex-col items-center justify-center text-center p-1",
|
|
value === undefined ? "animate-pulse" : "",
|
|
highlightClass,
|
|
"service-block",
|
|
)}
|
|
data-highlight-level={highlight?.level}
|
|
data-highlight-source={highlight?.source}
|
|
>
|
|
<div
|
|
className={classNames(
|
|
refined ? "text-[13px] font-medium tabular-nums" : "font-thin text-sm",
|
|
"service-block-value",
|
|
)}
|
|
>
|
|
{value === undefined || value === null ? "-" : value}
|
|
</div>
|
|
<div
|
|
className={classNames(
|
|
refined ? "text-[10px] font-semibold uppercase tracking-wider opacity-60" : "font-bold text-xs uppercase",
|
|
applyToValueOnly && "text-theme-700 dark:text-theme-200",
|
|
"service-block-label",
|
|
)}
|
|
>
|
|
{t(label)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|