Skip to content

deyihu/filednd

Repository files navigation

filednd

Files Drag and Drop

Features

  • Support for multiple files
  • Support folder
  • Support toTree(Data structure of tree)

Demo

filednd

Install

NPM

 npm i filednd
#  or
yarn add filednd 

CDN

<script src="https://unpkg.com/filednd/dist/filednd.js"></script>

API

FileDND

constructor(ele)

  • ele : HTMLElement
import {
    FileDND
} from 'filednd';
const fdnd = new FileDND(document.querySelector('#zone'));

// if you use cdn 
// const fdnd = new filednd.FileDND(document.querySelector('#zone'));

methods

  • dnd(callback) listen htmlelement drag and drop
fdnd.dnd((files) => {
    console.log(files);
});
  • toTree() Convert file collection structure to tree data structure
  const treeData = fdnd.toTree();
  • clear() clear all files
 fdnd.clear();
  • dispose() ``
 fdnd.dispose();

events

  • readstart
const readStart = () => {

}
fdnd.on('readstart', readStart)
//  fdnd.off('readstart', readStart)
  • readend
const readEnd = () => {

}
fdnd.on('readend', readEnd)
//  fdnd.off('readstart', readEnd)

Links

file-type If you want to determine the file type, you can refer to this library