ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular 2
328 lines • 11.5 kB
JavaScript
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
(function (factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
var v = factory(require, exports); if (v !== undefined) module.exports = v;
}
else if (typeof define === 'function' && define.amd) {
define(["require", "exports", '@angular/core', '@angular/forms', '../../config/config', '../../util/form', '../ion', '../../util/util', '../item/item'], factory);
}
})(function (require, exports) {
"use strict";
var core_1 = require('@angular/core');
var forms_1 = require('@angular/forms');
var config_1 = require('../../config/config');
var form_1 = require('../../util/form');
var ion_1 = require('../ion');
var util_1 = require('../../util/util');
var item_1 = require('../item/item');
exports.CHECKBOX_VALUE_ACCESSOR = {
provide: forms_1.NG_VALUE_ACCESSOR,
useExisting: core_1.forwardRef(function () { return Checkbox; }),
multi: true
};
/**
* \@name Checkbox
* \@module ionic
*
* \@description
* The Checkbox is a simple component styled based on the mode. It can be
* placed in an `ion-item` or used as a stand-alone checkbox.
*
* See the [Angular 2 Docs](https://angular.io/docs/ts/latest/guide/forms.html)
* for more info on forms and inputs.
*
*
* \@usage
* ```html
*
* <ion-list>
*
* <ion-item>
* <ion-label>Pepperoni</ion-label>
* <ion-checkbox [(ngModel)]="pepperoni"></ion-checkbox>
* </ion-item>
*
* <ion-item>
* <ion-label>Sausage</ion-label>
* <ion-checkbox [(ngModel)]="sausage" disabled="true"></ion-checkbox>
* </ion-item>
*
* <ion-item>
* <ion-label>Mushrooms</ion-label>
* <ion-checkbox [(ngModel)]="mushrooms"></ion-checkbox>
* </ion-item>
*
* </ion-list>
* ```
*
* \@demo /docs/v2/demos/src/checkbox/
* @see {\@link /docs/v2/components#checkbox Checkbox Component Docs}
*/
var Checkbox = (function (_super) {
__extends(Checkbox, _super);
/**
* @param {?} config
* @param {?} _form
* @param {?} _item
* @param {?} elementRef
* @param {?} renderer
* @param {?} _cd
*/
function Checkbox(config, _form, _item, elementRef, renderer, _cd) {
_super.call(this, config, elementRef, renderer, 'checkbox');
this._form = _form;
this._item = _item;
this._cd = _cd;
/** @private */
this._checked = false;
/** @private */
this._disabled = false;
/**
* @output {Checkbox} Emitted when the checkbox value changes.
*/
this.ionChange = new core_1.EventEmitter();
_form.register(this);
if (_item) {
this.id = 'chk-' + _item.registerInput('checkbox');
this._labelId = 'lbl-' + _item.id;
this._item.setElementClass('item-checkbox', true);
}
}
Object.defineProperty(Checkbox.prototype, "color", {
/**
* \@input {string} The color to use from your Sass `$colors` map.
* Default options are: `"primary"`, `"secondary"`, `"danger"`, `"light"`, and `"dark"`.
* For more information, see [Theming your App](/docs/v2/theming/theming-your-app).
* @param {?} val
* @return {?}
*/
set: function (val) {
this._setColor(val);
},
enumerable: true,
configurable: true
});
Object.defineProperty(Checkbox.prototype, "mode", {
/**
* \@input {string} The mode determines which platform styles to use.
* Possible values are: `"ios"`, `"md"`, or `"wp"`.
* For more information, see [Platform Styles](/docs/v2/theming/platform-specific-styles).
* @param {?} val
* @return {?}
*/
set: function (val) {
this._setMode(val);
},
enumerable: true,
configurable: true
});
/**
* @param {?} ev
* @return {?}
*/
Checkbox.prototype._click = function (ev) {
(void 0) /* console.debug */;
ev.preventDefault();
ev.stopPropagation();
this.onChange(!this._checked);
};
Object.defineProperty(Checkbox.prototype, "checked", {
/**
* \@input {boolean} If true, the element is selected.
* @return {?}
*/
get: function () {
return this._checked;
},
/**
* @param {?} val
* @return {?}
*/
set: function (val) {
this._setChecked(util_1.isTrueProperty(val));
this.onChange(this._checked);
},
enumerable: true,
configurable: true
});
/**
* @param {?} isChecked
* @return {?}
*/
Checkbox.prototype._setChecked = function (isChecked) {
if (isChecked !== this._checked) {
this._checked = isChecked;
if (this._init) {
this.ionChange.emit(this);
}
this._item && this._item.setElementClass('item-checkbox-checked', isChecked);
}
};
/**
* @param {?} val
* @return {?}
*/
Checkbox.prototype.writeValue = function (val) {
this._setChecked(util_1.isTrueProperty(val));
};
/**
* @param {?} fn
* @return {?}
*/
Checkbox.prototype.registerOnChange = function (fn) {
var _this = this;
this._fn = fn;
this.onChange = function (isChecked) {
(void 0) /* console.debug */;
fn(isChecked);
_this._setChecked(isChecked);
_this.onTouched();
_this._cd.detectChanges();
};
};
/**
* @param {?} fn
* @return {?}
*/
Checkbox.prototype.registerOnTouched = function (fn) { this.onTouched = fn; };
Object.defineProperty(Checkbox.prototype, "disabled", {
/**
* \@input {boolean} If true, the user cannot interact with this element.
* @return {?}
*/
get: function () {
return this._disabled;
},
/**
* @param {?} val
* @return {?}
*/
set: function (val) {
this._disabled = util_1.isTrueProperty(val);
this._item && this._item.setElementClass('item-checkbox-disabled', this._disabled);
},
enumerable: true,
configurable: true
});
/**
* @param {?} isChecked
* @return {?}
*/
Checkbox.prototype.onChange = function (isChecked) {
// used when this input does not have an ngModel or formControlName
(void 0) /* console.debug */;
this._setChecked(isChecked);
this.onTouched();
this._cd.detectChanges();
};
/**
* @return {?}
*/
Checkbox.prototype.initFocus = function () {
this._elementRef.nativeElement.querySelector('button').focus();
};
/**
* @return {?}
*/
Checkbox.prototype.onTouched = function () { };
/**
* @return {?}
*/
Checkbox.prototype.ngAfterContentInit = function () {
this._init = true;
};
/**
* @param {?} isDisabled
* @return {?}
*/
Checkbox.prototype.setDisabledState = function (isDisabled) {
this.disabled = isDisabled;
};
/**
* @return {?}
*/
Checkbox.prototype.ngOnDestroy = function () {
this._form.deregister(this);
};
Checkbox.decorators = [
{ type: core_1.Component, args: [{
selector: 'ion-checkbox',
template: '<div class="checkbox-icon" [class.checkbox-checked]="_checked">' +
'<div class="checkbox-inner"></div>' +
'</div>' +
'<button role="checkbox" ' +
'type="button" ' +
'ion-button="item-cover" ' +
'[id]="id" ' +
'[attr.aria-checked]="_checked" ' +
'[attr.aria-labelledby]="_labelId" ' +
'[attr.aria-disabled]="_disabled" ' +
'class="item-cover"> ' +
'</button>',
host: {
'[class.checkbox-disabled]': '_disabled'
},
providers: [exports.CHECKBOX_VALUE_ACCESSOR],
encapsulation: core_1.ViewEncapsulation.None,
},] },
];
/** @nocollapse */
Checkbox.ctorParameters = function () { return [
{ type: config_1.Config, },
{ type: form_1.Form, },
{ type: item_1.Item, decorators: [{ type: core_1.Optional },] },
{ type: core_1.ElementRef, },
{ type: core_1.Renderer, },
{ type: core_1.ChangeDetectorRef, },
]; };
Checkbox.propDecorators = {
'color': [{ type: core_1.Input },],
'mode': [{ type: core_1.Input },],
'ionChange': [{ type: core_1.Output },],
'_click': [{ type: core_1.HostListener, args: ['click', ['$event'],] },],
'checked': [{ type: core_1.Input },],
'disabled': [{ type: core_1.Input },],
};
return Checkbox;
}(ion_1.Ion));
exports.Checkbox = Checkbox;
function Checkbox_tsickle_Closure_declarations() {
/** @type {?} */
Checkbox.decorators;
/**
* @nocollapse
* @type {?}
*/
Checkbox.ctorParameters;
/** @type {?} */
Checkbox.propDecorators;
/** @type {?} */
Checkbox.prototype._checked;
/** @type {?} */
Checkbox.prototype._init;
/** @type {?} */
Checkbox.prototype._disabled;
/** @type {?} */
Checkbox.prototype._labelId;
/** @type {?} */
Checkbox.prototype._fn;
/** @type {?} */
Checkbox.prototype.id;
/**
* \@output {Checkbox} Emitted when the checkbox value changes.
* @type {?}
*/
Checkbox.prototype.ionChange;
/** @type {?} */
Checkbox.prototype._form;
/** @type {?} */
Checkbox.prototype._item;
/** @type {?} */
Checkbox.prototype._cd;
}
});
//# sourceMappingURL=checkbox.js.map