GithubHelp home page GithubHelp logo

frontend-2030 / material-ui-dropzone Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pandemicode/material-ui-dropzone

1.0 0.0 0.0 10.88 MB

A Material-UI File Upload Dropzone

License: MIT License

JavaScript 100.00%

material-ui-dropzone's Introduction

material-ui-dropzone

License All Contributors Rebuild Dist Workflow Status Update Docs Workflow Status npm package npm downloads

@pandemicode/material-ui-dropzone a fork of Material-UI-Dropzone is a set of React components using Material-UI and is based on the excellent react-dropzone library.

These components provide:

  • File Upload Dropzone
  • File Upload Dropzone inside of a Dialog

Additionally, the File Upload Dropzone features some snazzy "File Allowed/Not Allowed" effects, previews and alerts.

Before proceeding with using this module, refer to the disclaimer section on the end of this README.

Installation

npm install --save @pandemicode/material-ui-dropzone

or

yarn add @pandemicode/material-ui-dropzone

Support

@pandemicode/material-ui-dropzone complies to the following support matrix.

version React Material-UI
3.x 16.8+ 4.x
2.x 15.x or 16.x 3.x or 4.x

Demo

Full documentation and samples are available here https://github.com/pandemicode/material-ui-dropzone.

Preview: Dialog Component with drag'n'drop effects for accepted and rejected files.

drawing



Disclaimer: Drag'n'drop handling has some known limitations, see here for more details.

Components

DropzoneArea

This components creates the dropzone, previews and snackbar notifications without a dialog

import React, {Component} from 'react'
import {DropzoneArea} from 'material-ui-dropzone'

class DropzoneAreaExample extends Component{
  constructor(props){
    super(props);
    this.state = {
      files: []
    };
  }
  handleChange(files){
    this.setState({
      files: files
    });
  }
  render(){
    return (
      <DropzoneArea
        onChange={this.handleChange.bind(this)}
        />
    )
  }
}

export default DropzoneAreaExample;

DropzoneDialog

This component provides the DropzoneArea inside of a MaterialUI Dialog.

import React, { Component } from 'react'
import {DropzoneDialog} from 'material-ui-dropzone'
import Button from '@material-ui/core/Button';

export default class DropzoneDialogExample extends Component {
    constructor(props) {
        super(props);
        this.state = {
            open: false,
            files: []
        };
    }

    handleClose() {
        this.setState({
            open: false
        });
    }

    handleSave(files) {
        //Saving files to state for further use and closing Modal.
        this.setState({
            files: files,
            open: false
        });
    }

    handleOpen() {
        this.setState({
            open: true,
        });
    }

    render() {
        return (
            <div>
                <Button onClick={this.handleOpen.bind(this)}>
                  Add Image
                </Button>
                <DropzoneDialog
                    open={this.state.open}
                    onSave={this.handleSave.bind(this)}
                    acceptedFiles={['image/jpeg', 'image/png', 'image/bmp']}
                    showPreviews={true}
                    maxFileSize={5000000}
                    onClose={this.handleClose.bind(this)}
                />
            </div>
        );
    }
}

License

MIT

Contributors

Thanks goes to these wonderful people (emoji key):


Yuvaleros

๐Ÿค” ๐Ÿ’ป ๐ŸŽจ ๐Ÿ“– ๐Ÿ’ฌ ๐Ÿ‘€ ๐Ÿšง

Mattia Panzeri

๐Ÿค” ๐Ÿ’ป ๐ŸŽจ ๐Ÿ“– ๐Ÿ’ก ๐Ÿš‡ ๐Ÿ› ๐Ÿ’ฌ ๐Ÿ‘€ ๐Ÿšง

Max Carroll

๐Ÿค” ๐Ÿ’ป ๐ŸŽจ ๐Ÿ’ก ๐Ÿ‘€

Matthew Corner

๐Ÿ› ๐Ÿค” ๐Ÿ’ป

Barry Loong

๐Ÿค” ๐Ÿ’ป

JF Blouin

๐Ÿค” ๐Ÿ’ป

Anthony Raymond

๐Ÿ’ป ๐Ÿ’ก

isaacbuckman

๐Ÿ› ๐Ÿ’ป ๐Ÿ’ก

MatthijsMud

๐Ÿ› ๐Ÿ’ป

This project follows the all-contributors specification. Contributions of any kind welcome!

Disclaimer

Material UI Dropzone original repo is here https://github.com/Yuvaleros/material-ui-dropzone.

This fork is an independent build which may incorporate more features and bug fixes and is not dependent of the original repo maintainers review process or release cycle.

Furthermore, any features or bug fixes, that result from this independent build will always be contributed back to the original repo when possible.

This repo will also be maintained in sync with it's upstream, every time possible.

material-ui-dropzone's People

Contributors

aflatoonsingh avatar aheissenberger avatar anthonyraymond avatar arunkumarpalaniappan avatar chattling avatar dependabot[bot] avatar diaver avatar dimitriadamou avatar erichunzeker avatar faupol3 avatar georgiydubrov avatar haysclark avatar igornfaustino avatar is343 avatar isaacbuckman avatar jluboff avatar jpinho avatar jporsay avatar keropodium avatar loongyh avatar lukafurlan123 avatar mattcorner avatar max-carroll avatar panz3r avatar peterchq avatar piccirello avatar skoging avatar voros1 avatar yuvaleros avatar yuvfolinks avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.