123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- import { Component, ElementRef, EventEmitter, HostListener, Input, Optional, Output, Renderer, ViewEncapsulation } from '@angular/core';
- import { Config } from '../../config/config';
- import { Form } from '../../util/form';
- import { Ion } from '../ion';
- import { isBlank, isCheckedProperty, isPresent, isTrueProperty } from '../../util/util';
- import { Item } from '../item/item';
- import { RadioGroup } from './radio-group';
- /**
- * @description
- * A radio button is a button that can be either checked or unchecked. A user can tap
- * the button to check or uncheck it. It can also be checked from the template using
- * the `checked` property.
- *
- * Use an element with a `radio-group` attribute to group a set of radio buttons. When
- * radio buttons are inside a [radio group](../RadioGroup), exactly one radio button
- * in the group can be checked at any time. If a radio button is not placed in a group,
- * they will all have the ability to be checked at the same time.
- *
- * See the [Angular Forms Docs](https://angular.io/docs/ts/latest/guide/forms.html) for
- * more information on forms and input.
- *
- * @usage
- * ```html
- * <ion-list radio-group [(ngModel)]="relationship">
- * <ion-item>
- * <ion-label>Friends</ion-label>
- * <ion-radio value="friends" checked></ion-radio>
- * </ion-item>
- * <ion-item>
- * <ion-label>Family</ion-label>
- * <ion-radio value="family"></ion-radio>
- * </ion-item>
- * <ion-item>
- * <ion-label>Enemies</ion-label>
- * <ion-radio value="enemies" [disabled]="isDisabled"></ion-radio>
- * </ion-item>
- * </ion-list>
- * ```
- * @demo /docs/demos/src/radio/
- * @see {@link /docs/components#radio Radio Component Docs}
- * @see {@link ../RadioGroup RadioGroup API Docs}
- */
- var RadioButton = (function (_super) {
- __extends(RadioButton, _super);
- function RadioButton(_form, config, elementRef, renderer, _item, _group) {
- var _this = _super.call(this, config, elementRef, renderer, 'radio') || this;
- _this._form = _form;
- _this._item = _item;
- _this._group = _group;
- /**
- * @internal
- */
- _this._checked = false;
- /**
- * @internal
- */
- _this._disabled = false;
- /**
- * @internal
- */
- _this._value = null;
- /**
- * @output {any} Emitted when the radio button is selected.
- */
- _this.ionSelect = new EventEmitter();
- _form.register(_this);
- if (_group) {
- // register with the radiogroup
- _this.id = 'rb-' + _group.add(_this);
- }
- if (_item) {
- // register the input inside of the item
- // reset to the item's id instead of the radiogroup id
- _this.id = 'rb-' + _item.registerInput('radio');
- _this._labelId = 'lbl-' + _item.id;
- _this._item.setElementClass('item-radio', true);
- }
- return _this;
- }
- Object.defineProperty(RadioButton.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/theming/theming-your-app).
- */
- set: function (val) {
- this._setColor(val);
- if (this._item) {
- this._item._updateColor(val, 'item-radio');
- }
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(RadioButton.prototype, "value", {
- /**
- * @input {any} The value of the radio button. Defaults to the generated id.
- */
- get: function () {
- // if the value is not defined then use it's unique id
- return isBlank(this._value) ? this.id : this._value;
- },
- set: function (val) {
- this._value = val;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(RadioButton.prototype, "checked", {
- /**
- * @input {boolean} If true, the element is selected, and other buttons in the group are unselected.
- */
- get: function () {
- return this._checked;
- },
- set: function (val) {
- this._checked = isTrueProperty(val);
- if (this._item) {
- this._item.setElementClass('item-radio-checked', this._checked);
- }
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(RadioButton.prototype, "disabled", {
- /**
- * @input {boolean} If true, the user cannot interact with this element.
- */
- get: function () {
- return this._disabled || (this._group != null && this._group.disabled);
- },
- set: function (val) {
- this._disabled = isTrueProperty(val);
- this._item && this._item.setElementClass('item-radio-disabled', this._disabled);
- },
- enumerable: true,
- configurable: true
- });
- /**
- * @hidden
- */
- RadioButton.prototype.initFocus = function () {
- this._elementRef.nativeElement.querySelector('button').focus();
- };
- /**
- * @internal
- */
- RadioButton.prototype._click = function (ev) {
- (void 0) /* console.debug */;
- ev.preventDefault();
- ev.stopPropagation();
- this.checked = true;
- this.ionSelect.emit(this.value);
- };
- /**
- * @internal
- */
- RadioButton.prototype.ngOnInit = function () {
- if (this._group && isPresent(this._group.value)) {
- this.checked = isCheckedProperty(this._group.value, this.value);
- }
- if (this._group && this._group.disabled) {
- this.disabled = this._group.disabled;
- }
- };
- /**
- * @internal
- */
- RadioButton.prototype.ngOnDestroy = function () {
- this._form.deregister(this);
- this._group && this._group.remove(this);
- };
- RadioButton.decorators = [
- { type: Component, args: [{
- selector: 'ion-radio',
- template: '<div class="radio-icon" [class.radio-checked]="_checked"> ' +
- '<div class="radio-inner"></div> ' +
- '</div> ' +
- '<button role="radio" ' +
- '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.radio-disabled]': '_disabled'
- },
- encapsulation: ViewEncapsulation.None,
- },] },
- ];
- /** @nocollapse */
- RadioButton.ctorParameters = function () { return [
- { type: Form, },
- { type: Config, },
- { type: ElementRef, },
- { type: Renderer, },
- { type: Item, decorators: [{ type: Optional },] },
- { type: RadioGroup, decorators: [{ type: Optional },] },
- ]; };
- RadioButton.propDecorators = {
- 'color': [{ type: Input },],
- 'ionSelect': [{ type: Output },],
- 'value': [{ type: Input },],
- 'checked': [{ type: Input },],
- 'disabled': [{ type: Input },],
- '_click': [{ type: HostListener, args: ['click', ['$event'],] },],
- };
- return RadioButton;
- }(Ion));
- export { RadioButton };
- //# sourceMappingURL=radio-button.js.map
|