1.0.0 • Published 2 years ago

ts-rangeslider v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Description

  • TsIonRangeSlider — cool, comfortable and easily customizable range slider with many options and skin support written in TypeScript without jQuery dependency, forked from Ion.RangeSlider
  • Supports events and public methods, has flexible settings, can be completely altered with CSS
  • Cross-browser: Google Chrome, Mozilla Firefox 3.6+, Opera 12+, Safari 5+, Internet Explorer 8+
  • With this plugin you will be able to build beautiful range sliders, like this:

ion.rangeSlider

Key features

  • Skin support. (6 skins included)
  • Any number of sliders at one page without conflicts and big performance problems
  • Two slider types single (1 slider) and double (2 sliders)
  • Support of negative and fractional values
  • Ability to set custom step and snap grid to step
  • Support of custom values diapason
  • Customisable grid of values
  • Ability to disable UI elements (min and max, current value, grid)
  • Postfixes and prefixes for your numbers ($20, 20 etc.)
  • Additional postfix for maximum value (eg. $0 — $100+)
  • Ability to prettify large numbers (eg. 10000000 -> 10 000 000 or 10.000.000)
  • Slider writes its value right into input value field. This makes it easy to use in any html form
  • Any slider value can be set through input data-attribute (eg. data-min="10")
  • Slider supports disable param. You can set it true to make slider inactive
  • Slider supports external methods (update, reset and remove) to control it after creation
  • For advanced users slider has callbacks (onStart, onChange, onFinish, onUpdate). Slider pastes all its params to callback first argument as object
  • Slider supports date and time

Usage

Browser

You can add directly the library to your HTML page with script tags :

  • ts-range-slider.min.js

You also need to add following style sheet :

  • ionRangeSlider.css
<html lang=fr>
<head>
    ...
    <title>Amazing Web Site</title>
    <script src="js/bundle.js"></script>
    <link rel="stylesheet" type="text/css" href="style.css">
    ...
</head>
<body>
...
</body>
</html>

Package Manager (NPM or Yarn)

  • Install package according to the package manager you use :

    • Installation command for npm =>

      npm i ts-rangeslider
    • Installation command for yarn =>

      yarn add ts-rangeslider

Initialisation

The slider overrides a native text input element.

<input type="text" id="example_id" name="example_name" value="" />

To initialise the slider, call ionRangeSlider on the element:

new TsIonRangeSlider.Slider(document.querySelector("#example_id"));

Settings

OptionData-AttrDefaultsTypeDescription
skindata-skinflatstringChoose UI skin to use (flat, big, modern, round, sharp, square)
typedata-typesinglestringChoose slider type, could be single - for one handle, or double for two handles
mindata-min10numberSet slider minimum value
maxdata-max100numberSet slider maximum value
fromdata-fromundefinednumberSet start position for left handle (or for single handle)
todata-toundefinednumberSet start position for right handle
stepdata-step1numberSet sliders step. Always > 0. Could be fractional
minIntervaldata-min-intervalundefinednumberSet minimum diapason between sliders. Only for double type
maxIntervaldata-max-intervalundefinednumberSet minimum maximum between sliders. Only for double type
dragIntervaldata-drag-intervalfalsebooleanAllow user to drag whole range. Only for double type
valuesdata-values[]arraySet up your own array of possible slider values. They could be numbers or strings. If the values array is set up, min, max and step param, can no longer be changed
fromFixeddata-from-fixedfalsebooleanFix position of left (or single) handle
fromMindata-from-minundefinednumberSet minimum limit for left (or single) handle
fromMaxdata-from-maxundefinednumberSet maximum limit for left (or single) handle
fromShadowdata-from-shadowfalsebooleanHighlight the limits for left handle
toFixeddata-to-fixedfalsebooleanFix position of right handle
toMindata-to-minundefinednumberSet minimum limit for right handle
toMaxdata-to-maxundefinednumberSet maximum limit for right handle
toShadowdata-to-shadowfalsebooleanHighlight the right handle
prettifyEnableddata-prettify-enabledtruebooleanImprove readability of long numbers: 10000000 10 000 000
prettifySeparatordata-prettify-separatorstringSet up your own separator for long numbers: 10000000 10,000,000 etc.
prettify-undefinedfunctionSet up your own prettify function. Can be anything. For example, you can set up unix time as slider values and than transform them to cool looking dates
forceEdgesdata-force-edgesfalsebooleanSliders handles and tooltips will be always inside it's container
keyboarddata-keyboardtruebooleanActivates keyboard controls. Move left: , , A, S. Move right: , , W, D.
griddata-gridtruebooleanEnables grid of values above the slider
gridMargindata-grid-margintruebooleanSet left and right grid gaps
gridNumdata-grid-num4numberNumber of grid units
gridSnapdata-grid-snapfalsebooleanSnap grid to sliders step (step param). If activated, gridNum will not be used. Max steps = 50
hideMinMaxdata-hide-min-maxfalsebooleanHides min and max labels
hideFromTodata-hide-from-tofalsebooleanHides from and to labels
prefixdata-prefixundefinedstringSet prefix for values. Will be set up right before the number: $100
postfixdata-postfixundefinedstringSet postfix for values. Will be set up right after the number: 100k
maxPostfixdata-max-postfixundefinedstringSpecial postfix, used only for maximum value. Will be showed after handle will reach maximum right position. For example 0 — 100+
decorateBothdata-decorate-bothtruebooleanUsed for double type and only if prefix or postfix was set up. Determine how to decorate close values. For example: $10k — $100k or $10 — 100k
valuesSeparatordata-decorate-both-stringSet your own separator for close values. Used for double type. Default: 10 — 100. Or you may set: 10 to 100, 10 + 100, 10 100 etc.
inputValuesSeparatordata-input-values-separator;stringSeparator for double values in input value property. <input value="25;42">
disabledata-disablefalsebooleanLocks slider and makes it inactive. Input is disabled too. Invisible to forms
blockdata-blokcfalsebooleanLocks slider and makes it inactive. Input is NOT disabled. Can be send with forms
extraClassesdata-extra-classesundefinedstringTraverse extra CSS-classes to sliders container
scope-undefinedobjectScope for callbacks. Pass any object
onStart-undefinedfunctionCallback. Is called on slider start. Gets all slider data as a 1st attribute
onChange-undefinedfunctionCallback. IS called on each values change. Gets all slider data as a 1st attribute
onFinish-undefinedfunctionCallback. Is called when user releases handle. Gets all slider data as a 1st attribute
onUpdate-undefinedfunctionCallback. Is called when slider is modified by external methods update or reset

Description of data passed to callbacks (onChange and etc.)

Result is object type and passed to callback as first argument:

var callbackData = {
    "input": Object,            // DOM element linked to input
    "slider": Object,           // DOM element linked to sliders container
    "min": 1000,                // MIN value
    "max": 100000,              // MAX values
    "from": 10000,              // FROM value
    "fromPercent": 10,         // FROM value in percents
    "fromValue": 0,            // FROM value of array values (if used)
    "to": 90000,                // TO value
    "toPercent": 90,           // TO value in percents
    "toValue": 0,              // TO value of array values (if used)
    "minPretty": "1 000",      // MIN prettified (if used)
    "maxPretty": "100 000",    // MAX prettified (if used)
    "fromPretty": "10 000",    // FROM prettified (if used)
    "toPretty": "90 000"       // TO prettified (if used)
}

Creating slider (all params)

An example of a customised slider:

const input = document.querySelector('#example');
new TsRangeSlider(input, {
    skin: "big",
    min: 0,
    max: 10000,
    from: 1000,
    to: 9000,
    type: 'double',
    prefix: "$",
    grid: true,
    gridNum: 10
});

You can also initialise slider with data-* attributes of input tag:

data-min="0"
data-max="10000"
data-from="1000"
data-to="9000"
data-type="double"
data-prefix="$"
data-grid="true"
data-grid-num="10"

Public methods

To use public methods, at first you must save slider instance to variable:

// Launch plugin
const input = document.querySelector('#example');
let sliderInputElement = new TsIonRangeSlider.Slider(input, {
    skin            : 'round',
    grid            : true,
    gridMargin      : true,
    gridNum         : 4,
    gridSnap        : false,
    hideFromTo      : false,
    hideMinMax      : false,
    onChange        : obj => console.log(obj),
    onFinish        : obj => console.log(obj),
    onStart         : obj => console.log(obj),
    onUpdate        : obj => console.log(obj),
    type            : 'double',
    values          : ['a', 'b', 'c'],
    valuesSeparator : ','
  });
  sliderInputElement.update({
    values: ['a', 'b', 'c', 'd'],
  });
  sliderInputElement.reset();
  sliderInputElement.destroy();

There are 3 public methods:

// UPDATE - updates slider to any new values
slider.update({
    from: 300,
    to: 400
});

// RESET - reset slider to it's first values
slider.reset();

// DESTROY - destroys slider and restores original input field
slider.destroy();