|
{torrent.name}
{app && (
{t('card.table.item.text', {
appName: app.name,
ratio: torrent.ratio.toFixed(2),
})}
)}
|
{humanFileSize(size, false)}
|
{width > MIN_WIDTH_MOBILE && (
{downloadSpeed > 0 ? `${downloadSpeed.toFixed(1)} Mb/s` : '-'}
|
)}
{width > MIN_WIDTH_MOBILE && (
{uploadSpeed > 0 ? `${uploadSpeed.toFixed(1)} Mb/s` : '-'}
|
)}
{width > MIN_WIDTH_MOBILE && (
{torrent.eta <= 0 ? '∞' : calculateETA(torrent.eta)}
|
)}
{(torrent.progress * 100).toFixed(1)}%
|