feat: OCR识别支持拖拽导入
This commit is contained in:
@@ -1,8 +1,54 @@
|
||||
'use client';
|
||||
|
||||
import { useState, useCallback } from 'react';
|
||||
import { motion } from 'framer-motion';
|
||||
|
||||
export default function ScanPickModal({ onClose, onPick, isScanning }) {
|
||||
const IMAGE_TYPES = ['image/jpeg', 'image/png', 'image/webp'];
|
||||
|
||||
function getDroppedImageFiles(dataTransfer) {
|
||||
if (!dataTransfer?.files?.length) return [];
|
||||
return Array.from(dataTransfer.files).filter((f) =>
|
||||
IMAGE_TYPES.includes(f.type)
|
||||
);
|
||||
}
|
||||
|
||||
export default function ScanPickModal({ onClose, onPick, onFilesDrop, isScanning }) {
|
||||
const [isDragging, setIsDragging] = useState(false);
|
||||
|
||||
const handleDragOver = useCallback((e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
if (!isScanning) setIsDragging(true);
|
||||
}, [isScanning]);
|
||||
|
||||
const handleDragLeave = useCallback((e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
if (!e.currentTarget.contains(e.relatedTarget)) setIsDragging(false);
|
||||
}, []);
|
||||
|
||||
const handleDrop = useCallback((e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
setIsDragging(false);
|
||||
if (isScanning || !onFilesDrop) return;
|
||||
const files = getDroppedImageFiles(e.dataTransfer);
|
||||
if (files.length) onFilesDrop(files);
|
||||
}, [isScanning, onFilesDrop]);
|
||||
|
||||
const dropZoneStyle = {
|
||||
marginBottom: 12,
|
||||
padding: '20px 16px',
|
||||
borderRadius: 12,
|
||||
border: `2px dashed ${isDragging ? 'var(--primary)' : 'var(--border)'}`,
|
||||
background: isDragging
|
||||
? 'rgba(34, 211, 238, 0.08)'
|
||||
: 'rgba(255, 255, 255, 0.02)',
|
||||
transition: 'border-color 0.2s ease, background 0.2s ease',
|
||||
cursor: isScanning ? 'not-allowed' : 'pointer',
|
||||
pointerEvents: isScanning ? 'none' : 'auto',
|
||||
};
|
||||
|
||||
return (
|
||||
<motion.div
|
||||
className="modal-overlay"
|
||||
@@ -26,7 +72,28 @@ export default function ScanPickModal({ onClose, onPick, isScanning }) {
|
||||
<span>选择持仓截图</span>
|
||||
</div>
|
||||
<div className="muted" style={{ fontSize: 13, lineHeight: 1.6, marginBottom: 12 }}>
|
||||
从相册选择一张或多张持仓截图,系统将自动识别其中的基金代码(6位数字),并支持批量导入。
|
||||
从相册选择一张或多张持仓截图,系统将自动识别其中的<span style={{ color: 'var(--primary)' }}>基金代码(6位数字)</span>,并支持批量导入。
|
||||
</div>
|
||||
<div
|
||||
className="muted"
|
||||
style={dropZoneStyle}
|
||||
onDragOver={handleDragOver}
|
||||
onDragLeave={handleDragLeave}
|
||||
onDrop={handleDrop}
|
||||
onClick={!isScanning ? onPick : undefined}
|
||||
role="button"
|
||||
tabIndex={0}
|
||||
aria-label="拖拽图片到此处或点击选择"
|
||||
onKeyDown={(e) => {
|
||||
if (e.key === 'Enter' || e.key === ' ') {
|
||||
e.preventDefault();
|
||||
if (!isScanning) onPick?.();
|
||||
}
|
||||
}}
|
||||
>
|
||||
<div style={{ fontSize: 13, lineHeight: 1.5, color: isDragging ? 'var(--primary)' : 'var(--muted)', textAlign: 'center' }}>
|
||||
{isDragging ? '松开即可导入' : '拖拽图片到此处,或点击选择'}
|
||||
</div>
|
||||
</div>
|
||||
<div style={{ display: 'flex', gap: 8, justifyContent: 'flex-end' }}>
|
||||
<button className="button secondary" onClick={onClose}>取消</button>
|
||||
|
||||
Reference in New Issue
Block a user