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

@love-open-source/ember-slider

v1.2.10

Published

Slider addon for ember. Also supports likert scale.

Downloads

276

Readme

ember-slider Build Status npm versionRate on Openbase

This slider is built as an addon for ember applications. This also supports likert scale. Follow the instructions in the demo section to see it in action.

Screenshots

Basic slider

| type="closed" | type="sleek" | | --- | --- | | Basic slider | Basic sleek slider |

Likert scale slider

| type="closed" | type="sleek" | | --- | --- | | Likert scale slider | Likert scale slider |

Demo

The demo for this addon is available at https://rvenkatesh.github.io/Ember-Slider/

or alternatively you can also clone the repository and run it locally by following the below instructions

  • git clone <repository-url> this repository
  • cd ember-slider
  • npm install
  • ember serve
  • Demo will be available at http://localhost:4200.

Installation

npm install @love-open-source/ember-slider --save

or

ember install @love-open-source/ember-slider

Note that versions below v1.2.0 used compass for compiling the styles. If you do not have it already, please follow this link to install it before installing addon.

How to use

Include the ember slider component in the template like any other normal ember component

{{ember-slider config=options}}

or 

<EmberSlider @config={{options}}/>

Add configuration options if necessary in the corresponding route's controller or component's class

{
    type: 'closed',
    range: {
        min: 0,
        max: 100
    }
}

Refer Configurations options section for details about the different options available.

Parameters

The component provides different parameters as mentioned below. These can be used as {{ember-slider initialValue=50 config=options onChange=(action 'onChangeAction')}}

| Params | Default value | Description | | --- | --- | --- | | initialValue | 0 | To load the slider with value other than min value. | | config | null | General settings for the slider like range, likert and more. Refer Configurations options section for details about the different options available. |

Callback parameters

Apart from the above parameters, following are the callbacks provided by the addon.

| Function | Params | Description | | --- | --- | --- | | onChange | ( oldValue, newValue ) | This is called when the value of the slider changes. |

Options under 'config' options

These are the different options available under 'config' parameter of the slider.

| Option | Default value | Description | | --- | --- | --- | | type | 'sleek' | Changes the look and feel of the slider. Currently it supports only 'sleek' and 'closed'. | | range | { min: 0, max: 100 } | This object can be used to change the min and max of the slider. This can be of following format. { min: `min_value`, max: `max_value` } | | hideValue | false | Boolean to show or hide the value of the slider. true hides the value. | | likert | {} | Settings for likert scale. Refer section Likert scale options to know more about likert configuration. |

Likert scale options

The 'likert' property under config option provides the settings for likert scale. Likert scale can be enabled by passing the following to 'config' parameter of the slider

{
    likert: {
        enabled: true
    }
}

Just enabling likert scale would provide a 3-point likert scale slider with values ranging from 0 to 2. It can be customised by the following configuration options available.

| Option | Default | Description | | --- | --- | --- | | enabled | false | Enable or disable likert scale | | points | 3 | Number of likert points to be shown. As of now ember-slider supports 3, 5 and 7 points. | | labels | [] | Label text to be displayed under each likert point of the slider. If nothing has to be displayed, pass null |

Generating custom slider theme color

Ember slider provides a blueprint, using which you can change the look and feel (colors & size) of the slider within minutes. Run the blueprint with your preferred color values and the amount of scaling you need, it will give you the scss file with autogenerated code. To make use of the generator, you must have ember-cli-compass-compiler installed in your application.

Syntax
ember g custom-slider <name_of_the_scss_file> <options>

Following are the options available.

  • --pathcolor - <type:string> Background color of the handle movement path
  • --fillerColor - <type:string> Background color of the region selected
  • --handleColor - <type:string> Background color of the handle
  • --classList - <type:string> CSS classname to be given to the generated slider
  • --scale - <type:number> Amount by which the entire slider needs to be scaled. Default is 1.
Examples
  1. To generate a red colored slider, you can do
ember g custom-slider red-slider --pathColor="#f5f5f5" --classList="red" --fillerColor="rgba(#ff6b43, .3)" --handleColor="#ff6b43"

The above command will generate a file called _red-slider.scss inside app/styles directory of your application.

  1. You can also generate 2 or more sliders at the same time.
ember g custom-slider all-sliders  --classList="red green" --pathColor="#f5f5f5 #f5f5f5" --fillerColor="rgba(#ff6b43, .3) rgba(#79c03b, .3)" --handleColor="#ff6b43 #79c03b" --scale="1 0.9"

Updating ember-slider

If you are updating one version of ember slider to other, please check out the Release notes page for any breaking changes (which are usually rare).