mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-06 15:23:40 +01:00
84 lines
2.9 KiB
JavaScript
84 lines
2.9 KiB
JavaScript
import { useTranslation } from "next-i18next";
|
|
|
|
import Container from "../components/container";
|
|
import Block from "../components/block";
|
|
|
|
import useWidgetAPI from "utils/proxy/use-widget-api";
|
|
import ResolvedIcon from "components/resolvedicon";
|
|
|
|
const statusMap = {
|
|
R: <ResolvedIcon icon="mdi-circle" width={32} height={32} />, // running
|
|
S: <ResolvedIcon icon="mdi-circle-outline" width={32} height={32} />, // sleeping
|
|
D: <ResolvedIcon icon="mdi-circle-double" width={32} height={32} />, // disk sleep
|
|
Z: <ResolvedIcon icon="mdi-circle-opacity" width={32} height={32} />, // zombie
|
|
T: <ResolvedIcon icon="mdi-decagram-outline" width={32} height={32} />, // traced
|
|
t: <ResolvedIcon icon="mdi-hexagon-outline" width={32} height={32} />, // traced
|
|
X: <ResolvedIcon icon="mdi-rhombus-outline" width={32} height={32} />, // dead
|
|
};
|
|
|
|
const defaultInterval = 1000;
|
|
|
|
export default function Component({ service }) {
|
|
const { t } = useTranslation();
|
|
const { widget } = service;
|
|
const { chart, refreshInterval = defaultInterval, version = 3 } = widget;
|
|
|
|
const memoryInfoKey = version === 3 ? 0 : "data";
|
|
|
|
const { data, error } = useWidgetAPI(service.widget, `${version}/processlist`, {
|
|
refreshInterval: Math.max(defaultInterval, refreshInterval),
|
|
});
|
|
|
|
if (error) {
|
|
return <Container service={service} widget={widget} />;
|
|
}
|
|
|
|
if (!data) {
|
|
return (
|
|
<Container chart={chart}>
|
|
<Block position="bottom-3 left-3">-</Block>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
data.splice(chart ? 5 : 1);
|
|
let headerYPosition = "top-4";
|
|
let listYPosition = "bottom-4";
|
|
if (chart) {
|
|
headerYPosition = "-top-6";
|
|
listYPosition = "-top-3";
|
|
}
|
|
|
|
return (
|
|
<Container chart={chart}>
|
|
<Block position={`${headerYPosition} right-3 left-3`}>
|
|
<div className="flex items-center text-xs">
|
|
<div className="grow" />
|
|
<div className="w-14 text-right italic">{t("resources.cpu")}</div>
|
|
<div className="w-14 text-right">{t("resources.mem")}</div>
|
|
</div>
|
|
</Block>
|
|
|
|
<Block position={`${listYPosition} right-3 left-3`}>
|
|
<div className="pointer-events-none text-theme-900 dark:text-theme-200">
|
|
{data.map((item) => (
|
|
<div key={item.pid} className="text-[0.75rem] h-[0.8rem]">
|
|
<div className="flex items-center">
|
|
<div className="w-3 h-3 mr-1.5 opacity-50">{statusMap[item.status]}</div>
|
|
<div className="opacity-75 grow truncate">{item.name}</div>
|
|
<div className="opacity-25 w-14 text-right">{item.cpu_percent.toFixed(1)}%</div>
|
|
<div className="opacity-25 w-14 text-right">
|
|
{t("common.bytes", {
|
|
value: item.memory_info[memoryInfoKey] ?? item.memory_info.wset,
|
|
maximumFractionDigits: 0,
|
|
})}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</Block>
|
|
</Container>
|
|
);
|
|
}
|