基础示例
使用 Dropup 的最简单方式。
最小化设置
import { useDropup } from '@samithahansaka/dropup';
function BasicUploader() {
const { files, getDropProps, getInputProps } = useDropup();
return (
<div
{...getDropProps()}
style={{
border: '2px dashed #ccc',
borderRadius: 8,
padding: 40,
textAlign: 'center',
cursor: 'pointer',
}}
>
<input {...getInputProps()} />
<p>拖放文件到此处或点击选择</p>
{files.length > 0 && (
<ul style={{ listStyle: 'none', padding: 0, marginTop: 20 }}>
{files.map(file => (
<li key={file.id}>
{file.name} ({(file.size / 1024).toFixed(1)} KB)
</li>
))}
</ul>
)}
</div>
);
}
带上传功能
import { useDropup } from '@samithahansaka/dropup';
function BasicUploadWithSubmit() {
const {
files,
actions,
state,
getDropProps,
getInputProps,
} = useDropup({
upload: {
url: '/api/upload',
method: 'POST',
},
});
return (
<div>
<div
{...getDropProps()}
style={{
border: '2px dashed #ccc',
borderRadius: 8,
padding: 40,
textAlign: 'center',
}}
>
<input {...getInputProps()} />
<p>拖放文件到此处或点击选择</p>
</div>
{/* File List */}
{files.length > 0 && (
<div style={{ marginTop: 20 }}>
<h3>已选择的文件:</h3>
{files.map(file => (
<div
key={file.id}
style={{
display: 'flex',
justifyContent: 'space-between',
padding: 10,
borderBottom: '1px solid #eee',
}}
>
<span>{file.name}</span>
<span>{file.status}</span>
<button onClick={() => actions.remove(file.id)}>移除</button>
</div>
))}
</div>
)}
{/* Upload Button */}
<div style={{ marginTop: 20 }}>
<button
onClick={() => actions.upload()}
disabled={files.length === 0 || state.isUploading}
>
{state.isUploading ? `上传中... ${state.progress}%` : '全部上传'}
</button>
<button onClick={() => actions.reset()} style={{ marginLeft: 10 }}>
清空全部
</button>
</div>
</div>
);
}
单文件上传
import { useDropup } from '@samithahansaka/dropup';
function SingleFileUploader() {
const { files, getDropProps, getInputProps } = useDropup({
multiple: false, // Only allow one file
maxFiles: 1,
});
const file = files[0];
return (
<div {...getDropProps()} style={styles.dropzone}>
<input {...getInputProps()} />
{file ? (
<p>已选择:{file.name}</p>
) : (
<p>拖放文件到此处</p>
)}
</div>
);
}
const styles = {
dropzone: {
border: '2px dashed #ccc',
borderRadius: 8,
padding: 40,
textAlign: 'center' as const,
},
};
限制文件类型
import { useDropup } from '@samithahansaka/dropup';
function ImageOnlyUploader() {
const { files, state, getDropProps, getInputProps } = useDropup({
accept: 'image/*',
onValidationError: (errors) => {
errors.forEach(({ file }) => {
alert(`${file.name} 不是有效的图片`);
});
},
});
return (
<div
{...getDropProps()}
style={{
...styles.dropzone,
borderColor: state.isDragReject ? 'red' : '#ccc',
backgroundColor: state.isDragReject ? '#fff0f0' : 'white',
}}
>
<input {...getInputProps()} />
{state.isDragReject ? (
<p style={{ color: 'red' }}>仅接受图片文件!</p>
) : (
<p>拖放图片到此处</p>
)}
</div>
);
}
使用回调函数
import { useDropup } from '@samithahansaka/dropup';
function UploaderWithCallbacks() {
const { files, actions, getDropProps, getInputProps } = useDropup({
upload: { url: '/api/upload' },
onFilesAdded: (newFiles) => {
console.log('已添加文件:', newFiles.map(f => f.name));
},
onUploadStart: (file) => {
console.log('开始上传:', file.name);
},
onUploadProgress: (file, progress) => {
console.log(`${file.name}:${progress}%`);
},
onUploadComplete: (file, response) => {
console.log('上传完成:', file.name, file.uploadedUrl);
},
onUploadError: (file, error) => {
console.error('上传失败:', file.name, error.message);
},
onAllComplete: (allFiles) => {
const successful = allFiles.filter(f => f.status === 'complete');
console.log(`完成!${successful.length}/${allFiles.length} 个文件上传成功`);
},
});
return (
<div>
<div {...getDropProps()} style={styles.dropzone}>
<input {...getInputProps()} />
<p>拖放文件到此处</p>
</div>
<button onClick={() => actions.upload()}>
上传 ({files.length} 个文件)
</button>
</div>
);
}
独立按钮触发
import { useDropup } from '@samithahansaka/dropup';
function SeparateButtonUploader() {
const {
files,
openFileDialog,
getDropProps,
getInputProps,
} = useDropup();
return (
<div>
{/* Hidden drop zone that still accepts drops */}
<div
{...getDropProps()}
style={{
border: '2px dashed #ccc',
padding: 20,
marginBottom: 10,
}}
>
<input {...getInputProps()} />
<p>拖放文件到此处</p>
</div>
{/* Separate button to open file dialog */}
<button onClick={openFileDialog}>
浏览文件
</button>
{files.length > 0 && (
<p>已选择 {files.length} 个文件</p>
)}
</div>
);
}
自动上传
import { useDropup } from '@samithahansaka/dropup';
function AutoUploader() {
const { files, getDropProps, getInputProps } = useDropup({
upload: { url: '/api/upload' },
autoUpload: true, // Files upload automatically when added
onUploadComplete: (file) => {
console.log('已上传:', file.uploadedUrl);
},
});
return (
<div {...getDropProps()} style={styles.dropzone}>
<input {...getInputProps()} />
<p>拖放文件到此处 - 将自动上传!</p>
{files.map(file => (
<div key={file.id}>
{file.name}:
{file.status === 'uploading' && ` ${file.progress}%`}
{file.status === 'complete' && ' 完成!'}
{file.status === 'error' && ` 错误:${file.error?.message}`}
</div>
))}
</div>
);
}