| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- import { useState, useRef, useCallback, useEffect } from 'react';
- import { Bug, X, Loader2, CheckCircle, AlertCircle, Trash2, Upload } from 'lucide-react';
- import { useTranslation } from 'react-i18next';
- import { bugReportApi } from '../api/client';
- type ViewState = 'form' | 'collecting' | 'submitting' | 'success' | 'error';
- const LOG_COLLECTION_SECONDS = 30;
- const MAX_DIMENSION = 1920;
- const JPEG_QUALITY = 0.7;
- function compressImage(file: File): Promise<string> {
- return new Promise((resolve, reject) => {
- const img = new Image();
- img.onload = () => {
- let { width, height } = img;
- if (width > MAX_DIMENSION || height > MAX_DIMENSION) {
- const scale = MAX_DIMENSION / Math.max(width, height);
- width = Math.round(width * scale);
- height = Math.round(height * scale);
- }
- const canvas = document.createElement('canvas');
- canvas.width = width;
- canvas.height = height;
- const ctx = canvas.getContext('2d');
- if (!ctx) { reject(new Error('No canvas context')); return; }
- ctx.drawImage(img, 0, 0, width, height);
- const dataUrl = canvas.toDataURL('image/jpeg', JPEG_QUALITY);
- resolve(dataUrl.replace(/^data:[^;]+;base64,/, ''));
- };
- img.onerror = reject;
- img.src = URL.createObjectURL(file);
- });
- }
- export function BugReportBubble() {
- const { t } = useTranslation();
- const [isOpen, setIsOpen] = useState(false);
- const [viewState, setViewState] = useState<ViewState>('form');
- const [description, setDescription] = useState('');
- const [email, setEmail] = useState('');
- const [screenshot, setScreenshot] = useState<string | null>(null);
- const [isDragging, setIsDragging] = useState(false);
- const [issueUrl, setIssueUrl] = useState<string | null>(null);
- const [issueNumber, setIssueNumber] = useState<number | null>(null);
- const [errorMessage, setErrorMessage] = useState('');
- const [countdown, setCountdown] = useState(0);
- const modalRef = useRef<HTMLDivElement>(null);
- const fileInputRef = useRef<HTMLInputElement>(null);
- // Countdown timer for log collection phase
- useEffect(() => {
- if (viewState !== 'collecting') return;
- if (countdown <= 0) {
- setViewState('submitting');
- return;
- }
- const timer = setTimeout(() => setCountdown((c) => c - 1), 1000);
- return () => clearTimeout(timer);
- }, [viewState, countdown]);
- const handleOpen = () => {
- setIsOpen(true);
- setViewState('form');
- setDescription('');
- setEmail('');
- setScreenshot(null);
- setIssueUrl(null);
- setIssueNumber(null);
- setErrorMessage('');
- };
- const handleClose = () => {
- setIsOpen(false);
- };
- const handleFile = useCallback(async (file: File) => {
- if (!file.type.startsWith('image/')) return;
- try {
- const b64 = await compressImage(file);
- setScreenshot(b64);
- } catch {
- // Ignore read errors
- }
- }, []);
- const handlePaste = useCallback((e: React.ClipboardEvent) => {
- const items = e.clipboardData?.items;
- if (!items) return;
- for (const item of items) {
- if (item.type.startsWith('image/')) {
- const file = item.getAsFile();
- if (file) handleFile(file);
- break;
- }
- }
- }, [handleFile]);
- const handleDragOver = useCallback((e: React.DragEvent) => {
- e.preventDefault();
- setIsDragging(true);
- }, []);
- const handleDragLeave = useCallback((e: React.DragEvent) => {
- e.preventDefault();
- setIsDragging(false);
- }, []);
- const handleDrop = useCallback((e: React.DragEvent) => {
- e.preventDefault();
- setIsDragging(false);
- const file = e.dataTransfer.files?.[0];
- if (file) handleFile(file);
- }, [handleFile]);
- const handleSubmit = async () => {
- if (!description.trim()) return;
- setCountdown(LOG_COLLECTION_SECONDS);
- setViewState('collecting');
- try {
- const result = await bugReportApi.submit({
- description: description.trim(),
- email: email.trim() || undefined,
- screenshot_base64: screenshot || undefined,
- include_support_info: true,
- });
- if (result.success) {
- setIssueUrl(result.issue_url || null);
- setIssueNumber(result.issue_number || null);
- setViewState('success');
- } else {
- setErrorMessage(result.message);
- setViewState('error');
- }
- } catch (err) {
- setErrorMessage(err instanceof Error ? err.message : t('bugReport.unexpectedError'));
- setViewState('error');
- }
- };
- return (
- <>
- {/* Floating bubble */}
- <button
- onClick={handleOpen}
- className="fixed bottom-4 right-4 z-40 w-12 h-12 rounded-full bg-red-500 hover:bg-red-600 text-white shadow-lg hover:shadow-xl transition-all duration-200 hover:scale-110 flex items-center justify-center"
- title={t('bugReport.title')}
- >
- <Bug className="w-5 h-5" />
- </button>
- {/* Slide-in panel anchored to bottom-right */}
- {isOpen && (
- <div
- id="bug-report-modal"
- className="fixed bottom-20 right-4 z-50 w-full max-w-md"
- onPaste={handlePaste}
- >
- <div
- ref={modalRef}
- className="bg-white dark:bg-gray-800 rounded-lg shadow-2xl border border-gray-200 dark:border-gray-700 max-h-[80vh] overflow-y-auto"
- >
- {/* Header */}
- <div className="flex items-center justify-between p-4 border-b border-gray-200 dark:border-gray-700 sticky top-0 bg-white dark:bg-gray-800 z-10">
- <h2 className="text-lg font-semibold text-gray-900 dark:text-white flex items-center gap-2">
- <Bug className="w-5 h-5 text-red-500" />
- {t('bugReport.title')}
- </h2>
- <button
- onClick={handleClose}
- className="text-gray-400 hover:text-gray-600 dark:hover:text-gray-300"
- >
- <X className="w-5 h-5" />
- </button>
- </div>
- <div className="p-4 space-y-4">
- {viewState === 'form' && (
- <>
- {/* Description */}
- <div>
- <label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">
- {t('bugReport.description')} *
- </label>
- <textarea
- value={description}
- onChange={(e) => setDescription(e.target.value)}
- placeholder={t('bugReport.descriptionPlaceholder')}
- rows={3}
- className="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-700 text-gray-900 dark:text-white placeholder-gray-400 focus:ring-2 focus:ring-blue-500 focus:border-transparent resize-vertical"
- />
- </div>
- {/* Email (optional) */}
- <div>
- <label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">
- {t('bugReport.email')}
- </label>
- <input
- type="email"
- value={email}
- onChange={(e) => setEmail(e.target.value)}
- placeholder={t('bugReport.emailPlaceholder')}
- className="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-700 text-gray-900 dark:text-white placeholder-gray-400 focus:ring-2 focus:ring-blue-500 focus:border-transparent"
- />
- <p className="mt-1 text-xs text-gray-500 dark:text-gray-400">
- {t('bugReport.emailPrivacy')}
- </p>
- </div>
- {/* Screenshot — upload, paste, or drag */}
- <div>
- <label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">
- {t('bugReport.screenshot')}
- </label>
- {screenshot ? (
- <div className="relative">
- <img
- src={`data:image/jpeg;base64,${screenshot}`}
- alt={t('bugReport.screenshot')}
- className="w-full max-h-40 object-contain rounded-lg border border-gray-200 dark:border-gray-600"
- />
- <button
- onClick={() => setScreenshot(null)}
- className="absolute top-2 right-2 p-1 bg-red-500 hover:bg-red-600 text-white rounded-full shadow"
- title={t('common.delete')}
- >
- <Trash2 className="w-3 h-3" />
- </button>
- </div>
- ) : (
- <button
- type="button"
- onClick={() => fileInputRef.current?.click()}
- onDragOver={handleDragOver}
- onDragLeave={handleDragLeave}
- onDrop={handleDrop}
- className={`w-full flex flex-col items-center gap-2 px-4 py-4 border-2 border-dashed rounded-lg transition-colors cursor-pointer ${
- isDragging
- ? 'border-blue-500 bg-blue-50 dark:bg-blue-900/20 text-blue-500'
- : 'border-gray-300 dark:border-gray-600 text-gray-500 dark:text-gray-400 hover:border-gray-400 dark:hover:border-gray-500 hover:text-gray-600 dark:hover:text-gray-300'
- }`}
- >
- <Upload className="w-5 h-5" />
- <span className="text-sm">{t('bugReport.uploadOrPaste')}</span>
- </button>
- )}
- <input
- ref={fileInputRef}
- type="file"
- accept="image/*"
- className="hidden"
- onChange={(e) => {
- const file = e.target.files?.[0];
- if (file) handleFile(file);
- e.target.value = '';
- }}
- />
- </div>
- {/* Data collection notice */}
- <details className="text-xs bg-amber-50 dark:bg-amber-900/20 border border-amber-200 dark:border-amber-800 rounded-lg p-3">
- <summary className="cursor-pointer font-medium text-amber-700 dark:text-amber-300 hover:text-amber-800 dark:hover:text-amber-200">
- {t('bugReport.dataCollectedSummary')}
- </summary>
- <div className="mt-2 space-y-2 pl-2 border-l-2 border-amber-300 dark:border-amber-700 text-amber-800 dark:text-amber-200">
- <p className="font-medium">{t('bugReport.dataIncluded')}</p>
- <p>{t('bugReport.dataIncludedList')}</p>
- <p className="font-medium">{t('bugReport.dataNeverIncluded')}</p>
- <p>{t('bugReport.dataNeverIncludedList')}</p>
- </div>
- </details>
- {/* Buttons */}
- <div className="flex justify-end gap-2 pt-2">
- <button
- onClick={handleClose}
- className="px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-lg transition-colors"
- >
- {t('common.cancel')}
- </button>
- <button
- onClick={handleSubmit}
- disabled={!description.trim()}
- className="px-4 py-2 text-sm font-medium text-white bg-red-500 hover:bg-red-600 disabled:opacity-50 disabled:cursor-not-allowed rounded-lg transition-colors"
- >
- {t('bugReport.submit')}
- </button>
- </div>
- </>
- )}
- {(viewState === 'collecting' || viewState === 'submitting') && (
- <div className="flex flex-col items-center justify-center py-8 gap-3">
- <Loader2 className="w-8 h-8 animate-spin text-blue-500" />
- {viewState === 'collecting' ? (
- <>
- <p className="text-sm font-medium text-gray-900 dark:text-white">{t('bugReport.collectingLogs')}</p>
- <p className="text-xs text-gray-500 dark:text-gray-400">{t('bugReport.collectingLogsHint')}</p>
- {countdown > 0 && (
- <p className="text-lg font-mono text-blue-500">{t('bugReport.countdownSeconds', { seconds: countdown })}</p>
- )}
- </>
- ) : (
- <p className="text-sm text-gray-600 dark:text-gray-400">{t('bugReport.submitting')}</p>
- )}
- </div>
- )}
- {viewState === 'success' && (
- <div className="flex flex-col items-center justify-center py-8 gap-3">
- <CheckCircle className="w-12 h-12 text-green-500" />
- <p className="text-lg font-semibold text-gray-900 dark:text-white">{t('bugReport.thankYou')}</p>
- <p className="text-sm text-gray-600 dark:text-gray-400">{t('bugReport.submitted')}</p>
- {issueUrl && (
- <a
- href={issueUrl}
- target="_blank"
- rel="noopener noreferrer"
- className="text-sm text-blue-500 hover:text-blue-600 underline"
- >
- {t('bugReport.viewIssue')} #{issueNumber}
- </a>
- )}
- <button
- onClick={handleClose}
- className="mt-4 px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-lg transition-colors"
- >
- {t('common.close')}
- </button>
- </div>
- )}
- {viewState === 'error' && (
- <div className="flex flex-col items-center justify-center py-8 gap-3">
- <AlertCircle className="w-12 h-12 text-red-500" />
- <p className="text-lg font-semibold text-gray-900 dark:text-white">{t('bugReport.submitFailed')}</p>
- <p className="text-sm text-gray-600 dark:text-gray-400 text-center">{errorMessage}</p>
- <div className="flex gap-2 mt-4">
- <button
- onClick={() => setViewState('form')}
- className="px-4 py-2 text-sm font-medium text-white bg-red-500 hover:bg-red-600 rounded-lg transition-colors"
- >
- {t('bugReport.submit')}
- </button>
- <button
- onClick={handleClose}
- className="px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-lg transition-colors"
- >
- {t('common.close')}
- </button>
- </div>
- </div>
- )}
- </div>
- </div>
- </div>
- )}
- </>
- );
- }
|