6f4abfcec4
- change worker: do not cache html pages (not necessary) - remove use of window.XXX and maximize import/export, this will provide more clarety, show circular dependencies + you will benefit IDE help
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
/**
|
|
* OxiCloud - Shared format and escaping utilities
|
|
* Centralized global helpers for date/size/text formatting and XSS-safe escaping.
|
|
*/
|
|
|
|
function escapeHtml(str) {
|
|
if (typeof str !== 'string') return '';
|
|
return str.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''');
|
|
}
|
|
|
|
function formatFileSize(bytes) {
|
|
if (bytes === 0) return '0 Bytes';
|
|
|
|
const k = 1024;
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
|
|
return `${parseFloat((bytes / k ** i).toFixed(2))} ${sizes[i]}`;
|
|
}
|
|
|
|
/// Formats a byte count for quota display. When bytes is 0, returns "∞" (unlimited).
|
|
function formatQuotaSize(bytes) {
|
|
if (bytes === 0) return '∞';
|
|
return formatFileSize(bytes);
|
|
}
|
|
|
|
function formatDateTime(value) {
|
|
if (!value) return '';
|
|
let dateValue;
|
|
if (value instanceof Date) {
|
|
dateValue = value;
|
|
} else if (typeof value === 'number') {
|
|
dateValue = new Date(value < 1e12 ? value * 1000 : value);
|
|
} else {
|
|
dateValue = new Date(value);
|
|
}
|
|
if (Number.isNaN(dateValue.getTime())) return String(value);
|
|
return `${dateValue.toLocaleDateString()} ${dateValue.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })}`;
|
|
}
|
|
|
|
function formatDateShort(value) {
|
|
if (!value) return 'N/A';
|
|
const dateValue = typeof value === 'number' ? new Date(value * 1000) : new Date(value);
|
|
if (Number.isNaN(dateValue.getTime())) return String(value);
|
|
return dateValue.toLocaleDateString(undefined, {
|
|
year: 'numeric',
|
|
month: 'short',
|
|
day: 'numeric'
|
|
});
|
|
}
|
|
|
|
function isTextViewable(mimeType) {
|
|
if (!mimeType) return false;
|
|
if (mimeType.startsWith('text/')) return true;
|
|
const textTypes = [
|
|
'application/json',
|
|
'application/xml',
|
|
'application/javascript',
|
|
'application/x-sh',
|
|
'application/x-yaml',
|
|
'application/toml',
|
|
'application/x-toml',
|
|
'application/sql'
|
|
];
|
|
return textTypes.includes(mimeType);
|
|
}
|
|
|
|
export { escapeHtml, formatDateShort, formatDateTime, formatFileSize, formatQuotaSize, isTextViewable };
|