Socket
Socket
Sign inDemoInstall

vue-file-selector

Package Overview
Dependencies
21
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-file-selector

File selector component that supports drag-n-drop for VueJs 3


Version published
Weekly downloads
597
decreased by-0.33%
Maintainers
1
Install size
30.0 kB
Created
Weekly downloads
 

Readme

Source

Vue File selector for Vuejs 3

FOSSA Status

File selector with validation that supports drag-n-drop for Vuejs.

Vue File selector

Other open source projects

  • ImageGlass - A lightweight, versatile image viewer: https://imageglass.org
  • Fluent Reveal Effect Js (Fluent Design System): https://github.com/d2phap/fluent-reveal-effect
  • FileWatcherEx - A wrapper of C# FileSystemWatcher for Windows: https://github.com/d2phap/FileWatcherEx

Install

Run the command

npm i vue-file-selector@latest

NPM package: https://www.npmjs.com/package/vue-file-selector

Github source: https://github.com/d2phap/vue-file-selector

Usage

Please see Demo project for full example.

Declare the plugin

// in main.ts

import { createApp } from 'vue';

// import FileSelector main css
import 'vue-file-selector/dist/main.css';

// import the FileSelector plugin
import FileSelector from 'vue-file-selector';


import App from './App.vue';

createApp(App)

  // then use it!
  .use(FileSelector)
  .mount('#app');

Use in Vue file

<template>
  <div>
    <FileSelector
      accept-extensions=".jpg,.svg"
      :multiple="true"
      :max-file-size="5 * 1024 * 1024"
      @validated="handleFilesValidated"
      @changed="handleFilesChanged">
      Select image files
    </FileSelector>
  </div>
</template>

<script lang="ts">
import { Options, Vue } from 'vue-class-component';
import { FsValidationResult } from 'vue-file-selector/dist';

@Options({})
export default class App extends Vue {
  handleFilesValidated(result: FsValidationResult, files: File[]) {
    console.log('Validation result: ' + result);
  },

  handleFilesChanged(files: File[]) {
    console.log('Selected files: ');
    console.table(files);
  },
}
</script>

Slots

NameDefaultDescription
defaultSelectContent of the Select button.
loaderLoading...Content of loading state.
top(empty)Top section content, above the Select button.
bottom(empty)Bottom section content, below the Select button.

Props

NameTypeDefaultDescription
multiplebooleanfalseAllow multiple files selected.
isLoadingbooleanfalseShow or hide the loading section (slot: loader).
acceptExtensionsstring(empty)List of file extensions accepted. Each extension separated by a comma (,). E.g. accept-extensions=".zip,.rar".
maxFileSizenumberNaNMaximum size in byte of every single file allowed. E.g. :max-file-size="2*1024*1024" (only the files that ≤2 MB are allowed).
heightnumberNaNThe height of droppable section.
validateFnFsValidateFn() => trueA custom validation function that returns boolean value.

Events

1. @validated

Occurs after the selected files validated.

Function(result: FsValidationResult, files: File[]): void
  • result: validation result,
  • files: list of files validated.

2. @changed

Occurs if the selected files pass validation.

Function(files: File[]): void
  • files: list of files validated.

Error codes

List of error codes returned after validation, see FsValidationResult.

CodeError description
EXTENSION_ERRORThe selected files contain invalid extensions.
FILE_SIZE_ERRORThe selected files size exceeded limit.
MULTIFILES_ERRORMultiple files selection is not allowed.

License

FOSSA Status

Keywords

FAQs

Last updated on 17 Jun 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc