Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mobius1-selectable

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobius1-selectable

UI Selectable plugin without the bloat of jQuery and jQuery UI.

  • 0.4.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-40%
Maintainers
1
Weekly downloads
 
Created
Source

Selectable

npm version license Average time to resolve an issue Percentage of issues still open

Inspired by the jQuery UI Selectable plugin. Functionality and options are identical to the jQuery UI version with some additions and performance enhancements.

Selectable mimics the Windows file / directory behaviour, i.e. click and / or drag to select items, hold CTRL to select multiple or hold SHIFT to select consecutive groups of items.

Works in most modern browsers including IE9+.

Selectable is still in active development and therefore the API is in constant flux until v1.0.0. Check back regularly for any changes and make sure you have the latest version installed.

Demo | Changelog


Demos

Tables


Install

Bower

bower install mobius1-selectable --save

npm

npm install mobius1-selectable --save

Browser

Grab the file from one of the CDNs and include it in your page:

https://unpkg.com/mobius1-selectable@latest/selectable.min.js

or

https://cdn.jsdelivr.net/npm/mobius1-selectable@latest/selectable.min.js

You can replace latest with the required release number if needed.


Initialise the plugin:

const selectable = new Selectable(options);

Options

By default the instance will look for any nodes with the ".ui-selectable" class. You can redefine this with the filter option.

OptionTypeDefaultEffect
filterstring or array".ui-selectable"The elements that can be selected. You can pass either a CSS3 selector string or a collection of nodes.
appendTostring or objectdocument.bodyThe container element to append the lasso to.
tolerancestringtouchHow far the lasso overlaps an element before it's highlighted. "fit" (lasso overlaps the item entirely) or "touch" (lasso overlaps the item by any amount).
autoRefreshbooleantrueRecalculate the coords of the items. Set to false if you know the selectable items won't move or change size.
lassoobjectStyle the lasso. Must be an object of valid CSS declarations. Demo

Public Methods

Items returned by the instance are objects of the following format:

{
    element: HTMLElement, // the element
    index: Number, // the position of the item in the list
    rect: DOMRect Object, // the element's bounding rects
    startselected: Boolean,
    selected: Boolean, // is the item currently selected
    selecting: Boolean, // is the item currently being selected
    unselecting: Boolean // is the item currently being deselected
}
MethodArgsReturnEffect
destroy()Destroy the instance. This will return the DOM to it's initial state before initialsing.
init()Initialise the instance after destroying.
disable()Disable the instance. Removes all event listeners to prevent further selection / deselection.
enable()Enable the instance.
update()Updates the instance. Can be used if new items are added or old ones removed. All item coords are updated as well.
recalculate()Recalculates the coords for all valid items. If the dimensions of the item / items change then call this method otherwise the lasso will not select items correctly.
select()MixedMixedSelect an item or items. You can pass a Number representing the index of the item, a reference to the HTMLElement node, the Object as it appears in the items array or an Array of numbers / nodes / objects.
unselect()MixedMixedSame as select(), but the item or items are unselected.
selectAll()Select all valid items.
clear()Deselects all valid items.
getItem()MixedObjectReturns a reference to the item if found or false if not. You can pass the same mixed argument as with select() and unselect().
getItems()ArrayReturns an Array of all items.
getNodes()ArrayReturns an Array of all HTMLElement nodes.
getSelectedItems()ArrayReturns an Array of selected items.
getSelectedNodes()ArrayReturns an Array of selected HTMLElement nodes.

Events

// Intitialise Selectable
const selectable = new Selectable(options);

// Listen for the 'XXXX' event
selectable.on('XXXX', function(/* args */) {
    // Do something when 'XXXX' fires
});
NameFiredParams
selectable.initwhen the instance is ready
selectable.enablewhen the instance is enabled
selectable.disablewhen the instance is disabled
selectable.mousedownon mousedown (within container)element - the item that was clicked on
selectable.mousemovewhen dragging the lassocoords - the coords of the lasso
selectable.mouseupon mouse up (within container)items - the current selection of item(s)
selectable.selectwhen an item is selecteditem - the selected item
selectable.unselectwhen an item is unselecteditem - the unselected item
selectable.updatewhen the instance is updated
selectable.recalculatewhen the item coords are recalculated

Copyright © 2017 Karl Saunders | BSD & MIT license

FAQs

Package last updated on 03 Nov 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc