feat: Implement end-to-end photo upload functionality
- Add file input with hidden native picker - Convert selected images to base64 data URLs - Validate file type (images only) and size (max 5MB) - Display error alerts for invalid uploads - Show preview immediately after selection - Update help text to indicate camera button functionality - Handle image load/error states properly Now clicking the camera button opens file picker and uploads work fully. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { useState } from 'react';
|
import { useState, useRef } from 'react';
|
||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
Avatar,
|
Avatar,
|
||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
TextField,
|
TextField,
|
||||||
Typography,
|
Typography,
|
||||||
Paper,
|
Paper,
|
||||||
|
Alert,
|
||||||
} from '@mui/material';
|
} from '@mui/material';
|
||||||
import { PhotoCamera, Person } from '@mui/icons-material';
|
import { PhotoCamera, Person } from '@mui/icons-material';
|
||||||
|
|
||||||
@@ -27,6 +28,8 @@ export function PhotoUpload({
|
|||||||
size = 100
|
size = 100
|
||||||
}: PhotoUploadProps) {
|
}: PhotoUploadProps) {
|
||||||
const [imageError, setImageError] = useState(false);
|
const [imageError, setImageError] = useState(false);
|
||||||
|
const [uploadError, setUploadError] = useState<string>('');
|
||||||
|
const fileInputRef = useRef<HTMLInputElement>(null);
|
||||||
|
|
||||||
const handleImageError = () => {
|
const handleImageError = () => {
|
||||||
setImageError(true);
|
setImageError(true);
|
||||||
@@ -36,6 +39,46 @@ export function PhotoUpload({
|
|||||||
setImageError(false);
|
setImageError(false);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleFileSelect = async (event: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
const file = event.target.files?.[0];
|
||||||
|
if (!file) return;
|
||||||
|
|
||||||
|
// Validate file type
|
||||||
|
if (!file.type.startsWith('image/')) {
|
||||||
|
setUploadError('Please select an image file');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate file size (max 5MB)
|
||||||
|
const maxSize = 5 * 1024 * 1024; // 5MB
|
||||||
|
if (file.size > maxSize) {
|
||||||
|
setUploadError('Image size must be less than 5MB');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert to base64
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.onload = (e) => {
|
||||||
|
const base64String = e.target?.result as string;
|
||||||
|
onChange(base64String);
|
||||||
|
setUploadError('');
|
||||||
|
setImageError(false);
|
||||||
|
};
|
||||||
|
reader.onerror = () => {
|
||||||
|
setUploadError('Failed to read image file');
|
||||||
|
};
|
||||||
|
reader.readAsDataURL(file);
|
||||||
|
|
||||||
|
// Reset input
|
||||||
|
if (fileInputRef.current) {
|
||||||
|
fileInputRef.current.value = '';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCameraClick = () => {
|
||||||
|
fileInputRef.current?.click();
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 2, alignItems: 'center' }}>
|
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 2, alignItems: 'center' }}>
|
||||||
<Paper
|
<Paper
|
||||||
@@ -56,6 +99,12 @@ export function PhotoUpload({
|
|||||||
{label}
|
{label}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
|
{uploadError && (
|
||||||
|
<Alert severity="error" onClose={() => setUploadError('')} sx={{ width: '100%' }}>
|
||||||
|
{uploadError}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
<Box sx={{ position: 'relative' }}>
|
<Box sx={{ position: 'relative' }}>
|
||||||
<Avatar
|
<Avatar
|
||||||
src={!imageError && value ? value : undefined}
|
src={!imageError && value ? value : undefined}
|
||||||
@@ -71,6 +120,15 @@ export function PhotoUpload({
|
|||||||
{!value || imageError ? <Person sx={{ fontSize: size / 2 }} /> : null}
|
{!value || imageError ? <Person sx={{ fontSize: size / 2 }} /> : null}
|
||||||
</Avatar>
|
</Avatar>
|
||||||
|
|
||||||
|
<input
|
||||||
|
ref={fileInputRef}
|
||||||
|
type="file"
|
||||||
|
accept="image/*"
|
||||||
|
style={{ display: 'none' }}
|
||||||
|
onChange={handleFileSelect}
|
||||||
|
disabled={disabled}
|
||||||
|
/>
|
||||||
|
|
||||||
<IconButton
|
<IconButton
|
||||||
sx={{
|
sx={{
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
@@ -85,10 +143,7 @@ export function PhotoUpload({
|
|||||||
}}
|
}}
|
||||||
size="small"
|
size="small"
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
onClick={() => {
|
onClick={handleCameraClick}
|
||||||
// Future: Open file picker for actual upload
|
|
||||||
// For now, user can paste URL below
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<PhotoCamera fontSize="small" />
|
<PhotoCamera fontSize="small" />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
@@ -102,7 +157,7 @@ export function PhotoUpload({
|
|||||||
size="small"
|
size="small"
|
||||||
placeholder="https://example.com/photo.jpg"
|
placeholder="https://example.com/photo.jpg"
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
helperText="Paste an image URL or upload a photo"
|
helperText="Click camera to upload or paste an image URL"
|
||||||
/>
|
/>
|
||||||
</Paper>
|
</Paper>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user