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

vue-file-selector

v2.0.2

Published

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

Downloads

2,766

Readme

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

| Name | Default | Description | | -- | -- | -- | | default | Select | Content of the Select button. | | loader | Loading... | Content of loading state. | | top | (empty) | Top section content, above the Select button. | | bottom | (empty) | Bottom section content, below the Select button. |

Props

| Name | Type | Default | Description | | -- | -- | -- | -- | | multiple | boolean | false | Allow multiple files selected. | | isLoading | boolean | false | Show or hide the loading section (slot: loader). | | acceptExtensions | string | (empty) | List of file extensions accepted. Each extension separated by a comma (,). E.g. accept-extensions=".zip,.rar". | | maxFileSize | number | NaN | Maximum size in byte of every single file allowed. E.g. :max-file-size="2*1024*1024" (only the files that ≤2 MB are allowed). | | height | number | NaN | The height of droppable section. | | validateFn | FsValidateFn | () => true | A 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.

| Code | Error description | | -- | -- | | EXTENSION_ERROR | The selected files contain invalid extensions. | | FILE_SIZE_ERROR | The selected files size exceeded limit. | | MULTIFILES_ERROR | Multiple files selection is not allowed. |

License

FOSSA Status