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-multiclick

v1.1.1

Published

A renderless Vue component for managing list item selection state

Downloads

52

Readme

Vue-Multiclick

Actions Status

A renderless Vue component for managing list item selection state.

Install

$ npm install vue-multiclick --save

or include the UMD build, hosted by unpkg in a <script> tag.

<script src="//unpkg.com/vue-multiclick" />

Usage

Import and register the component.

import VueMulticlick from 'vue-multiclick'

export default {
  ...
  components: {
    VueMulticlick
  }
}

In your template, wrap a single element in the VueMulticlick component. You must pass an array of objects to the items prop, as well as uid prop, which is the key in your item objects that makes them unique.

<div>
  <VueMulticlick :items="items" uid="id">
    <ul>
      <li v-for="item in items" :key="item.id">{{ item.name }}</li>
    </ul>
  </VueMulticlick>
</div>

Setting selection states

The easiest way to set item selection states is through the itemClicked method. This method will automatically pick up on any necessary event modifiers (such as the meta/ctrl or shift key being pressed), and sets the selection items appropriately.

<div>
  <VueMulticlick :items="items" uid="id" v-slot="{ itemClicked }">
    <ul>
      <li v-for="item in items" :key="item.id" @click="itemClicked">{{ item.name }}</li>
    </ul>
  </VueMulticlick>
</div>

Retrieving selection states

Of course just setting selection states is often not enough, and you'll want to visually change elements that are currently selected. You can use the itemIsSelected function to check if a given item is currently selected.

<div>
  <VueMulticlick :items="items" uid="id" v-slot="{ itemClicked, itemIsSelected }">
    <ul>
      <li v-for="item in items" :key="item.id" :class="{ 'is-selected': itemIsSelected(item) }" @click="itemClicked">
        {{ item.name }}
      </li>
    </ul>
  </VueMulticlick>
</div>
<style>
  .is-selected {
    background-color: blue;
    color: #fff;
  }
</style>

Available properties

| Name | Description | Return Type | | ------------------- | -------------------------------------------- | ----------- | | selectedItems | Returns all currently selected items. | Array | | selectedIndexes | Returns the indexes of all selected items | Array | | lastSelectedItem | Returns the last selected item. | Object | | lastSelectedIndex | Returns the index of the last selected item. | Number |

Available methods

| Name | Description | Params | Return Type | | ---------------------------------- | -------------------------------------------------------------------- | --------------------------------------------- | ----------- | | itemClicked | Sets the selection state based on the event modifiers if they exist. | item: Objectevent: Object | null | | setSelectedItem | Sets the current selection to a single item. | item: Object | null | | setSelectedItems | Sets the current selection to the items passed in. | items: Array | null | | appendToSelection | Pushes an item to the selection list | item: Object | null | | removeFromSelection | Removes an item from the selection list. | item: Object | null | | getItemIndex | Returns the index of a given item | item: Object | Number | | itemIsSelected | Returns whether the given item is currently selected or not. | item: Object | Boolean | | selectAll | Pushes all items to the selection list. | N/A | null | | selectNone | Removes all items from the selection list. | N/A | null | | getItemsFromRange | Retrieves all items between a given range. | start: Numberend: Number | Array | | setSelectedItemsFromLastSelected | Sets the selected items to a range based off the last selected item | item: Object | null |

Development

# To run the example
$ npm run example

# To run the tests
$ npm test

# To publish the dist file
$ npm run build

License

MIT © Collin Henderson