fix: TS types

This commit is contained in:
Ahmed Bouhuolia
2024-05-30 17:47:27 +02:00
parent 308a4f62ae
commit 6a6dcadaf9
9 changed files with 112 additions and 42 deletions

View File

@@ -12,9 +12,9 @@ import {
useGetPresignedUrlAttachment,
useUploadAttachments,
} from '@/hooks/query/attachments';
import { formatBytes } from '../Sales/Invoices/InvoiceForm/utils';
import styles from './UploadAttachmentPopoverContent.module.scss';
import { MIME_TYPES } from '@/components/Dropzone/mine-types';
import { formatBytes } from '@/utils/format-bytes';
interface AttachmentFileCommon {
originName: string;

View File

@@ -415,15 +415,3 @@ export const useIsInvoiceTaxExclusive = () => {
return values.inclusive_exclusive_tax === TaxType.Exclusive;
};
export function formatBytes(bytes, decimals = 2) {
if (bytes === 0) return '0 Bytes';
const k = 1024;
const dm = decimals < 0 ? 0 : decimals;
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
}

View File

@@ -0,0 +1,28 @@
/**
* Converts a number of bytes into a human-readable string with units.
* The function takes the number of bytes and an optional number of decimal places,
* then calculates the appropriate unit (Bytes, KB, MB, etc.) and formats the number.
* @param {number} bytes - The number of bytes to format.
* @param {number} decimals - The number of decimal places to include in the formatted string.
* @returns {string} The formatted string with the appropriate unit.
*/
export function formatBytes(bytes: number, decimals: number = 2): string {
if (bytes === 0) return '0 Bytes';
const k: number = 1024;
const dm: number = decimals < 0 ? 0 : decimals;
const sizes: string[] = [
'Bytes',
'KB',
'MB',
'GB',
'TB',
'PB',
'EB',
'ZB',
'YB',
];
const i: number = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
}