Files
web-app/src/lib/common/utils/file.util.js

37 lines
1.4 KiB
JavaScript
Raw Normal View History

2026-09-08 17:38:13 +03:00
// lib/common/utils/file.util.js
/**
* Определение типа файла
* @param {File} file
2026-09-15 08:46:16 +03:00
* @returns {'image' | 'pdf' | 'office' | 'other'}
2026-09-08 17:38:13 +03:00
*/
export function detectFileType(file) {
2026-09-15 08:46:16 +03:00
if (!file) return 'other';
if (file.type.startsWith('image/')) return 'image';
if (file.type === 'application/pdf') return 'pdf';
// Офисные документы — определяем по расширению,
// т.к. MIME может быть пустым или некорректным
const ext = (file.name || '').toLowerCase().split('.').pop() || '';
const officeExts = [
'doc', 'docx', 'odt', // текст
'xls', 'xlsx', 'ods', // таблицы
'ppt', 'pptx', 'odp', // презентации (на всякий случай)
];
if (officeExts.includes(ext)) return 'office';
return 'other';
2026-09-08 17:38:13 +03:00
}
/**
* Формирование текстовой метки выбранных страниц
* @param {import('$lib/pages/print/stores/print.store.svelte').FileEntry} entry
*/
export function pagesLabel(entry) {
2026-09-15 08:46:16 +03:00
if (!entry.totalPages || entry.totalPages === 0) return '...';
if (!entry.selectedPages || entry.selectedPages.size === 0) return 'Нет';
if (entry.selectedPages.size === entry.totalPages) return 'Все';
if (entry.selectedPages.size === 1) return `стр. ${[...entry.selectedPages][0]}`;
return `${entry.selectedPages.size}/${entry.totalPages} стр.`;
2026-09-08 17:38:13 +03:00
}