plagiatcheck part complated base new request types

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-04-07 19:02:03 +05:00
parent 8f75349297
commit 2baf9703fe
20 changed files with 174 additions and 96 deletions

View File

@@ -2,12 +2,30 @@
import { useState, useCallback, useRef } from 'react';
import { UploadedFile } from './tyeps';
import { countWordsFromFile, SUPPORTED_EXTENSIONS } from './wordCount';
import { SUPPORTED_EXTENSIONS } from './wordCount';
import { useMutation } from '@tanstack/react-query';
import { apiRequest } from '@/shared/request/apiRequest';
import { links } from '@/shared/request/links';
import { toast } from 'react-toastify';
// ── API response types ────────────────────────────────────────────────────────
interface WordCountApiResponse {
word_count: number;
total_price: number;
}
interface CreateSIOrderResponse {
id: number;
order_id: number;
}
interface SIPaymentResponse {
payment_link: string;
}
// ── Return type ───────────────────────────────────────────────────────────────
interface UseFileUploadReturn {
documentName: string;
setDocumentName: (name: string) => void;
@@ -16,92 +34,135 @@ interface UseFileUploadReturn {
isProcessing: boolean;
error: string | null;
fileInputRef: React.RefObject<HTMLInputElement | null>;
handleFileSelect: (file: File) => Promise<void>;
handleFileSelect: (file: File) => void;
handleDrop: (e: React.DragEvent) => void;
handleDragOver: (e: React.DragEvent) => void;
handleDragLeave: () => void;
handleRemoveFile: () => void;
openFilePicker: () => void;
handleSubmit: () => void;
canSubmit: boolean;
}
// ── Hook ─────────────────────────────────────────────────────────────────────
export function useFileUpload(): UseFileUploadReturn {
const [documentName, setDocumentName] = useState('');
const [uploadedFile, setUploadedFile] = useState<UploadedFile | null>(null);
const [isDragging, setIsDragging] = useState(false);
const [isProcessing, setIsProcessing] = useState(false);
const [error, setError] = useState<string | null>(null);
const fileInputRef = useRef<HTMLInputElement | null>(null);
const wordCount = useMutation({
mutationFn: (data: FormData) => apiRequest('POST', links.si_create, data),
// ── Step 3: Payment ────────────────────────────────────────────────────────
const siPayment = useMutation({
mutationKey: ['si-payment'],
mutationFn: (order_id: number) =>
apiRequest<SIPaymentResponse>('POST', links.si_payment(order_id)),
onSuccess: (res) => {
console.log(res);
window.open(res.data.payment_link, '_self');
},
onError: (err) => {
console.log(err instanceof Error ? err.message : 'Unknown error');
toast.error(err instanceof Error ? err.message : 'Unknown error');
toast.error(
err instanceof Error ? err.message : "To'lovda xatolik yuz berdi",
);
},
});
// ── Step 2: Create SI order ────────────────────────────────────────────────
const createSIOrder = useMutation({
mutationKey: ['si-create'],
mutationFn: (data: FormData) =>
apiRequest<CreateSIOrderResponse>('POST', links.si_create, data),
onSuccess: (res) => {
siPayment.mutate(res.data.order_id);
},
onError: (err) => {
toast.error(err instanceof Error ? err.message : 'Xatolik yuz berdi');
},
});
// ── Step 1: Upload file & get word count + price ───────────────────────────
const wordCountMutation = useMutation({
mutationKey: ['si-word-count'],
mutationFn: (data: FormData) =>
apiRequest<WordCountApiResponse>('POST', links.wordCount, data),
onSuccess: (res) => {
setUploadedFile((prev) =>
prev
? {
...prev,
status: 'done',
word_count: res.data.word_count ?? 0,
total_price: res.data.total_price ?? 0,
}
: prev,
);
},
onError: (err) => {
const message = err instanceof Error ? err.message : 'Fayl yuklanmadi';
setError(message);
setUploadedFile((prev) => (prev ? { ...prev, status: 'error' } : prev));
},
});
// ── File validation ────────────────────────────────────────────────────────
const validateFile = (file: File): string | null => {
const ext = '.' + file.name.split('.').pop()?.toLowerCase();
if (!SUPPORTED_EXTENSIONS.includes(ext)) {
return `Unsupported file type. Allowed: ${SUPPORTED_EXTENSIONS.join(', ')}`;
return `Qo'llab-quvvatlanmaydigan fayl turi. Ruxsat etilgan: ${SUPPORTED_EXTENSIONS.join(', ')}`;
}
if (file.size > 50 * 1024 * 1024) {
return 'File size must be less than 50 MB';
return 'Fayl hajmi 50 MB dan oshmasligi kerak';
}
return null;
};
const handleFileSelect = useCallback(async (file: File) => {
setError(null);
// ── Step 1 trigger ─────────────────────────────────────────────────────────
const validationError = validateFile(file);
if (validationError) {
setError(validationError);
return;
}
const handleFileSelect = useCallback(
(file: File) => {
setError(null);
// Optimistic UI: show file immediately
const optimistic: UploadedFile = {
file,
name: file.name,
sizeKB: Math.round(file.size / 1024),
wordCount: 0,
status: 'uploading',
};
setUploadedFile(optimistic);
setIsProcessing(true);
const validationError = validateFile(file);
if (validationError) {
setError(validationError);
return;
}
// Auto-fill document name if empty
setDocumentName((prev) =>
prev.trim() === '' ? file.name.replace(/\.[^/.]+$/, '') : prev,
);
// Count words on the frontend (no round-trip needed)
const result = await countWordsFromFile(file);
if (result.error) {
setError(result.error);
setUploadedFile({ ...optimistic, status: 'error', wordCount: 0 });
} else {
// Optimistic: show file chip immediately while backend responds
setUploadedFile({
...optimistic,
status: 'done',
wordCount: result.count,
file,
name: file.name,
sizeKB: Math.round(file.size / 1024),
word_count: 0,
total_price: 0,
status: 'uploading',
});
}
console.log('running');
if (!file) return;
console.log('running inner');
// Auto-fill document name if blank
setDocumentName((prev) =>
prev.trim() === '' ? file.name.replace(/\.[^/.]+$/, '') : prev,
);
const fd = new FormData();
fd.append('file', file);
wordCountMutation.mutate(fd);
},
[wordCountMutation],
);
// ── Step 2 trigger (Check button) ─────────────────────────────────────────
const handleSubmit = useCallback(() => {
if (!uploadedFile?.file || !documentName.trim()) return;
const fd = new FormData();
fd.append('title', file.name.replace(/\.[^/.]+$/, ''));
fd.append('file', file);
wordCount.mutate(fd);
console.log('stop');
setIsProcessing(false);
}, []);
fd.append('title', documentName.trim());
fd.append('file', uploadedFile.file);
createSIOrder.mutate(fd);
}, [uploadedFile, documentName, createSIOrder]);
// ── Drag & drop ────────────────────────────────────────────────────────────
const handleDrop = useCallback(
(e: React.DragEvent) => {
@@ -132,6 +193,18 @@ export function useFileUpload(): UseFileUploadReturn {
fileInputRef.current?.click();
}, []);
// ── Derived state ──────────────────────────────────────────────────────────
const isProcessing =
wordCountMutation.isPending ||
createSIOrder.isPending ||
siPayment.isPending;
const canSubmit =
documentName.trim().length > 0 &&
uploadedFile?.status === 'done' &&
!isProcessing;
return {
documentName,
setDocumentName,
@@ -146,5 +219,7 @@ export function useFileUpload(): UseFileUploadReturn {
handleDragLeave,
handleRemoveFile,
openFilePicker,
handleSubmit,
canSubmit,
};
}