This ember-cli addon integrates the bootstrap-switch plugin with your project. It imports the required bootstrap-switch files into your build but does NOT import the other, core bootstrap files and theme. Use another addon to get your project started with bootstrap, such as ember-cli-bootswatch.
Then easily use bootstrap-switch in your templates with the included Ember Component, documentation below. All of the bootstrap-switch options are exposed in the Component, which is easily customizable and robust.
From within your ember-cli project, run the following (depending on your ember-cli version) to install the addon and bower dependency for bootstrap-switch:
# ember-cli 0.2.3 or higher
ember install ember-bootstrap-switch
# ember-cli from 0.1.5 to 0.2.2
ember install:addon ember-bootstrap-switch
# ember-cli from 0.0.43 to 0.1.4
npm install --save-dev ember-bootstrap-switch
ember generate ember-bootstrap-switch
# ember-cli from 0.0.41 to 0.0.43
npm install --save-dev ember-bootstrap-switch
bower install --save bootstrap-switch
Most of the configuration options are set directly on the bootstrap-switch Component. However, there are a couple addon configurations that can be changed.
Options for this addon are configured in the projects Brocfile.js
file
as an 'ember-bootstrap-switch' object property. Available options include:
bootstrapVersion
[2|3]: By default 3, the major bootstrap version used in your projectexcludeCSS
[boolean]: By default, the theme'sbootstrap-switch.css
file will be importedexcludeJS
[boolean]: By default, thebootstrap-switch.js
file will be imported from Bootstrap
Typically you won't need to adjust any settings. However, if you want to use SASS/LESS instead of the default CSS you can exclude it from being imported. Ex:
// Brocfile.js
/* global require, module */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var app = new EmberApp({
'ember-bootstrap-switch': {
excludeCSS: true
}
});
// ... (documentation snipped)
module.exports = app.toTree();
You can adjust the version of bootstrap-switch imported by having bower
install
a different version. Ex:
bower install --save bootstrap-switch#1.8.0
As mentioned in the bootstrap-switch documentation,
you can change the global defaults that bootstrap-switch uses. Simply create a
new Ember Initializer, ember g initializer bootstrap-switch-defaults
, and
define them on Ember's alias for jQuery.
Be sure to import
Ember, as the generated initializer code does not do so. Ex:
// app/initializers/bootstrap-switch-defaults.js
import Ember from 'ember';
export function initialize(/* container, application */) {
Ember.$.fn.bootstrapSwitch.defaults.onColor = 'success';
Ember.$.fn.bootstrapSwitch.defaults.onText = 'Yes';
Ember.$.fn.bootstrapSwitch.defaults.offText = 'No';
}
export default {
name: 'bootstrap-switch-defaults',
initialize: initialize
};
This addon includes a Component that will properly use the bootstrap-switch plugin.
There are two names that you can use, {{bootstrap-switch}}
or {{bs-switch}}
.
Both point to the same Component so it is your preference which to use.
The Component has many properties that can be modified, including all of the
bootstrap-switch options.
All options may be bound properties and will properly update the switch when
changed. But most of the time you'll only bind the 'checked' property and set
the others as attribute strings with your preference,
{{bs-switch checked=switchState on-text="Yes" off-text="No"}}
.
All properties (except 'checked-default' and action handlers) will then be
applied to the <input>
element as their respective bootstrap-switch option
and native element attribute names. This way the bootstrap-switch plugin
reads the options from the element as is typically expected.
Component Attribute/Property | Bootstrap Switch Option | Native <input> Attribute |
Notes |
---|---|---|---|
animate | animate | Whether the switch animates between states | |
autofocus | Yes | Should probably be handled elsewhere in Ember | |
base-class | baseClass | ||
checked | state | NOT the native HTML checked attr | |
checked-default | Defaults to the initial 'checked' state | ||
disabled | disabled | Yes | |
form | Yes | ||
formnovalidate | Yes | ||
handle-width | handleWidth | Width of the entire switch | |
indeterminate | indeterminate | Places the switch "in the middle", between on/off | |
inverse | inverse | Reverses what side the on/off labels are on | |
label-text | labelText | Text in between the on/off labels | |
label-width | labelWidth | Space between the on/off labels | |
name | Yes | Required for radios | |
off-color | offColor | Bootstrap contextual color name | |
off-text | offText | ||
on-color | onColor | Bootstrap contextual color name | |
on-destroy | Action name sent on component destruction | ||
on-init | onInit | Action name sent on switch init | |
on-switch-change | onSwitchChange | Action name sent on switch change | |
on-text | onText | ||
radio-all-off | radioAllOff | When used as radios, can they all be unchecked | |
readonly | readonly | Yes | |
required | Yes | ||
size | size | Bootstrap contextual button size name | |
tabindex | Yes | ||
type | Yes | Either 'checkbox' or 'radio' | |
value | Yes | ||
wrapper-class | wrapperClass |
Note: Boolean strings will be properly interpreted as a boolean. Ex: "false"
Warning: Do not use the bootstrap-switch 'state' as a property. Ember internals will throw a warning.
The Component also captures bootstrap-switch events and exposes them as Ember actions. Depending on the event/action, your function signature differs (below). Each action handler has access to the Component, which you can manipulate as needed, including:
function(component) {
component; // Ember Component
component.element; // Native DOM Element
component.$(); // jQuery Element
component.$().bootstrapSwitch(); // Direct access to the bootstrap-switch plugin
}
Fires when the bootstrap-switch triggers its 'init' event. This is NOT the Ember Component 'init' nor 'didInsertElement' events, but will occur very soon after since that's when bootstrap-switch is created.
function(component, event){
// your code
}
Fires when the bootstrap-switch triggers its 'switchChange' event. The Component also reacts to this by changing the 'checked' state. The 'state' argument will be a boolean, which reflects the new state.
function(component, event, state){
// your code
}
Fires on the Ember Components 'willDestroyElement' event. The bootstrap-switch plugin does not have a destroy event to watch. However, you can access the plugin as mentioned above before bootstrap-switch is actually destroyed.
function(component){
// your code
}
'checked-default'
by default reads the initial 'checked' state but will not
update when 'checked' is changed.
The 'checked-default' state will be applied to the element via JavaScript
as the 'defaultChecked' property, which in turn, applies the 'checked' attribute.
Sounds confusing but it's a UX fix, this will allow a form .reset()
to work properly.
'indeterminate'
by default observes the 'checked' property and if
'undefined' or 'null' will be 'true', setting the switch to an indeterminate
state (between on/off labels). Else it will remain 'undefined' and not be
applied to the element. This only applies when the 'type' is not a 'radio'.
Although not required, you can .extend()
the Component to change the way it
works, such as setting defaults other than bootstrap-switch options. Simply
create a new Component in your app and extend the addon's Component. You can
either override the existing name, ember g component bs-switch
, or use your
own name, ember g component my-switch
. Then import the Component from the
addon, and export your extended version. Ex:
import BootstrapSwitchComponent from 'ember-bootstrap-switch/components/bootstrap-switch';
export default BootstrapSwitchComponent.extend({
// your changes here
// look at the source code for details
});
In the Ember 2.0 world, the methodology is data down, actions up. This means you pass the checked state down into the Component, but if the Component changes the state it should send an action back up with the new state. And once Ember 2.0 lands, one-way binding will be the default so actions will be used for the other direction. To emulate this methodology today, use the following:
// app/controllers/foobar.js
import Ember from 'ember';
export default Ember.Controller.extend({
checkedState: true,
actions: {
switchChanged: function(component, event, state){
this.set('checkedState', state);
}
}
});
{{!-- app/templates/foobar.js --}}
{{!-- checked-default is not bound and will not update on switchChange --}}
{{bs-switch checked-default=checkedState on-switch-change="switchChanged"}}
With the full implementation of Glimmer and Ember 2.0's one-way bindings, here is what the template would then look like:
<!-- app/templates/foobar.hbs -->
<bs-switch checked={{checkedState}} on-switch-change={{action "switchChanged"}} />
Of course you'll always have the option to "re-enable" two-way binding. This way you don't need to use actions. Again, this is in Ember 2.0.
<!-- app/templates/foobar.hbs -->
<bs-switch checked={{mut checkedState}} />
There are a couple issues with using bootstrap-switch as radios that affects usage in Ember. The 'switchChange' event currently only fires on the radio/switch that is clicked. Although helpful, the other radios/switches do not know about the change in state, so 'checked' bindings will not be updated in Ember.
Currently the only way to use bootstrap-switch as radios is to look for the 'on-switch-change' action and get the value of whatever was clicked.
// app/controllers/foobar.js
import Ember from 'ember';
export default Ember.Controller.extend({
radioValue: null,
bazASelected: Ember.computed.equals('radioValue', 'bazA'),
bazBSelected: Ember.computed.equals('radioValue', 'bazB'),
bazCSelected: Ember.computed.equals('radioValue', 'bazC'),
actions: {
switchChanged: function(component, event, state){
// 'state' will typically always be `true`,
// unless the 'radio-all-off' option is `true`
var newValue = (state ? component.get('value') : null);
this.set('radioValue', newValue);
}
}
});
{{!-- app/templates/foobar.js --}}
{{bs-switch name="baz" value="bazA" checked=bazASelected on-switch-change="switchChanged"}}
{{bs-switch name="baz" value="bazB" checked=bazASelected on-switch-change="switchChanged"}}
{{bs-switch name="baz" value="bazC" checked=bazASelected on-switch-change="switchChanged"}}
This documentation will be updated once the bootstrap-switch radio issues are fixed.