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

@syncfusion/ej2-vue-filemanager

v25.2.3

Published

Essential JS 2 FileManager Component for Vue

Downloads

1,231

Readme

Vue FileManager Component

The Vue FileManager component is a graphical user interface that allows users to manage their file system in an intuitive and efficient manner. With this component, you can easily access, edit, upload, download, and organize files and folders. It also offers a convenient way to browse and select items from the file system.

Setup

Create an Vue Application

You can use Vue CLI to setup your Vue 2 applications.To install Vue CLI use the following commands.

npm install -g @vue/cli
vue create quickstart
cd quickstart
npm run serve

Initiating a new project prompts us to choose the type of project to be used for the current application. Select the option Default ([Vue 2] babel, eslint) from the menu.

Adding Syncfusion FileManager package

All Syncfusion Vue packages are published in npmjs.com registry. To install Vue FileManager package, use the following command.

npm install @syncfusion/ej2-vue-filemanager --save

Registering Vue FileManager component

You can register the FileManager component in your application by using the Vue.use(). Refer to the code example given below.

import { FileManagerPlugin } from "@syncfusion/ej2-vue-filemanager";

Vue.use(FileManagerPlugin);

Registering FileManagerPlugin in vue, will register the FileManager component along with its required child directives globally.

Adding CSS references for FileManager

Add CSS references needed for FileManager in style section of the App.vue file from ../node_modules/@syncfusion package folder.

<style>
@import "../node_modules/@syncfusion/ej2-base/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-icons/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-popups/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-buttons/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-layouts/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-grids/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-vue-filemanager/styles/bootstrap5.css";
</style>

Add Vue FileManager component

Add the Vue FileManager by using ejs-filemanager selector in template section of the App.vue file.

<template>
<div id="app">
    <ejs-filemanager id="file-manager" :ajaxSettings="ajaxSettings">
    </ejs-filemanager>
</div>
</template>
<script>
import Vue from "vue";
import { FileManagerPlugin } from "@syncfusion/ej2-vue-filemanager";

Vue.use(FileManagerPlugin);
export default {
data () {
    return {
       ajaxSettings:
        {
            url: "https://ej2-aspcore-service.azurewebsites.net/api/FileManager/FileOperations"
        }
    };
}
}
</script>

Refer the Getting Started with Vue3 for using Syncfusion Vue FileManager components in Vue 3 applications.

Supported frameworks

The FileManager component is also offered in the following list of frameworks.

|      JavaScript     |        Angular       |        React          |   ASP.NET Core   |   ASP.NET MVC   | | :-----: | :-----: | :-----: | :-----: | :-----: |

Key features

  • File and directory management: The component allows users to upload, download, rename, sort, cut, copy, and paste files and directories.
  • Multiple layout options: The component supports both large icons view and details view layout, giving users the ability to choose the display option that works best for them.
  • Multiple file providers: The component supports a range of file providers, including Amazon S3, MS Azure, NodeJS, Google file systems, and local physical file providers, giving users flexibility in how they store and access their files.
  • Search functionality: The component includes a search feature that allows users to easily locate specific files within their file system.
  • Customizable interface: The component's interface can be customized to fit the needs and preferences of users, allowing for a personalized experience.
  • Responsive design: The component is designed to be responsive, ensuring that it works seamlessly across a range of devices and screen sizes.
  • Easy integration: The component is easy to integrate into existing projects, making it a convenient and straightforward solution for file management.
  • Context menu: The component includes a context menu that allows users to quickly and easily access file management options.
  • Toolbar: The component's toolbar provides a flexible way to manage file operations, making it easy for users to perform common tasks.
  • Access control: The component allows users to define a set of access rules for their folders and files, giving them control over who can access specific resources.
  • Multiple file selection: The component supports the selection of multiple files, making it easy for users to perform bulk operations.
  • Localization: The component supports localization, allowing it to be used in a variety of languages and regions.
  • Accessibility: The component is designed with accessibility in mind, ensuring that it is usable by users with disabilities.

Support

Product support is available through the following mediums.

Changelog

Check the changelog here. Get minor improvements and bug fixes every week to stay up to date with frequent updates.

License and copyright

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. To acquire a license for 80+ Vue UI components, you can purchase or start a free 30-day trial. A free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers. See LICENSE FILE for more info.

© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.