| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- import { Directive, ElementRef, HostBinding, Input, Renderer } from '@angular/core';
- import { isTrueProperty } from '../../util/util';
- import { Config } from '../../config/config';
- import { Ion } from '../ion';
- /**
- * @name Icon
- * @description
- * Icons can be used on their own, or inside of a number of Ionic components.
- * For a full list of available icons, check out the
- * [Ionicons docs](../../../../ionicons).
- *
- * One feature of Ionicons in Ionic is when icon names are set, the actual icon
- * which is rendered can change slightly depending on the mode the app is
- * running from. For example, by setting the icon name of `alarm`, on iOS the
- * icon will automatically apply `ios-alarm`, and on Material Design it will
- * automatically apply `md-alarm`. This allows the developer to write the
- * markup once while Ionic applies the appropriate icon based on the mode.
- *
- * @usage
- * ```html
- * <!-- automatically uses the correct "star" icon depending on the mode -->
- * <ion-icon name="star"></ion-icon>
- *
- * <!-- explicity set the icon for each mode -->
- * <ion-icon ios="ios-home" md="md-home"></ion-icon>
- *
- * <!-- always use the same icon, no matter what the mode -->
- * <ion-icon name="ios-clock"></ion-icon>
- * <ion-icon name="logo-twitter"></ion-icon>
- * ```
- *
- * @demo /docs/demos/src/icon/
- * @see {@link /docs/components#icons Icon Component Docs}
- *
- */
- export class Icon extends Ion {
- constructor(config, elementRef, renderer) {
- super(config, elementRef, renderer, 'icon');
- /** @hidden */
- this._isActive = true;
- /** @hidden */
- this._name = '';
- /** @hidden */
- this._ios = '';
- /** @hidden */
- this._md = '';
- /** @hidden */
- this._css = '';
- /**
- * @hidden
- */
- this._hidden = false;
- this._iconMode = config.get('iconMode');
- }
- /**
- * @hidden
- */
- ngOnDestroy() {
- if (this._css) {
- this.setElementClass(this._css, false);
- }
- }
- /**
- * @input {string} Specifies which icon to use. The appropriate icon will be used based on the mode.
- * For more information, see [Ionicons](/docs/ionicons/).
- */
- get name() {
- return this._name;
- }
- set name(val) {
- if (!(/^md-|^ios-|^logo-/.test(val))) {
- // this does not have one of the defaults
- // so lets auto add in the mode prefix for them
- this._name = this._iconMode + '-' + val;
- }
- else {
- this._name = val;
- }
- this.update();
- }
- /**
- * @input {string} Specifies which icon to use on `ios` mode.
- */
- get ios() {
- return this._ios;
- }
- set ios(val) {
- this._ios = val;
- this.update();
- }
- /**
- * @input {string} Specifies which icon to use on `md` mode.
- */
- get md() {
- return this._md;
- }
- set md(val) {
- this._md = val;
- this.update();
- }
- /**
- * @input {boolean} If true, the icon is styled with an "active" appearance.
- * An active icon is filled in, and an inactive icon is the outline of the icon.
- * The `isActive` property is largely used by the tabbar. Only affects `ios` icons.
- */
- get isActive() {
- return this._isActive;
- }
- set isActive(val) {
- this._isActive = isTrueProperty(val);
- this.update();
- }
- /**
- * @hidden
- */
- update() {
- let iconName;
- if (this._ios && this._iconMode === 'ios') {
- iconName = this._ios;
- }
- else if (this._md && this._iconMode === 'md') {
- iconName = this._md;
- }
- else {
- iconName = this._name;
- }
- let hidden = this._hidden = (iconName === null);
- if (hidden) {
- return;
- }
- let iconMode = iconName.split('-', 2)[0];
- if (iconMode === 'ios' &&
- !this._isActive &&
- iconName.indexOf('logo-') < 0 &&
- iconName.indexOf('-outline') < 0) {
- iconName += '-outline';
- }
- let css = 'ion-' + iconName;
- if (this._css === css) {
- return;
- }
- if (this._css) {
- this.setElementClass(this._css, false);
- }
- this._css = css;
- this.setElementClass(css, true);
- let label = iconName
- .replace('ios-', '')
- .replace('md-', '')
- .replace('-', ' ');
- this.setElementAttribute('aria-label', label);
- }
- }
- Icon.decorators = [
- { type: Directive, args: [{
- selector: 'ion-icon',
- host: {
- 'role': 'img'
- }
- },] },
- ];
- /** @nocollapse */
- Icon.ctorParameters = () => [
- { type: Config, },
- { type: ElementRef, },
- { type: Renderer, },
- ];
- Icon.propDecorators = {
- 'name': [{ type: Input },],
- 'ios': [{ type: Input },],
- 'md': [{ type: Input },],
- 'isActive': [{ type: Input },],
- '_hidden': [{ type: HostBinding, args: ['class.hide',] },],
- };
- //# sourceMappingURL=icon.js.map
|