4850c92365
* feat(formRecognizer): 添加表单识别功能及相关组件 添加表单识别功能,包括以下内容: 1. 在路由配置中添加表单识别页面 2. 实现表单识别页面和侧边栏面板 3. 添加表单数据生成工具类 4. 实现与内容脚本的通信机制 5. 添加faker-js依赖用于生成测试数据 6. 支持不同入口点(popup/sidepanel)的组件渲染 * refactor(消息通信): 重构消息通信机制并集中管理消息协议 将分散的消息协议和通信逻辑集中到 utils/messages.ts 中 移除旧的 messages.tsx 文件并更新相关引用 添加消息动作枚举和类型定义,提高类型安全性 优化内容脚本注入失败时的处理逻辑 * feat(QR码): 添加粘贴图片功能并优化上传组件 添加全局粘贴事件监听,支持从剪贴板直接粘贴二维码图片进行解析。重构上传组件为独立组件QrCodeUploader,包含拖拽上传、预览、进度显示和错误处理功能。优化页面样式和用户体验。 - 在QrCodePage添加粘贴事件监听 - 创建QrCodeUploader组件整合上传功能 - 更新测试用例格式 - 调整多个页面的背景色样式 * feat(表单识别): 新增表单识别页面功能与模板管理 - 添加表单识别页面样式配置 - 实现表单字段扫描与展示功能 - 新增数据模板管理工具类 - 添加数据验证工具类 - 扩展表单识别页面功能,包括操作历史记录 - 支持模板的导入导出功能 - 优化表单填充操作的用户体验 * feat(消息系统): 添加标签页刷新功能 在消息系统中新增 RELOAD_TAB 动作类型和 tabId 字段,用于处理标签页刷新请求 修改 StorageCleanerPage 使用后台脚本发送刷新请求,确保弹窗关闭后仍能执行 在 background.ts 中添加标签页刷新处理逻辑,包括错误处理和响应返回 * refactor(theme): 重构主题颜色和样式配置 - 更新主题颜色以满足 WCAG AA 可访问性标准 - 提取全局样式配置到统一变量 - 使用语义化颜色变量替换硬编码值 - 为输入框样式创建统一配置 * feat: add URL entry management components and QR code generation feature - Introduced `UrlEntryItem` and `UrlEntryList` components for displaying and managing URL entries. - Added `UrlToQrCodeSection` component for generating QR codes from URLs with download and copy functionality. - Implemented `AutoRefreshToggle`, `CleaningResult`, `DomainHeader`, `ErrorDisplay`, `OptionItem`, and `StorageOptionsGrid` components for enhanced user interface in storage cleaning. - Created custom hooks `useStorageCleaner` and `useStorageState` for managing storage-related states and preferences. - Added utility hook `useUrlPreferences` for handling URL entry preferences. * feat: 新增时间戳转换器和相关组件,优化时间戳页面功能 * Refactor message handling and storage cleaning logic * feat: 添加 GitHub Actions CI/CD 工作流,支持自动化构建与发布
325 lines
10 KiB
TypeScript
325 lines
10 KiB
TypeScript
import { useState, useEffect } from 'react';
|
||
import {
|
||
Box,
|
||
Typography,
|
||
TextField,
|
||
Button,
|
||
Stack,
|
||
Alert,
|
||
Accordion,
|
||
AccordionSummary,
|
||
AccordionDetails,
|
||
CircularProgress,
|
||
InputAdornment,
|
||
} from '@mui/material';
|
||
import LinkIcon from '@mui/icons-material/Link';
|
||
import ImageIcon from '@mui/icons-material/Image';
|
||
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
||
import jsQR from 'jsqr';
|
||
import CopyButton from '@/components/CopyButton';
|
||
import { qrCodePageStyles } from '@/config/pageTheme';
|
||
import type { SnackbarOptions } from '@/components/GlobalSnackbar';
|
||
|
||
interface QrCodeToUrlSectionProps {
|
||
expanded: boolean;
|
||
onExpandedChange: (expanded: boolean) => void;
|
||
showMessage: (message: string, options?: SnackbarOptions) => void;
|
||
}
|
||
|
||
const QrCodeToUrlSection = ({
|
||
expanded,
|
||
onExpandedChange,
|
||
showMessage,
|
||
}: QrCodeToUrlSectionProps) => {
|
||
const [qrCodeFile, setQrCodeFile] = useState<File | null>(null);
|
||
const [parsedUrl, setParsedUrl] = useState('');
|
||
const [parseError, setParseError] = useState('');
|
||
const [parsing, setParsing] = useState(false);
|
||
|
||
const handleFileChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||
if (e.target.files && e.target.files.length > 0) {
|
||
const file = e.target.files[0];
|
||
setQrCodeFile(file);
|
||
setParseError('');
|
||
setParsedUrl('');
|
||
}
|
||
};
|
||
|
||
const parseQrCode = async () => {
|
||
if (!qrCodeFile) {
|
||
showMessage('请选择二维码图片', { severity: 'error', autoHideDuration: 300 });
|
||
return;
|
||
}
|
||
|
||
try {
|
||
setParsing(true);
|
||
setParseError('');
|
||
setParsedUrl('');
|
||
|
||
const canvas = document.createElement('canvas');
|
||
const ctx = canvas.getContext('2d');
|
||
|
||
if (!ctx) {
|
||
throw new Error('无法创建 canvas 上下文');
|
||
}
|
||
|
||
const image = new Image();
|
||
image.src = URL.createObjectURL(qrCodeFile);
|
||
|
||
await new Promise<void>((resolve, reject) => {
|
||
image.onload = () => {
|
||
canvas.width = image.width;
|
||
canvas.height = image.height;
|
||
ctx.drawImage(image, 0, 0);
|
||
resolve();
|
||
};
|
||
image.onerror = () => reject(new Error('图片加载失败'));
|
||
});
|
||
|
||
const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);
|
||
const code = jsQR(imageData.data, imageData.width, imageData.height);
|
||
|
||
if (code) {
|
||
setParsedUrl(code.data);
|
||
showMessage('二维码解析成功', { severity: 'success', autoHideDuration: 1000 });
|
||
} else {
|
||
showMessage('未检测到二维码', { severity: 'error', autoHideDuration: 1000 });
|
||
}
|
||
} catch (error) {
|
||
console.error('解析二维码失败:', error);
|
||
showMessage('解析二维码失败,请重试', { severity: 'error', autoHideDuration: 300 });
|
||
} finally {
|
||
setParsing(false);
|
||
}
|
||
};
|
||
|
||
// 监听粘贴事件
|
||
useEffect(() => {
|
||
const handlePaste = async (e: ClipboardEvent) => {
|
||
if (!expanded) return;
|
||
|
||
const items = e.clipboardData?.items;
|
||
if (!items) return;
|
||
|
||
for (let i = 0; i < items.length; i++) {
|
||
if (items[i].type.startsWith('image/')) {
|
||
e.preventDefault();
|
||
|
||
const file = items[i].getAsFile();
|
||
if (file) {
|
||
try {
|
||
setQrCodeFile(file);
|
||
setParseError('');
|
||
setParsedUrl('');
|
||
showMessage('图片粘贴成功', { severity: 'success', autoHideDuration: 1000 });
|
||
} catch (error) {
|
||
console.error('处理粘贴图片失败:', error);
|
||
showMessage('粘贴图片失败,请重试', { severity: 'error', autoHideDuration: 3000 });
|
||
}
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
};
|
||
|
||
document.addEventListener('paste', handlePaste);
|
||
|
||
return () => {
|
||
document.removeEventListener('paste', handlePaste);
|
||
};
|
||
}, [expanded, showMessage]);
|
||
|
||
return (
|
||
<Accordion
|
||
expanded={expanded}
|
||
onChange={(_, isExpanded) => onExpandedChange(isExpanded)}
|
||
sx={{
|
||
borderRadius: 4,
|
||
boxShadow: '0 2px 8px rgba(0, 0, 0, 0.08)',
|
||
'&:before': { display: 'none' },
|
||
}}
|
||
>
|
||
<AccordionSummary expandIcon={<ExpandMoreIcon />} sx={{ borderBottom: 'none' }}>
|
||
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}>
|
||
<LinkIcon color="success" />
|
||
<Typography variant="subtitle1" sx={{ fontWeight: 700 }}>
|
||
二维码转 URL
|
||
</Typography>
|
||
</Box>
|
||
</AccordionSummary>
|
||
<AccordionDetails>
|
||
<Stack spacing={3}>
|
||
<Box
|
||
sx={{
|
||
display: 'flex',
|
||
flexDirection: 'column',
|
||
alignItems: 'center',
|
||
justifyContent: 'center',
|
||
minHeight: 200,
|
||
border: '2px dashed',
|
||
borderColor: qrCodeFile ? qrCodePageStyles.successColor : 'grey.200',
|
||
borderRadius: 3,
|
||
p: 4,
|
||
bgcolor: qrCodeFile ? 'rgba(76, 175, 80, 0.05)' : 'grey.50',
|
||
cursor: 'pointer',
|
||
transition: 'all 0.2s',
|
||
'&:hover': {
|
||
borderColor: qrCodePageStyles.successColor,
|
||
bgcolor: 'rgba(76, 175, 80, 0.05)',
|
||
},
|
||
}}
|
||
>
|
||
<input
|
||
type="file"
|
||
accept="image/*"
|
||
onChange={handleFileChange}
|
||
style={{
|
||
display: 'none',
|
||
}}
|
||
id="qr-code-upload"
|
||
/>
|
||
<label
|
||
htmlFor="qr-code-upload"
|
||
style={{ cursor: 'pointer', textAlign: 'center', width: '100%' }}
|
||
>
|
||
{qrCodeFile ? (
|
||
<Box sx={{ textAlign: 'center', width: '100%', position: 'relative' }}>
|
||
<Box sx={{ position: 'relative', display: 'inline-block' }}>
|
||
<img
|
||
src={URL.createObjectURL(qrCodeFile)}
|
||
alt="QR Code Preview"
|
||
style={{
|
||
maxWidth: '100%',
|
||
maxHeight: 160,
|
||
borderRadius: 8,
|
||
objectFit: 'contain',
|
||
}}
|
||
/>
|
||
<Button
|
||
variant="contained"
|
||
size="small"
|
||
onClick={(e) => {
|
||
e.stopPropagation();
|
||
setQrCodeFile(null);
|
||
setParsedUrl('');
|
||
setParseError('');
|
||
showMessage('图片已清除', {
|
||
severity: 'success',
|
||
autoHideDuration: 1000,
|
||
});
|
||
}}
|
||
sx={{
|
||
position: 'absolute',
|
||
top: -8,
|
||
right: -8,
|
||
minWidth: '32px',
|
||
width: '32px',
|
||
height: '32px',
|
||
borderRadius: '50%',
|
||
bgcolor: 'rgba(244, 67, 54, 0.9)',
|
||
color: 'white',
|
||
boxShadow: '0 2px 4px rgba(0, 0, 0, 0.2)',
|
||
transition: 'all 0.2s ease-in-out',
|
||
'&:hover': {
|
||
bgcolor: 'rgba(211, 47, 47, 0.95)',
|
||
transform: 'scale(1.1)',
|
||
boxShadow: '0 4px 8px rgba(0, 0, 0, 0.3)',
|
||
},
|
||
'&:active': {
|
||
transform: 'scale(0.95)',
|
||
},
|
||
display: 'flex',
|
||
alignItems: 'center',
|
||
justifyContent: 'center',
|
||
fontWeight: 700,
|
||
fontSize: '16px',
|
||
lineHeight: 1,
|
||
padding: 0,
|
||
}}
|
||
>
|
||
×
|
||
</Button>
|
||
</Box>
|
||
<Typography variant="body2" color="text.secondary" sx={{ mt: 2 }}>
|
||
{qrCodeFile.name}
|
||
</Typography>
|
||
<Typography variant="caption" color="text.secondary">
|
||
点击更换图片
|
||
</Typography>
|
||
</Box>
|
||
) : (
|
||
<>
|
||
<ImageIcon sx={{ fontSize: 48, color: 'grey.300', mb: 2 }} />
|
||
<Typography variant="body2" color="text.secondary" sx={{ mb: 1 }}>
|
||
点击、拖拽或粘贴上传二维码图片
|
||
</Typography>
|
||
<Typography variant="caption" color="text.secondary">
|
||
支持 PNG、JPG、WEBP 格式
|
||
</Typography>
|
||
</>
|
||
)}
|
||
</label>
|
||
</Box>
|
||
|
||
<Button
|
||
variant="contained"
|
||
startIcon={parsing ? <CircularProgress size={16} color="inherit" /> : <LinkIcon />}
|
||
onClick={parseQrCode}
|
||
disabled={parsing}
|
||
sx={{
|
||
py: 1.2,
|
||
borderRadius: 3,
|
||
bgcolor: qrCodePageStyles.successColor,
|
||
fontWeight: 700,
|
||
'&:hover': {
|
||
bgcolor: qrCodePageStyles.successDark,
|
||
},
|
||
}}
|
||
>
|
||
{parsing ? '解析中...' : '解析二维码'}
|
||
</Button>
|
||
|
||
<Box
|
||
sx={{
|
||
position: 'relative',
|
||
mt: 2,
|
||
}}
|
||
>
|
||
<TextField
|
||
label="解析结果"
|
||
value={parsedUrl}
|
||
fullWidth
|
||
variant="outlined"
|
||
slotProps={{
|
||
input: {
|
||
readOnly: true,
|
||
endAdornment: (
|
||
<InputAdornment position="end">
|
||
<CopyButton
|
||
text={parsedUrl}
|
||
tooltip="复制"
|
||
size="small"
|
||
color={qrCodePageStyles.primaryColor}
|
||
showMessage={showMessage}
|
||
/>
|
||
</InputAdornment>
|
||
),
|
||
},
|
||
}}
|
||
sx={qrCodePageStyles.INPUT_STYLE}
|
||
/>
|
||
</Box>
|
||
|
||
{parseError && (
|
||
<Alert severity="error" sx={{ borderRadius: 3 }}>
|
||
{parseError}
|
||
</Alert>
|
||
)}
|
||
</Stack>
|
||
</AccordionDetails>
|
||
</Accordion>
|
||
);
|
||
};
|
||
|
||
export default QrCodeToUrlSection;
|