@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
98 lines • 3.36 kB
JavaScript
/*
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { __decorate, __metadata } from "tslib";
import { ChangeDetectionStrategy, Component, ContentChildren, HostBinding, Input, QueryList, } from '@angular/core';
import { takeUntil } from 'rxjs/operators';
import { Subject } from 'rxjs';
import { convertToBoolProperty } from '../helpers';
import { NbOptionComponent } from './option.component';
/**
* NbOptionGroupComponent
*
* @styles
*
* option-group-text-color:
* option-group-tiny-start-padding:
* option-group-small-start-padding:
* option-group-medium-start-padding:
* option-group-large-start-padding:
* option-group-giant-start-padding:
**/
let NbOptionGroupComponent = class NbOptionGroupComponent {
constructor() {
this.destroy$ = new Subject();
this._disabled = false;
}
get disabled() {
return this._disabled;
}
set disabled(value) {
this._disabled = convertToBoolProperty(value);
if (this.options) {
this.updateOptionsDisabledState();
}
}
get disabledAttribute() {
return this.disabled ? '' : null;
}
ngAfterContentInit() {
if (this.options.length) {
this.asyncUpdateOptionsDisabledState();
}
this.options.changes
.pipe(takeUntil(this.destroy$))
.subscribe(() => this.asyncUpdateOptionsDisabledState());
}
ngOnDestroy() {
this.destroy$.next();
this.destroy$.complete();
}
/**
* Sets disabled state for each option to current group disabled state.
*/
updateOptionsDisabledState() {
this.options.forEach((option) => option.setDisabledByGroupState(this.disabled));
}
/**
* Updates options disabled state after promise resolution.
* This way change detection will be triggered after options state updated.
* Use this method when updating options during change detection run (e.g. QueryList.changes, lifecycle hooks).
*/
asyncUpdateOptionsDisabledState() {
Promise.resolve().then(() => this.updateOptionsDisabledState());
}
};
__decorate([
Input(),
__metadata("design:type", String)
], NbOptionGroupComponent.prototype, "title", void 0);
__decorate([
Input(),
__metadata("design:type", Boolean),
__metadata("design:paramtypes", [Boolean])
], NbOptionGroupComponent.prototype, "disabled", null);
__decorate([
HostBinding('attr.disabled'),
__metadata("design:type", String),
__metadata("design:paramtypes", [])
], NbOptionGroupComponent.prototype, "disabledAttribute", null);
__decorate([
ContentChildren(NbOptionComponent, { descendants: true }),
__metadata("design:type", QueryList)
], NbOptionGroupComponent.prototype, "options", void 0);
NbOptionGroupComponent = __decorate([
Component({
selector: 'nb-option-group',
changeDetection: ChangeDetectionStrategy.OnPush,
template: `
<span class="option-group-title">{{ title }}</span>
<ng-content select="nb-option, ng-container"></ng-content>
`,
styles: [":host{display:block}.option-group-title{display:block}\n"]
})
], NbOptionGroupComponent);
export { NbOptionGroupComponent };
//# sourceMappingURL=option-group.component.js.map