feat: add media upload to news editor with drag-drop, paste, and file picker

Upload images/videos directly to server from editor. DOMPurify video
sanitization, XSS protection, upload cancellation on unmount.
This commit is contained in:
Fringg
2026-03-23 11:58:18 +03:00
parent 8d994f75d9
commit 723591e5c3
8 changed files with 324 additions and 23 deletions

View File

@@ -57,3 +57,13 @@ export interface NewsCreateRequest {
export interface NewsUpdateRequest extends Partial<NewsCreateRequest> {
id?: never;
}
export interface NewsMediaUploadResponse {
url: string;
thumbnail_url: string | null;
media_type: 'image' | 'video';
filename: string;
size_bytes: number;
width: number | null;
height: number | null;
}