2015-02-17 11:56:24 -08:00
|
|
|
import {Component, View, Attribute, PropertySetter} from 'angular2/angular2';
|
|
|
|
import {isPresent} from 'angular2/src/facade/lang';
|
2015-04-17 12:59:07 -07:00
|
|
|
import {KEY_SPACE} from 'angular2_material/src/core/constants'
|
|
|
|
import {KeyboardEvent} from 'angular2/src/facade/browser';
|
2015-02-17 11:56:24 -08:00
|
|
|
|
|
|
|
// TODO(jelbourn): without gesture support, this is identical to MdCheckbox.
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'md-switch',
|
|
|
|
properties: {
|
|
|
|
'checked': 'checked',
|
|
|
|
'disabled': 'disabled'
|
|
|
|
},
|
|
|
|
hostListeners: {
|
|
|
|
'keydown': 'onKeydown($event)'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
@View({
|
|
|
|
templateUrl: 'angular2_material/src/components/switcher/switch.html',
|
|
|
|
directives: []
|
|
|
|
})
|
|
|
|
export class MdSwitch {
|
|
|
|
/** Whether this switch is checked. */
|
|
|
|
checked_: boolean;
|
|
|
|
|
2015-04-17 12:59:07 -07:00
|
|
|
/** Whether this switch is disabled. */
|
|
|
|
disabled_: boolean;
|
|
|
|
|
2015-02-17 11:56:24 -08:00
|
|
|
/** Setter for `aria-checked` attribute. */
|
|
|
|
ariaCheckedSetter: Function;
|
|
|
|
|
|
|
|
/** Setter for `aria-disabled` attribute. */
|
|
|
|
ariaDisabledSetter: Function;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
@Attribute('tabindex') tabindex: string,
|
|
|
|
@PropertySetter('tabindex') tabindexSetter: Function,
|
|
|
|
@PropertySetter('attr.role') roleSetter: Function,
|
|
|
|
@PropertySetter('attr.aria-checked') ariaCheckedSetter: Function,
|
|
|
|
@PropertySetter('attr.aria-disabled') ariaDisabledSetter: Function) {
|
|
|
|
this.ariaCheckedSetter = ariaCheckedSetter;
|
|
|
|
this.ariaDisabledSetter = ariaDisabledSetter;
|
|
|
|
|
|
|
|
roleSetter('checkbox');
|
|
|
|
this.checked = false;
|
|
|
|
tabindexSetter(isPresent(tabindex) ? tabindex : '0');
|
|
|
|
}
|
|
|
|
|
|
|
|
get checked() {
|
|
|
|
return this.checked_;
|
|
|
|
}
|
|
|
|
|
|
|
|
set checked(value) {
|
|
|
|
this.checked_ = value;
|
|
|
|
this.ariaCheckedSetter(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
get disabled() {
|
|
|
|
return this.disabled_;
|
|
|
|
}
|
|
|
|
|
|
|
|
set disabled(value) {
|
|
|
|
this.disabled_ = isPresent(value) && value !== false;
|
|
|
|
this.ariaDisabledSetter(this.disabled_);
|
|
|
|
}
|
|
|
|
|
|
|
|
onKeydown(event: KeyboardEvent) {
|
2015-04-17 13:20:03 -07:00
|
|
|
if (event.keyCode === KEY_SPACE) {
|
2015-02-17 11:56:24 -08:00
|
|
|
event.preventDefault();
|
|
|
|
this.toggle(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
toggle(event) {
|
|
|
|
if (this.disabled) {
|
|
|
|
event.stopPropagation();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.checked = !this.checked;
|
|
|
|
this.ariaCheckedSetter(this.checked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|