import { ComponentRef, Directive, ElementRef, EventEmitter, Input, OnChanges, OnDestroy, OnInit, Output, Renderer2, SimpleChanges, ViewContainerRef } from '@angular/core'; import { ComponentLoader, ComponentLoaderFactory } from 'ngx-bootstrap/component-loader'; import { Subscription } from 'rxjs'; import { BsDatepickerConfig } from './bs-datepicker.config'; import { BsDatepickerInlineConfig } from './bs-datepicker-inline.config'; import { BsDatepickerInlineContainerComponent } from './themes/bs/bs-datepicker-inline-container.component'; import { DatepickerDateCustomClasses } from './models'; @Directive({ selector: 'bs-datepicker-inline', exportAs: 'bsDatepickerInline' }) export class BsDatepickerInlineDirective implements OnInit, OnDestroy, OnChanges { _bsValue: Date; /** * Initial value of datepicker */ @Input() set bsValue(value: Date) { if (this._bsValue === value) { return; } this._bsValue = value; this.bsValueChange.emit(value); } /** * Config object for datepicker */ @Input() bsConfig: Partial; /** * Indicates whether datepicker is enabled or not */ @Input() isDisabled: boolean; /** * Minimum date which is available for selection */ @Input() minDate: Date; /** * Maximum date which is available for selection */ @Input() maxDate: Date; /** * Date custom classes */ @Input() dateCustomClasses: DatepickerDateCustomClasses[]; /** * Disable specific dates */ @Input() datesEnabled: Date[]; /** * Enable specific dates */ @Input() datesDisabled: Date[]; /** * Emits when datepicker value has been changed */ @Output() bsValueChange: EventEmitter = new EventEmitter(); protected _subs: Subscription[] = []; private _datepicker: ComponentLoader; private _datepickerRef: ComponentRef; constructor( public _config: BsDatepickerInlineConfig, private _elementRef: ElementRef, _renderer: Renderer2, _viewContainerRef: ViewContainerRef, cis: ComponentLoaderFactory ) { // todo: assign only subset of fields Object.assign(this, this._config); this._datepicker = cis.createLoader( _elementRef, _viewContainerRef, _renderer ); } ngOnInit(): void { this.setConfig(); // if date changes from external source (model -> view) this._subs.push( this.bsValueChange.subscribe((value: Date) => { this._datepickerRef.instance.value = value; }) ); // if date changes from picker (view -> model) this._subs.push( this._datepickerRef.instance.valueChange.subscribe((value: Date) => { this.bsValue = value; }) ); } ngOnChanges(changes: SimpleChanges): void { if (!this._datepickerRef || !this._datepickerRef.instance) { return; } if (changes.minDate) { this._datepickerRef.instance.minDate = this.minDate; this.setConfig(); } if (changes.maxDate) { this._datepickerRef.instance.maxDate = this.maxDate; this.setConfig(); } if (changes.datesDisabled) { this._datepickerRef.instance.datesDisabled = this.datesDisabled; this.setConfig(); } if (changes.datesEnabled) { this._datepickerRef.instance.datesEnabled = this.datesEnabled; this._datepickerRef.instance.value = this._bsValue; } if (changes.isDisabled) { this._datepickerRef.instance.isDisabled = this.isDisabled; this.setConfig(); } if (changes.dateCustomClasses) { this._datepickerRef.instance.dateCustomClasses = this.dateCustomClasses; this.setConfig(); } } /** * Set config for datepicker */ setConfig(): void { if (this._datepicker) { this._datepicker.hide(); } this._config = Object.assign({}, this._config, this.bsConfig, { value: this._bsValue, isDisabled: this.isDisabled, minDate: this.minDate || this.bsConfig && this.bsConfig.minDate, maxDate: this.maxDate || this.bsConfig && this.bsConfig.maxDate, dateCustomClasses: this.dateCustomClasses || this.bsConfig && this.bsConfig.dateCustomClasses, datesDisabled: this.datesDisabled || this.bsConfig && this.bsConfig.datesDisabled, datesEnabled: this.datesEnabled || this.bsConfig && this.bsConfig.datesEnabled }); this._datepickerRef = this._datepicker .provide({provide: BsDatepickerConfig, useValue: this._config}) .attach(BsDatepickerInlineContainerComponent) .to(this._elementRef) .show(); } ngOnDestroy(): any { this._datepicker.dispose(); } }