Checkbox based toggle switch component for Ember.js
npm install ember-toggleCheckbox based Toggle Switch component with swipe/drag support for Ember.
[![NPM][npm-badge]][npm-badge-url]
!CI
[![Ember Observer Score][ember-observer-badge]][ember-observer-url]
Based on this codepen.
Here's the official [demo] using this component.
- Ember.js v3.24 or above
- Ember CLI v3.24 or above
- Node.js v12 or above
ember install ember-toggle
``hbs`
There are many themes which change the visual appearance of the toggle.
Check the [demo] for interactive examples.
- 'default''ios'
- 'light'
- 'flat'
- 'flip'
- 'skewed'
- 'material'
-
Use it along with the @variant='auto' or @variant='dark' option to get a dark themed version, works only with 'ios', 'flat' and 'material' theme.
> Example of changing the theme
`hbs`
@variant='dark'
@value={{this.toggled}}
@onToggle={{fn (mut this.toggled)}}
/>
_Note: By default all themes are included, see the Configuration section to change which themes are included/excluded._
You can also adjust the size of the widget by use of the size property. Valid sizes are:
- 'small''medium'
- 'large'
-
This option is available on all themes but is a less sensible choice for those themes which actually
include the label within the control (e.g., skew and flip).
You can customize labels (The text the user sees for the two states) and their associated values:
`hbs`
@offLabel='Disabled'
@showLabels={{true}}
@value={{this.myValue}}
@onToggle={{fn (mut this.myValue)}}
/>
If you want your labels to be displayed, then you must set showLabels to true.
- value - The state of the switch, can be true or false. Defaults to false.onToggle
- - The action that should change the state of value.theme
- - One of 'light', 'ios', 'flat', 'material', 'flip', 'skewed', 'default'.variant
- - One of dark or auto. Use auto for system dependent light/dark theme. Works only with ios, flat and material theme.size
Defaults to 'default' if not specified.
- - One of 'small', 'medium', 'large'.onLabel
Defaults to 'medium' if not specified.
- - The label for the _on_ state. Defaults to 'On'.offLabel
- - The label for the _off_ state. Defaults to 'Off'.showLabels
- - Defaults to 'false', if 'true' will display labels on left and ride side of toggle switchdisabled
- - Defaults to false, which means you can click the toggle.true
When , an .x-toggle-disabled class is set on the toggle and an .x-toggle-container-disabled class is set on the component.name
- - A name to differentiate multiple toggles, gets passed to the toggle action. Defaults to 'default'.
Add a configuration for ember-toggle to include only the themes that
you will use, as well as any other default settings that apply to all toggles
in your app. These defaults can be overriden on a per toggle basis
(except the options regarding themes being added to your app's build step).
This configuration is located in config/environment.js.
The following is an example of how you can configure this addon:
`js`
ENV['ember-toggle'] = {
includedThemes: ['light', 'default', 'flip'],
excludedThemes: ['flip'],
excludeBaseStyles: false, // defaults to false
defaultShowLabels: true, // defaults to false
defaultTheme: 'light', // defaults to 'default'
defaultSize: 'small', // defaults to 'medium'
defaultOffLabel: 'False', // defaults to 'Off'
defaultOnLabel: 'True', // defaults to 'On'
};
> note: the IOS theme is referred to as just ios not ios7 as was indicated in the originating CSS source
To exclude (not include) a theme, means that it's css styles will not be bundled with
your application, keeping your app's css bundle size smaller.
> Note: including a blank array e.g. includeThemes: [] will not include any themes, leavingvendor/ember-toggle/themes
> you to define your own theme styles. See the directoryexcludeBaseStyles: true
> for reference.
> Note: you may also want to set so that this addon doesn't include the styles
> used by all the themes.
If you need custom labels, additional markup, or non-standard behavior, you are in the right section.
The x-toggle component also provides a composable component API.
`hbs`
@value={{this.value}}
@onToggle={{fn (mut this.value)}}
as |toggle|
>
The above is a simple example that returns a basic toggle, but you can see how
this could be used to wrap the switch or the labels in custom markup or logic.
This format allows greater flexibility with labels, like the single label use-case.
`hbs
@value={{this.value}}
@onToggle={{fn (mut this.value)}}
as |toggle|
>
turn {{if this.value 'off' 'on'}}
`
> Note: The not` helper is a custom Ember helper in the above example.
See the [Contributing] guide for details.
MIT
[npm-badge]: https://img.shields.io/npm/v/ember-toggle.svg
[npm-badge-url]: https://www.npmjs.com/package/ember-toggle
[ember-observer-badge]: http://emberobserver.com/badges/ember-toggle.svg
[ember-observer-url]: http://emberobserver.com/addons/ember-toggle
[demo]: http://knownasilya.github.io/ember-toggle/
[contributing]: CONTRIBUTING.md
[simplify]: https://github.com/knownasilya/ember-toggle/tree/simplify