npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

shadcn-file-upload

v1.0.2

Published

A versatile, customizable file upload component for React, built with shadcn/ui and react-dropzone

Downloads

181

Readme

shadcn-file-upload

A versatile and customizable file upload component for React, built with shadcn/ui and react-dropzone. This component offers a seamless drag-and-drop experience, multiple layout options, and integrates perfectly with shadcn/ui projects.

Background

While working on a project using shadcn/ui, I realized there wasn't a drag-and-drop file upload component that fit my needs. So, I decided to create one that not only works well with shadcn/ui but also offers flexibility in terms of layout and functionality. This component is the result of that effort, and I'm excited to share it with the community!

Features

  • 🖱️ Drag and drop file upload
  • 📏 Vertical and horizontal layout modes
  • 🔢 Single and multiple file upload modes
  • 🎨 Customizable text and icons
  • 📁 File type and size limit options
  • 🎭 Built with shadcn/ui for consistent styling
  • 📱 Responsive design

Installation

There are two ways to use this component:

1. Using npm

npm install shadcn-file-upload

2. Copy and Paste

You can also copy and paste the FileUpload.jsx file into your project's components directory or wherever you want it to be and import it as a component where you want it to be used.

Usage

Here are some examples of how to use the FileUpload component:

Basic Usage

import React from 'react';
import FileUpload from './your/path/to/FileUpload.jsx';

function App() {
  const handleFilesUploaded = (files) => {
    console.log('Uploaded files:', files);
  };

  return (
    <FileUpload
      onFilesUploaded={handleFilesUploaded}
    />
  );
}

export default App;

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | mode | 'vertical' | 'horizontal' | 'vertical' | Layout mode of the component | | uploadMode | 'single' | 'multi' | 'single' | Single or multiple file upload mode | | defaultText | string | 'Upload file' | Text displayed in the upload area | | maxSize | number | 20 * 1024 * 1024 (20MB) | Maximum file size in bytes | | acceptedFileTypes | object | { 'application/pdf': ['.pdf'], 'application/msword': ['.doc'], 'application/vnd.openxmlformats-officedocument.wordprocessingml.document': ['.docx'] } | Object specifying accepted MIME types and their extensions | | onFilesUploaded | (files: File[] | File | null) => void | - | Callback function when files are uploaded or removed |

Vertical Mode with Custom Text (Default)

In the mode, the upload icon is displayed at the top, and the default text is displayed in the center.

<FileUpload
  mode="vertical"
  defaultText="Drop your files here"
  onFilesUploaded={handleFilesUploaded}
/>

Horizontal Mode

In the mode, the upload icon is displayed at the left, and the default text is displayed in the center.

<FileUpload
  mode="horizontal"
  defaultText="Drag and drop files here"
  onFilesUploaded={handleFilesUploaded}
/>

Single File Upload

This option allows you to upload a single file at a time, and when a file is selected, the upload zone disappears. The uploaded file will be displayed in the component.

<FileUpload
  uploadMode="single"
  onFilesUploaded={handleFilesUploaded}
/>

Multiple File Upload

This option allows you to upload multiple files at once. When a file is selected, the upload zone is still visible and the selected files are displayed below it.

<FileUpload
  uploadMode="multi"
  onFilesUploaded={handleFilesUploaded}
/>

Custom File Types and Size Limit

You can customize the accepted file types and the maximum file size.

<FileUpload
  acceptedFileTypes={{
    'image/jpeg': ['.jpg', '.jpeg'],
    'image/png': ['.png']
  }}
  maxSize={10 * 1024 * 1024} // 10MB
  onFilesUploaded={handleFilesUploaded}
/>

Styling

This component is built with shadcn/ui, ensuring it fits seamlessly into your shadcn/ui project. The styling uses Tailwind CSS classes, making it easy to customize if needed.

Contributing

Contributions are welcome! If you have any ideas for improvements or find any issues, please feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License.


We hope you find this component useful for your projects! If you have any questions or need further assistance, please don't hesitate to reach out or open an issue on GitHub.

Happy coding! 🚀