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

simple-list-item-range-selector

v1.0.5

Published

Small UI library that allows you to take a list of items and attach selection events to it

Downloads

16

Readme

Simple List Item Range Selector

CircleCI

Small UI library that allows you to take a list of items, e.g. <li>s, and attach selection events to it.

Features

  • Supports the following click selection modes:
    • CTRL + Click to select
    • Click to select
  • Supports range selection
    • The user can make a range selection using the SHIFT modifier key.
    • Usage:
      • Left-click on the first item to be in the selection
      • Hold the SHIFT modifier key and left-click on the last item to be in the selection
      • All list items within the range will be selected
  • Supports appending a CSS class for selected nodes
  • Supports custom logic from your app to be hooked in when the selection changes

Demo

Try out the live demo: https://gidztech.github.io/simple-list-item-range-selector/demo/

Usage

API

SimpleListItemRangeSelector

  • createInstance (id: string): {}
    • Description: Takes a unique identifer for the instance, allowing you to isolate multiple instances of the library.
  • getInstance (id: string): {}
    • Description: Gets an existing instance of the library, given the Id as a parameter.
  • removeInstance (id: string)
    • Description: Removes an existing instance of the library, given the Id as a parameter.
    • Throws: 'Instance cannot be found at Id {Id}' if no instance is found.
  • clickModes
    • CTRL_CLICK_TO_SELECT - This mode requires the user to hold the CTRL modifer key, while left-clicking on items to make selections. If you click the same item again while the modifier key is held, the item will be unselected. Clicking on another item without the modifer key will select the new item and unselect all others.
    • CLICK_TO_SELECT - This mode simply allows the user to click on an item to select and unselect it

Instance

  • init (options: {})
    • Description: Initialises the current instance of the library, binding events to the DOM
    • Options:
      • clickMode: ClickModes - Click mode from: CTRL_CLICK_TO_SELECT, CLICK_TO_SELECT [Required]
      • containerNode: Element- A DOM node, e.g. document.querySelector('.list') [Required]
      • childSelector: String - A child selector, e.g. li. Defaults to li [Optional]
      • resetSelector: String - A reset selector for clearing the selection, e.g. #reset [Optional]
      • selectedClassName: String - A class name to be applied for selected items, e.g. selected [Optional]
      • onSelectionChanged: Event - A custom event handler executed when the selection has changed [Optional]
      • debug: int - A debug flag, 0 or 1 [Optional]
    • Throws: Various errors for missing or invalid options
  • selectItem (item: Element)
    • Description: Select a single item programmatically
  • unselectItem (item: Element)
    • Description: Unselect a single item programmatically
  • disableRangeSelection
    • Description: Disables the range selection mode, i.e. usage of the SHIFT modifier key
  • unregisterEvents (options: {})
    • Description: Un-registers certain or all the event handlers that were previously set up by this library
    • Options:
      • resetEvent: boolean - Reset click event for reset selector. Defaults to false. [Optional]
      • rangeEvent: boolean - Range selection event. Defaults to true. [Optional]
      • clickEvent: boolean - Click event for list items. Defaults to true. [Optional]
  • updateForNewItems (containerNode: Element)
    • Description: Adds tracking indexes and click events to new list items that have been added to the page
  • clearAllSelections
    • Description: Clears all the currently selected list items
  • reset
    • Description: Resets the DOM and un-registers events created by this library

ES2015 Module

import SimpleListItemRangeSelector from 'simple-list-item-range-selector';

CommonJS Module

let SimpleListItemRangeSelector = require('simple-list-item-range-selector')

Example

let instance = SimpleListItemRangeSelector.createInstance('ebec9955-2102-4c5a-a554-e7f9da80af59'); // anything unique
let options = {
    clickMode: SimpleListItemRangeSelector.clickModes.CTRL_CLICK_TO_SELECT,
    containerNode: document.querySelector('.list'),
    childSelector: 'li',
    selectedClassName: 'selected',
    onSelectionChanged (selectedNodes) {
        // custom logic here
    }
};
instance.init(options);

More

If your list of items is paged, you can use updateForNewItems to add tracking indexes and click handlers for the new DOM nodes. The following example shows code that subscribes to an observable object, which changes when a new page is recieved from the server. We simply call the update function from the library at that point.

onPageReceived.subscribe(() => {
    setTimeout(() => {
        instance.updateForNewItems(element);
    }, 100);
});

Contribute

Check out the Contributing.md file.