1.0.1 • Published 3 years ago

js-toggle-switch v1.0.1

Weekly downloads
17
License
BSD-3-Clause
Repository
github
Last release
3 years ago

js-toggle-switch

Build Status Coverage Status

A toggle switch on native Javascript.

DEMO

Install

Via NPM:

$ npm install js-toggle-switch

Usage

Include:

// include style and script
<link href="dist/toggle-switch.min.css" rel="stylesheet">
<script type="text/javascript" src="dist/toggle-switch.min.js"></script>

Add checkbox:

<input type="checkbox" name="some_chekbox_name">

Initialize toggle switch:

<script type="text/javascript">
var toggleSwitch = new ToggleSwitch('input[name="some_chekbox_name"]');
</script>

Build

Using Docker

Run dev environment:

$ docker-compose up

Login, install packages and build:

$ docker-compose run ext bash
$ npm install
$ npm run build

Using locale dev environment

$ npm install
$ npm run build

Options

The options inject to the second argument of ToggleSwitch. Options is object.

new ToggleSwitch('.some-checkbox', {
  onLabel: 'Yes', // [string] - Label for `true` value of checkbox. 
  offLabel: 'No' // [string] - Label for `false` value of checkbox. 
})
  • ToggleSwitch.defaultOptions object - Default options for everything new instances.

Methods

  • getValue() string - Returns current value of the checkbox.
  • turnOn() - Set to "true" the checkbox value.
  • turnOff() - Set to "false" the checkbox value.
  • toggle() - Set to "false"/"true" the checkbox value.
  • destroy() - Destroy the toggle switch and restore the orginal checkbox.

Run tests

Using Docker

$ docker-compose run --rm ext npm run test:run-without-coverage

Using locale dev environment

$ npm run test:run-without-coverage

License

js-toggle-switch is released under the BSD-3-Clause License.

1.0.1

3 years ago

1.0.0

3 years ago

0.1.3

5 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

7 years ago