You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/src/widgets/glances/process.jsx

73 lines
2.6 KiB

import { useTranslation } from "next-i18next";
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
};
export default function Component({ service }) {
const { t } = useTranslation();
const { data, error } = useWidgetAPI(service.widget, 'processlist', {
refreshInterval: 1000,
});
if (error) {
return <div>
<div className="h-[68px] overflow-clip">
<div className="absolute bottom-2 left-2 z-20 text-red-400 text-xs opacity-80">
{t("widget.api_error")}
</div>
</div>
</div>;
}
if (!data) {
return <div>
<div className="h-[68px] overflow-clip">
<div className="absolute bottom-2 left-2 z-20 text-xs opacity-80">
-
</div>
</div>
</div>;
}
data.splice(5);
return (
<>
<div className="absolute top-4 right-3 left-3 opacity-30 z-10 pointer-events-none">
<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>
</div>
<div className="absolute bottom-4 right-3 left-3 z-10 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-60">
{statusMap[item.status]}
</div>
<div className="opacity-60 grow">{item.name}</div>
<div className="opacity-30 w-14 text-right">{item.cpu_percent.toFixed(1)}%</div>
<div className="opacity-30 w-14 text-right">{t("common.bytes", {
value: item.memory_info[0],
maximumFractionDigits: 0,
})}</div>
</div>
</div>) }
</div>
<div className="h-[68px] overflow-clip" />
</>
);
}