mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
# Description of Changes - Added error handling and toast notifications --- ## Checklist ### General - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md) (if applicable) - [ ] I have performed a self-review of my own code - [ ] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md#6-testing) for more details.
48 lines
1.6 KiB
TypeScript
48 lines
1.6 KiB
TypeScript
export const FILE_EVENTS = {
|
|
markError: 'files:markError',
|
|
} as const;
|
|
|
|
const UUID_REGEX = /[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}/g;
|
|
|
|
export function tryParseJson<T = any>(input: unknown): T | undefined {
|
|
if (typeof input !== 'string') return input as T | undefined;
|
|
try { return JSON.parse(input) as T; } catch { return undefined; }
|
|
}
|
|
|
|
export async function normalizeAxiosErrorData(data: any): Promise<any> {
|
|
if (!data) return undefined;
|
|
if (typeof data?.text === 'function') {
|
|
const text = await data.text();
|
|
return tryParseJson(text) ?? text;
|
|
}
|
|
return data;
|
|
}
|
|
|
|
export function extractErrorFileIds(payload: any): string[] | undefined {
|
|
if (!payload) return undefined;
|
|
if (Array.isArray(payload?.errorFileIds)) return payload.errorFileIds as string[];
|
|
if (typeof payload === 'string') {
|
|
const matches = payload.match(UUID_REGEX);
|
|
if (matches && matches.length > 0) return Array.from(new Set(matches));
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
export function broadcastErroredFiles(fileIds: string[]) {
|
|
if (!fileIds || fileIds.length === 0) return;
|
|
window.dispatchEvent(new CustomEvent(FILE_EVENTS.markError, { detail: { fileIds } }));
|
|
}
|
|
|
|
export function isZeroByte(file: File | { size?: number } | null | undefined): boolean {
|
|
if (!file) return true;
|
|
const size = (file as any).size;
|
|
return typeof size === 'number' ? size <= 0 : true;
|
|
}
|
|
|
|
export function isEmptyOutput(files: File[] | null | undefined): boolean {
|
|
if (!files || files.length === 0) return true;
|
|
return files.every(f => (f as any)?.size === 0);
|
|
}
|
|
|
|
|