import { Group, Stack, Text } from '@mantine/core';
import { useTranslation } from 'next-i18next';
import { api } from '~/utils/api';
import { bytes } from '../../tools/bytesHelper';
import { percentage } from '../../tools/shared/math/percentage.tool';
import { DashDotInfo } from './DashDotCompactNetwork';
interface DashDotCompactStorageProps {
info: DashDotInfo;
url: string;
}
export const DashDotCompactStorage = ({ info, url }: DashDotCompactStorageProps) => {
const { t } = useTranslation('modules/dashdot');
const { data: storageLoad } = useDashDotStorage(url);
const totalUsed = calculateTotalLayoutSize({
layout: storageLoad ?? [],
});
const totalSize = calculateTotalLayoutSize({
layout: info?.storage ?? [],
key: 'size',
});
return (
{t('card.graphs.storage.label')}
{percentage(totalUsed, totalSize)}%
{bytes.toString(totalUsed)} / {bytes.toString(totalSize)}
);
};
const calculateTotalLayoutSize = ({
layout,
key,
}: CalculateTotalLayoutSizeProps) =>
layout.reduce((total, current) => {
if (key) {
return total + (current[key] as number);
}
return total + (current as number);
}, 0);
interface CalculateTotalLayoutSizeProps {
layout: TLayoutItem[];
key?: keyof TLayoutItem;
}
const useDashDotStorage = (url: string) =>
api.dashDot.storage.useQuery({
url,
});