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-draggable-list

v0.2.0

Published

vue draggable list

Downloads

151

Readme

vue-draggable-list

npm

vue-draggable-list is a vue drag and drop component utilising mobile-drag-drop.

Originally created for Musare.

Dependencies

  • Vue 3
  • NodeJS v16+

Installation

  1. Install the package

    npm install vue-draggable-list
  2. Import styling in to your package globally

    @import "vue-draggable-list/dist/style.css";
  3. Import component

    import { DraggableList } from "vue-draggable-list";
  4. Use the component

    <draggable-list
        item-key="_id"
        v-model:list="myList"
        :attributes="{
            class: element => ({
                'left': element.left
            }),
            title: 'Title'
        }"
        tag="div"
        group="myGroup"
        :disabled="isListDisabled()"
        :touch-timeout="250"
        @start="drag = true"
        @end="drag = false"
        @update="updateList"
    >
        <template #item="{ element, index }">
            <my-element :data="element" :index="index" />
        </template>
    </draggable-list>

Props

| Name | Type | Default | Optional | Description | | --- | --- | --- | --- | --- | | itemKey | String | | No | Name of the property that is unique in each list item. | | list | Array | | No | List of items, if defined as a v-model any updates will be applied to provided list. | | attributes | Object | | Yes | Object of functions or attributes of any type that will be called or applied to each item and added as an attribute. | | tag | String | div | Yes | Name of the HTML element of each item. | | group | String | | Yes | Name of the group, so you can move items between different lists in the same group. Leaving it empty will disable moving between lists. | | disabled | Boolean or Function | false | Yes | Used to disable dragging inside a list in general, or with a function you can prevent specific items from being dragged. | | touchTimeout | Number | 250 | Yes | Time in milliseconds that a user is required to hold list item before dragging is started. | | handleClass | String | N/A | Yes | Class of handle elements. For example: "handle". If specified, only elements with this class can be used to start dragging. |

Emits

| Name | Data | Description | | --- | --- | --- | | start | | Emitted when dragging starts. | | end | | Emitted when dragging stops. | | update | { moved: { oldIndex: Number, newIndex: Number, updatedList: Array } | Emitted when an element is dropped in the same list, which returns the old and new index and the new list of items. |