
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
react-files-preview
Advanced tools
A React file preview component with built-in support for image editing, image carousel/slider, and download functionality, making it easy to display and manage files in your application
A versatile React component to display and manage file previews, supporting various customization options.
react-photo-editor
(brightness, contrast, rotate, flip, draw, etc.).files
as a prop for controlled behavior.onChange
, onRemove
, onError
, onClick
, and onDrop
.# Using npm
npm install react-files-preview
# Using yarn
yarn add react-files-preview
import React, { useState } from "react";
import { ReactFilesPreview } from "./components/ReactFilesPreview";
function App() {
const [files, setFiles] = useState<File[]>([]);
const handleFileChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const newFiles = Array.from(event.target.files || []);
setFiles((prevFiles) => [...prevFiles, ...newFiles]);
console.log("Selected files:", newFiles);
console.log("All files:", [...files, ...newFiles]);
};
const handleFileRemove = (removedFile: File) => {
setFiles((prevFiles) => prevFiles.filter((file) => file !== removedFile));
console.log("Removed file:", removedFile);
};
return (
<div>
<ReactFilesPreview
files={files}
onChange={handleFileChange}
onRemove={handleFileRemove}
allowEditing
multiple
/>
</div>
);
}
export default App;
See it in action on Stackblitz
Name | Type | Default | Description |
---|---|---|---|
files | File[] | [] | Pass array of file objects for default files |
url | string | null | Set image by passing image URL |
downloadFile | boolean | true | Enables file download |
removeFile | boolean | true | Show file remove icon on file hover |
showFileSize | boolean | true | Show file size under files |
showSliderCount | boolean | true | Show slides count under file slider |
disabled | boolean | false | If true, prevents user to add files by disabling the component |
multiple | boolean | true | Accepts one or more files |
accept | string | Comma-separated lists of file types. See MIME Types | |
maxFileSize | number | Maximum allowed file size in bytes e.g. 1024 x 1024 x 5 == 5MB | |
maxFiles | number | Maximum files allowed to be added | |
width | string | rfp-basis-11/12 | Tailwind CSS flex-basis class https://tailwindcss.com/docs/flex-basis |
height | string | Tailwind CSS height class https://tailwindcss.com/docs/height | |
fileWidth | string | rfp-w-44 | Tailwind CSS width class https://tailwindcss.com/docs/width |
fileHeight | string | rfp-h-32 | Tailwind CSS height class https://tailwindcss.com/docs/height |
getFile | func | Returns all current files | |
onChange | func | Returns selected file(s) | |
onRemove | func | Returns the removed file | |
onError | func | Returns error message as string | |
onClick | func | Returns file on click |
Contributions to react-files-preview
are welcome! If you have any issues, feature requests, or improvements, please open an issue or submit a pull request on the GitHub repository.
git checkout -b feature/amazing-feature
git commit -m 'Add some amazing feature'
git push origin feature/amazing-feature
When reporting issues, please provide:
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A React file preview component with built-in support for image editing, image carousel/slider, and download functionality, making it easy to display and manage files in your application
The npm package react-files-preview receives a total of 647 weekly downloads. As such, react-files-preview popularity was classified as not popular.
We found that react-files-preview demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.