import { AfterViewInit, ChangeDetectorRef, Component, ElementRef, EventEmitter, HostListener, Input, OnChanges, OnDestroy, OnInit, Output, SimpleChanges, ViewChild } from "@angular/core"; import {AbstractControl, FormArray, FormControl, ValidatorFn} from "@angular/forms"; import {HelperFunctions} from "../../utils/HelperFunctions.class"; import {Subscription} from "rxjs"; import {EnvProperties} from "../../utils/properties/env-properties"; import {properties} from "../../../../environments/environment"; import {ClickEvent} from "../../utils/click/click-outside-or-esc.directive"; export type InputType = 'text' | 'URL' | 'logoURL' | 'autocomplete' | 'autocomplete_soft' | 'textarea' | 'select' | 'chips'; export interface Option { icon?: string, iconClass?: string, value: any, label: string, tooltip?: string, disabled?: boolean, hidden?: boolean } export interface Placeholder { label: string, static?: boolean } declare var UIkit; /** * WARNING! dashboard-input selector is @deprecated, use input instead * * Autocomplete soft allows values that are not listed in options list. In order to work as expected * avoid providing options with different label and value. * * */ @Component({ selector: '[dashboard-input], [input]', template: `
{{placeholderInfo.label}}
{{getLabel(formControl.value)}}
{{noValueSelected}}
{{getLabel(formControl.value)}}
{{getLabel(formAsControl.value)}}
{{noValueSelected}}
{{getLabel(formControl.value)}}
{{getLabel(chip.value)}}
+ {{(formAsArray.length - 1)}} more
{{formControl.errors.error}} Please provide a valid URL (e.g. https://example.com) Note: Prefer urls like "https://example.com/my-secure-image.png" instead of "http://example.com/my-image.png". Browsers may not load non secure content. ` }) export class InputComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges { private static INPUT_COUNTER: number = 0; /** Deprecated options*/ /** @deprecated */ @Input('label') label: string; /** @deprecated */ @Input() extraLeft: boolean = true; /** @deprecated */ @Input() gridSmall: boolean = false; /** @deprecated */ @Input() hideControl: boolean = false; /** @deprecated */ @Input() flex: 'middle' | 'top' | 'bottom' = 'middle'; /** @deprecated */ @Input() iconLeft: boolean = false; /** @deprecated */ @Input() removable: boolean = true; /** @deprecated */ @Input() smallChip: boolean = false; /** @deprecated */ @Input() panelWidth: number = 300; /** @deprecated */ @Input() panelClass: string = null; /** Basic information */ @Input('formInput') formControl: AbstractControl; @Input('type') type: InputType = 'text'; @Input() validators: ValidatorFn[] | ValidatorFn; @Input() disabled: boolean = false; @Input() disabledIcon: string = 'lock'; @Input() value: any | any[]; @Output() valueChange = new EventEmitter(); @Input() hint: string; @Input() tooltip: boolean = false; @Input() searchable: boolean = false; /** Text */ @ViewChild('input') input: ElementRef; /** Textarea options */ @ViewChild('textArea') textArea: ElementRef; @Input('rows') rows: number = 3; /** Select | Autocomplete | chips available options */ @Input() selectArrow: string = 'arrow_drop_down'; @Input() selectedIndex: number = 0; @Input() selectable: boolean = false; @Input() noValueSelected: string = 'No option selected'; /** Chips && Autocomplete*/ public filteredOptions: Option[] = []; public searchControl: FormControl; /** Use modifier's class(es) to change view of your Input */ @Input() inputClass: string = 'inner'; /** Icon on the input */ @Input() icon: string = null; /** Chip options */ @Input() addExtraChips: boolean = false; @Input() showOptionsOnEmpty: boolean = true; @Output() focusEmitter: EventEmitter = new EventEmitter(); /** LogoUrl information */ public secure: boolean = true; /** Internal basic information */ public id: string; public placeholderInfo: Placeholder = {label: '', static: true}; public required: boolean = false; public focused: boolean = false; public opened: boolean = false; public properties: EnvProperties = properties; private initValue: any; private optionsArray: Option[] = []; private optionsBreakpoint: number = 6; private subscriptions: any[] = []; @ViewChild('inputBox') inputBox: ElementRef; @ViewChild('optionBox') optionBox: ElementRef; @ViewChild('searchInput') searchInput: ElementRef; @Input() set placeholder(placeholder: string | Placeholder) { if (typeof placeholder === 'string') { this.placeholderInfo = {label: placeholder, static: false}; } else { if (placeholder.static && (this.type === 'autocomplete' || this.type === 'chips' || this.hint)) { placeholder.static = false; console.debug('Static placeholder is not available in this type of input and if hint is available.'); } this.placeholderInfo = placeholder; } } @Input() set options(options: (Option | string | number) []) { this.optionsArray = options.map(option => { if (typeof option === 'string' || typeof option === 'number') { return { label: option.toString(), value: option }; } else { return option; } }); if(!this.tooltip) { this.tooltip = this.optionsArray.length > 0; } if(this.type === "select") { if (this.optionsArray.length > this.optionsBreakpoint) { this.type = 'autocomplete'; this.showOptionsOnEmpty = true; this.icon = this.selectArrow; } this.selectable = true; } } constructor(private elementRef: ElementRef, private cdr: ChangeDetectorRef) { if (elementRef.nativeElement.hasAttribute('dashboard-input') && this.properties.environment === "development") { console.warn("'dashboard-input' selector is deprecated; use 'input' instead."); } } @HostListener('window:keydown.arrowUp', ['$event']) arrowUp(event: KeyboardEvent) { if (this.opened) { event.preventDefault(); if (this.selectedIndex > 0) { this.selectedIndex--; this.optionBox.nativeElement.scrollBy(0, -34); } } } @HostListener('window:keydown.arrowDown', ['$event']) arrowDown(event: KeyboardEvent) { if (this.opened) { event.preventDefault(); if (this.selectedIndex < (this.filteredOptions.length - 1)) { this.selectedIndex++; this.optionBox.nativeElement.scrollBy(0, 34); } } } @HostListener('window:keydown.enter', ['$event']) enter(event: KeyboardEvent) { if (this.opened && this.optionBox) { event.preventDefault(); if (this.filteredOptions[this.selectedIndex]) { this.selectOption(this.filteredOptions[this.selectedIndex], event); } this.open(false); event.stopPropagation(); } else { this.focus(false, event); } } click(event: ClickEvent) { this.focus(!event.clicked, event); } ngOnInit() { InputComponent.INPUT_COUNTER++; this.id = 'input-' + InputComponent.INPUT_COUNTER; if (!this.formControl) { if (Array.isArray(this.value)) { this.formControl = new FormArray([]); this.value.forEach(value => { this.formAsArray.push(new FormControl(value, this.validators)); }); } else { this.formControl = new FormControl(this.value); this.formControl.setValidators(this.validators); } if (this.disabled) { this.formControl.disable(); } } } ngAfterViewInit() { this.reset(); } ngOnChanges(changes: SimpleChanges) { if (this.formControl) { if (changes.value) { this.formControl.setValue(this.value); } if (changes.formControl || changes.validators || changes.options) { this.reset(); } if (changes.disabled) { if (this.disabled) { this.formControl.disable(); } else { this.formControl.enable(); } } } } ngOnDestroy(): void { this.unsubscribe(); } get formAsControl(): FormControl { if (this.formControl instanceof FormControl) { return this.formControl; } else { return null; } } get formAsArray(): FormArray { if (this.formControl instanceof FormArray) { return this.formControl; } else { return null; } } reset() { this.secure = true; this.unsubscribe(); this.initValue = HelperFunctions.copy(this.formControl.value); if (this.type === 'logoURL') { this.secure = (!this.initValue || this.initValue.includes('https://')); } if (this.optionsArray) { this.filteredOptions = this.filter(''); this.cdr.detectChanges(); } if (this.type === 'chips' || this.type === 'autocomplete') { if (!this.searchControl) { this.searchControl = new FormControl('', this.validators); } this.subscriptions.push(this.searchControl.valueChanges.subscribe(value => { this.filteredOptions = this.filter(value); this.cdr.detectChanges(); if (this.focused) { this.open(true); setTimeout(() => { this.searchInput.nativeElement.focus(); this.searchInput.nativeElement.value = value; }, 0); } })); } if (this.formControl.validator) { let validator = this.formControl.validator({} as AbstractControl); this.required = (validator && validator.required); } this.subscriptions.push(this.formControl.valueChanges.subscribe(value => { if (this.formControl.enabled) { value = (value === '') ? null : value; if (this.type === 'logoURL') { this.secure = (!value || value.includes('https://')); } if (this.initValue === value || (this.initValue === '' && value === null)) { this.formControl.markAsPristine(); } else { this.formControl.markAsDirty(); } if (this.type === 'autocomplete_soft') { this.filteredOptions = this.filter(value); this.cdr.detectChanges(); if (this.focused) { this.open(true); } } if ((this.value && value && this.value !== value) || (!this.value && value) || this.value && !value) { this.valueChange.emit(this.formControl.value); } } })); if (this.input) { this.input.nativeElement.disabled = this.formControl.disabled; } } unsubscribe() { this.subscriptions.forEach(subscription => { if (subscription instanceof Subscription) { subscription.unsubscribe(); } }); } remove(index: number, event) { if (this.focused) { this.formAsArray.removeAt(index); this.formAsArray.markAsDirty(); this.focus(true); this.searchControl.setValue(''); event.stopPropagation(); } } private filter(value: string): Option[] { let options = this.optionsArray.filter(option => !option.hidden); if (this.type === "chips") { options = options.filter(option => !this.formAsArray.value.find(value => HelperFunctions.equals(option.value, value))); } if ((!value || value.length == 0)) { this.selectedIndex = 0; return (this.showOptionsOnEmpty) ? options : []; } const filterValue = value.toString().toLowerCase(); options = options.filter(option => option.label.toLowerCase().indexOf(filterValue) != -1); this.selectedIndex = options.findIndex(option => option.value === this.formControl.value); if (this.selectedIndex === -1) { this.selectedIndex = 0; } return options; } add(event) { if (this.addExtraChips && this.searchControl.value && this.searchControl.valid) { if (event && event.stopPropagation) { event.stopPropagation(); } this.formAsArray.push(new FormControl(this.searchControl.value, this.validators)); this.formAsArray.markAsDirty(); } this.searchControl.setValue(''); } getLabel(value: any): string { let option = this.optionsArray.find(option => HelperFunctions.equals(option.value, value)); return (option) ? option.label : (value); } getTooltip(value: any): string { let option = this.optionsArray.find(option => HelperFunctions.equals(option.value, value)); return (option) ? (option.tooltip ? option.tooltip : option.label) : (value); } focus(value: boolean, event = null) { if (this.focused) { this.formControl.markAsTouched(); } this.focused = value; this.cdr.detectChanges(); if (this.focused) { if (this.input) { this.input.nativeElement.focus(); } else if (this.textArea) { this.textArea.nativeElement.focus(); } else if (this.searchInput) { this.searchInput.nativeElement.focus(); } if (this.selectArrow) { this.open(!this.opened); } else if (this.type !== 'autocomplete' || this.showOptionsOnEmpty || !this.formControl.value) { this.open(true); } } else { this.open(false); if (this.input) { this.input.nativeElement.blur(); } else if (this.textArea) { this.textArea.nativeElement.blur(); } else if (this.searchInput) { this.searchInput.nativeElement.blur(); } if (this.searchControl) { this.add(event); } } this.focusEmitter.emit(this.focused); } open(value: boolean) { this.opened = value && this.formControl.enabled; this.cdr.detectChanges(); if (this.optionBox && this.opened) { this.selectedIndex = this.filteredOptions.findIndex(option => option.value === this.formControl.value); if (this.selectedIndex === -1 && this.type !== 'autocomplete_soft') { this.selectedIndex = 0; } UIkit.dropdown(this.optionBox.nativeElement).show(); } else { if (this.optionBox) { UIkit.dropdown(this.optionBox.nativeElement).hide(); this.focused = false; } } } resetSearch(event: any) { event.stopPropagation(); this.searchControl.setValue(''); this.focus(true, event); } resetValue(event: any) { event.stopPropagation(); this.formControl.setValue(''); this.focus(true, event); } selectOption(option: Option, event) { if (this.formControl.enabled) { if (this.formAsControl) { this.formAsControl.setValue(option.value); } else if (this.formAsArray) { this.formAsArray.push(new FormControl(option.value)); this.formAsArray.markAsDirty(); event.stopPropagation(); this.focus(true); this.searchControl.setValue(''); } } } }