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

selectise

v1.1.0

Published

A simple and light-weight custom select generator, built using Vanilla JS and no dependencies

Downloads

58

Readme

Selectise

Transforms a native select element to a markup structure that allows styling using CSS (as opposed to the native select and option elements)

Live example

http://www.liran.co.uk/selectise

Features

  • Ability to style the select element freely using CSS
  • CSS theme out of the box (using _selectise-theme.scss)
  • Keyboard shortcuts:
    • Enter to open dropdown, when the trigger is focused
    • Arrow up/down to navigate the dropdown's option list, when it is opened
    • Esc to close the dropdown, when it is opened
  • Copies all attributes from native select and option elements to corresponding elements in the Selectise markup
    • select element:
      • Copies all attributes
      • If tabindex exists, it will also be copied to the trigger element and to each option element
    • option elements:
      • Copies all attributes
      • If value attribute exists, it will be copied as data-value
      • If selected attribute exists, this option will be selected, and the attribute will be removed from the custom option element
  • Supports screen readers thanks to these factors:
    • Copying the tabindex from the select element
    • Supporting keyboard shortcuts
    • Focusing the current option when using the keyboard to navigate the options list
    • Focusing the trigger once a selection has been made (this both confirms the selection to the accessiblilty user, and allows for an easy re-opening of the options dropdown)

Installation

npm install selectise

Usage

JS

import Selectise from 'selectise'

const selectise = new Selectise(nativeSelect, options)

SCSS

Requires _selectise-base.scss to work properly. You should also use _selectise-theme.scss if you're not setting your own styles.

@import '~selectise/src/selectise-base';
@import '~selectise/src/selectise-theme';

Usage - ES5 and CSS

<head>
  <!-- ... -->
  <link rel="stylesheet" href="selectise/style.css">
  <script src="selectise/index.js"></script>
</head>
<body>
  <!-- ... -->
  <script>
    var selectise = new Selectise.default(nativeSelect, options);
  </script>
</body>

Parameters

Selectise takes two arguments:

nativeSelect

This can be either:

  • A refrence to the native select element
  • A string representing a selector for the native select element (e.g. '#main .my-select-element'), in which case Selectise will select and use the first matching element

Options

If you'd like to configure Selectise, you can pass an options object as the second parameter.

const options = {
  onSelect, // [Callback function] Will be called when an option has been selected. When called, an Object with the following properties will be passed: `selectionContent`, `selectionValue`, `selectionIndex`.
  shouldCloseOnClickBody, // [Boolean, default: false] Whether or not to close the dropdown on click body.
  shouldSetOptionContentToTitle // [Boolean, default: false] Whether or not to set the content of each option to its title. This is useful when some of the options are expected to exceed the width of the select dropdown.
  shouldReplaceSelectBeAsync // [Boolean, default: false] Whether or to use setTimeout for replacing the native select with the custom select (Selectise). This can help in fixing the issue of Selectise getting focused on insertion to the DOM, which happens when using tabindex.
}

Public methods

isOpen()

Is dropdown menu open - returns true/false

close()

Closes the dropdown menu

open()

Opens the dropdown menu

toggle()

Toggles the dropdown menu

getContent()

Returns the content of the currently selected option

getValue()

Returns the value of the currently selected option

getIndex()

Returns the index of the currently selected option

setIndex(index)

Selects an option based on its index

destory()

Removes all event listeners of the Selectise instance

Generated markup

For the following native select element

<select id="example-select" tabindex="1">
  <option value="value1" data-some-attr="some-attr-value" class="some-class">Option 1</option>
  <option value="value2" title="Some title">Option 2</option>
  <option value="value3">Option 3</option>
</select>

The following markup will be generated:

<div class="selectise" id="example-select" tabindex="1">
  <div class="selectise-trigger" tabindex="1">Option 1</div>
  <div class="selectise-options">
    <div data-value="value1" data-some-attr="some-attr-value" class="some-class selectise-option" tabindex="1">Option 1</div>
    <div data-value="value2" title="Some title" class="selectise-option" tabindex="1">Option 2</div>
    <div data-value="value3" class="selectise-option" tabindex="1">Option 3</div>
  </div>
</div>

CSS classes used

selectise

Added to the top level custom select element, which contains the trigger and options elements

selectise-trigger

Added to the trigger element, which holds the selected value and toggles the dropdown

selectise-options

Added to the element containing the options

selectise-option

Added to each custom option element

selectise-open

Will be added to the Selectise element when the dropdown is open (and removed when it is closed)

Dependencies

None

Contributing

Feel free to submit issues and pull requests

Development

  • Run the following, which will serve the Selctise example on localhost:8081 and watch for changes.
npm start
  • Navigate to http://localhost:8081/example/ to view the output
  • Test the library in src/example:
    • index.html
    • index.js
    • index.scss
  • Edit the library itself in src:
    • index.js
    • _selectise-base.scss
    • _selectise-theme.scss

License

This project is licensed under the MIT License - see the LICENSE file for details