Coder Social home page Coder Social logo

jkso / file-tree-generator Goto Github PK

View Code? Open in Web Editor NEW

This project forked from migliori/file-tree-browser

0.0 0.0 0.0 31.65 MB

File Tree Generator recovers directories and files recursively from a main directory, shows the tree structure & allows to choose a file.

Home Page: https://www.file-tree-generator.miglisoft.com

License: GNU General Public License v3.0

JavaScript 81.26% PHP 1.23% TypeScript 8.99% CSS 1.09% HTML 7.43%

file-tree-generator's Introduction

File Tree Generator

Demo

https://www.file-tree-generator.miglisoft.com/

Table of contents

Overview

File Tree Generator is a Javascript plugin built to browse folders and select files.

It retrieves directories and files recursively with Ajax from a main directory and displays the tree structure. You can browse and select, move files from folder to folder, do any stuff with the choosen file.

File Tree Generator is programmed in Vanilla Javascript (compiled TypeScript) and doesn't require any dependency.

a PHP connector is provided to retrieve the main directory content, you can write your own in any server language (NodeJS, ASP, ...).

The default template is built with Bootstrap 4, but Bootstrap is not required at all. You can easily add your own HTML/CSS template and change markup to fit your needs.

Quick start

  • Upload the dist folder on your server
  • add the HTML markup on your page:
<!--
    This is a minimal example.
    You can change anything here,
    The File Tree Generator requires only a main wrapper
    with .ft-tree and .ft-explorer inside.
-->
<div id="custom-id">
    <div class="ft-tree"></div>
    <div class="ft-explorer"></div>
</div>
  • add the Javascript code:
<script src="dist/js/file-tree.js"></script>
<script>
    document.addEventListener("DOMContentLoaded", function(event) {

        var options = {
            mainDir: '/path/to/directory',
            elementClick: function (filePath, fileName) {
                // do anything you want
            },
            cancelBtnClick: function (filePath, fileName) {
                // do anything you want
            },
            okBtnClick: function (filePath, fileName) {
                // do anything you want
            }
        };

        var ft = new fileTree('file-tree-wrapper', options);
    });
</script>

Options

Name type Default Value Description
connector string 'php' connector file extension in dist/connectors/connector.[ext]
dragAndDrop boolean true allow or disallow to drag files from folder to folder
explorerMode string 'list' 'list' or 'grid'
extensions array ['.*'] Array with the authorized file extensions
mainDir string 'demo-files' main directory id
maxDeph number 3 deph of the folders to browse from the main directory
cancelBtn boolean true add a cancel button or not
cancelBtnText string 'Cancel' text for the Cancel button
okBtn boolean true add an OK button or not
okBtnText string 'Ok' text for the Ok button
template string 'bootstrap4' name of the HTML/CSS template files in dist/templates/
elementClick function function (filePath, fileName) {console.log(filePath); console.log(fileName);} callback function called when the user clicks any file in the explorer
cancelBtnClick function function () { console.log('Cancel'); } callback function called when the user clicks the explorer cancel button
okBtnClick function function (filePath, fileName) {console.log(filePath); console.log(fileName);} callback function called when the user clicks the explorer OK button

How to customize the HTML/ CSS

The template files are used to generate the File Explorer html code.

They are located in dist/templates/

To create your own templates

  • Create your HTML file + your css file with the same name for both in dist/templates/

  • Your HTML template MUST:

    • include exactly the same <template> tags with the exact IDs as the default Bootstrap 4 template. ie:

      <template id="explorer-mode">...</template>
    • Each <template> tag MUST include elements having the prefixed CSS classes ft-

  • Load your template using the template option:

    <script>
        document.addEventListener("DOMContentLoaded", function(event) {
    
            var options = {
                // ...
                template: 'your-custom-template'
            };
    
            var ft = new fileTree('file-tree-wrapper', options);
        });
    </script>

You can use any HTML structure, any element, as long as the templates are all present with their respective IDs, and all the necessary prefixed classes are present in each of them.

WARNING: if there's a missing <template> tag or a missing prefixed class, Javascript will throw the following console error:

'Augh, there was an error!'

Connnectors

The default connector is written in PHP. You can write your own in any server language (nodeJs, ASP, ...). ie:

  • create your connector file named dist/connectors.connector.asp

  • Load it using the connector option:

    <script>
        document.addEventListener("DOMContentLoaded", function(event) {
    
            var options = {
                // ...
                connector: 'asp'
            };
    
            var ft = new fileTree('file-tree-wrapper', options);
        });
    </script>

Contribute

Any new connector or cool template is welcome!

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Gilles Migliori - Initial work - Migliori

License

This project is licensed under the GNU GENERAL PUBLIC LICENSE - see the LICENSE file for details

file-tree-generator's People

Contributors

migliori avatar dependabot[bot] 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.