Skip to content
Snippets Groups Projects
plugin-select-autocomplete-search.component.ts 14.5 KiB
Newer Older
  • Learn to ignore specific revisions
  • 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
    import {
        AfterViewInit, ChangeDetectorRef,
        Component, ElementRef, EventEmitter, Input, OnDestroy, OnInit, QueryList,
        ViewChild,
        Renderer2,
        Output
    } from '@angular/core';
    import { ControlValueAccessor, FormControl } from '@angular/forms';
    import { MatOption } from '@angular/material/core';
    import { MatSelect } from '@angular/material/select';
    import { take, takeUntil, startWith, map, debounceTime, filter, tap, switchMap } from 'rxjs/operators';
    import { Subject, ReplaySubject, Observable, forkJoin, of } from 'rxjs';
    import { LatinisePipe } from 'ngx-pipes';
    import { TranslateService } from '@ngx-translate/core';
    import { AppService } from '../../service/app.service';
    import { SortPipe } from '../sorting.pipe';
    import { FunctionsService } from '../../service/functions.service';
    import { HttpClient } from '@angular/common/http';
    
    @Component({
        selector: 'plugin-select-autocomplete-search',
        templateUrl: 'plugin-select-autocomplete-search.component.html',
        styleUrls: ['plugin-select-autocomplete-search.component.scss', '../../app/indexation/indexing-form/indexing-form.component.scss'],
        providers: [SortPipe]
    })
    export class PluginSelectAutocompleteSearchComponent implements OnInit, OnDestroy, AfterViewInit, ControlValueAccessor {
        /** Label of the search placeholder */
        @Input() placeholderLabel = this.translate.instant('lang.chooseValue');
    
        @Input() formControlSelect: FormControl = new FormControl();
    
        @Input() datas: any = [];
    
        @Input() returnValue: 'id' | 'object' = 'id';
    
        @Input() label: string;
    
        @Input() id: string = '';
    
        @Input() showResetOption: boolean;
    
        @Input() showLabel: boolean = false;
    
        @Input() required: boolean = false;
    
        @Input() hideErrorDesc: boolean = true;
    
        @Input() multiple: boolean = false;
    
        @Input() optGroupTarget: string = null;
    
        /**
         * Route datas used in async autocomplete. Incompatible with @datas
         */
        @Input() routeDatas: string[];
    
        /**
         * ex : [ { id : 'group1' , label: 'Group 1'} ]
         */
        @Input() optGroupList: any = null;
    
    
        /**
         * ex : {class:'fa-circle', color:'#fffff', title: 'foo'}
         */
        @Input() suffixIcon: any = null;
    
        @Input() class: string = 'input-form';
    
        /**
         * Catch external event after select an element in autocomplete
         */
        @Output() afterSelected = new EventEmitter();
        @Output() afterOpened = new EventEmitter();
    
        /** Reference to the search input field */
        @ViewChild('searchSelectInput', { read: ElementRef, static: true }) searchSelectInput: ElementRef;
    
        @ViewChild('test', { static: true }) matSelect: MatSelect;
    
        public filteredDatas: Observable<string[]>;
    
        public filteredDatasMulti: ReplaySubject<any[]> = new ReplaySubject<any[]>(1);
    
        /** Reference to the MatSelect options */
        public _options: QueryList<MatOption>;
    
        /** Previously selected values when using <mat-select [multiple]="true">*/
        private previousSelectedValues: any[];
    
        /** Whether the backdrop class has been set */
        private overlayClassSet = false;
    
        /** Event that emits when the current value changes */
        private change = new EventEmitter<string>();
    
        /** Subject that emits when the component has been destroyed. */
        private _onDestroy = new Subject<void>();
    
        formControlSearch = new FormControl();
        selecteded: any = [];
    
        /** Current search value */
        get value(): string {
            return this._value;
        }
        private _value: string;
    
        onChange: Function = (_: any) => { };
        onTouched: Function = (_: any) => { };
    
        constructor(
            public http: HttpClient,
            public translate: TranslateService,
            private latinisePipe: LatinisePipe,
            private changeDetectorRef: ChangeDetectorRef,
            private renderer: Renderer2,
            public appService: AppService,
            public functions: FunctionsService,
            private sortPipe: SortPipe) { }
    
        ngOnInit() {
            if (this.optGroupList !== null) {
                this.initOptGroups();
            }
    
            // set custom panel class
            const panelClass = 'mat-select-search-panel';
            if (this.matSelect.panelClass) {
                if (Array.isArray(this.matSelect.panelClass)) {
                    this.matSelect.panelClass.push(panelClass);
                } else if (typeof this.matSelect.panelClass === 'string') {
                    this.matSelect.panelClass = [this.matSelect.panelClass, panelClass];
                } else if (typeof this.matSelect.panelClass === 'object') {
                    this.matSelect.panelClass[panelClass] = true;
                }
            } else {
                this.matSelect.panelClass = panelClass;
            }
    
            // when the select dropdown panel is opened or closed
            this.matSelect.openedChange
                .pipe(takeUntil(this._onDestroy))
                .subscribe((opened) => {
                    if (opened) {
                        // focus the search field when opening
                        if (!this.appService.getViewMode()) {
                            this._focus();
                        }
                    } else {
                        // clear it when closing
                        // this._reset();
                        this.formControlSearch.reset();
                    }
                });
    
            // set the first item active after the options changed
            this.matSelect.openedChange
                .pipe(take(1))
                .pipe(takeUntil(this._onDestroy))
                .subscribe(() => {
                    this._options = this.matSelect.options;
                    this._options.changes
                        .pipe(takeUntil(this._onDestroy))
                        .subscribe(() => {
                            const keyManager = this.matSelect._keyManager;
                            if (keyManager && this.matSelect.panelOpen) {
                                // avoid "expression has been changed" error
                                setTimeout(() => {
                                    keyManager.setFirstItemActive();
                                });
                            }
                        });
                });
    
            this.formControlSearch.valueChanges
                .pipe(
                    debounceTime(300),
                    filter(value => value !== null && value.length > 2),
                    // distinctUntilChanged(),
                    // tap(() => this.loading = true),
                    switchMap((data: any) => this.getDatas(data)),
                    tap((data: any) => {
                        /*if (data.length === 0) {
                            if (this.manageDatas !== undefined) {
                                this.listInfo = this.translate.instant('lang.noAvailableValue') + ' <div>' + this.translate.instant('lang.typeEnterToCreate') + '</div>';
                            } else {
                                this.listInfo = this.translate.instant('lang.noAvailableValue');
                            }
                        } else {
                            this.listInfo = '';
                        }*/
                        this.datas = this.datas.filter((val: any) =>  this.formControlSelect.value.indexOf(val.id) > -1).concat(data.filter((val: any) =>  this.formControlSelect.value.indexOf(val.id) === -1));
                        this.filteredDatas = of(this.datas);
                        // this.loading = false;
                    })
                ).subscribe();
    
    
            // this.initMultipleHandling();
    
        }
    
        resetACDatas() {
            this.datas = this.datas.filter((val: any) =>  this.formControlSelect.value.indexOf(val.id) > -1);
            this.filteredDatas = of(this.datas);
        }
    
        initOptGroups() {
            this.datas.unshift({ id: 0, label: 'toto', disabled: true });
    
            let tmpArr = [];
    
            this.optGroupList = this.sortPipe.transform(this.optGroupList, 'label');
            this.optGroupList.forEach(group => {
                tmpArr.push({ id: group.id, label: group.label, disabled: true });
                tmpArr = tmpArr.concat(this.datas.filter(data => data[this.optGroupTarget] === group.id).map(data => {
                    return {
                        ...data,
                        title: data.label,
                        label: '&nbsp;&nbsp;&nbsp' + data.label
                    };
                }));
            });
    
            this.datas = tmpArr;
        }
    
        ngOnDestroy() {
            this._onDestroy.next();
            this._onDestroy.complete();
        }
    
        ngAfterViewInit() {
            if (this.datas.length > 5) {
                this.setOverlayClass();
            }
        }
    
        /**
         * Handles the key down event with MatSelect.
         * Allows e.g. selecting with enter key, navigation with arrow keys, etc.
         * @param {KeyboardEvent} event
         * @private
         */
        _handleKeydown(event: KeyboardEvent) {
            if (event.keyCode === 32) {
                // do not propagate spaces to MatSelect, as this would select the currently active option
                event.stopPropagation();
            }
    
        }
    
    
        writeValue(value: string) {
            const valueChanged = value !== this._value;
            if (valueChanged) {
                this._value = value;
                this.change.emit(value);
            }
        }
    
        onInputChange(value: any) {
            const valueChanged = value !== this._value;
            if (valueChanged) {
                this._value = value;
                this.onChange(value);
                this.change.emit(value);
            }
        }
    
        onBlur(value: string) {
            this.writeValue(value);
            this.onTouched();
        }
    
        registerOnChange(fn: Function) {
            this.onChange = fn;
        }
    
        registerOnTouched(fn: Function) {
            this.onTouched = fn;
        }
    
        /**
         * Focuses the search input field
         * @private
         */
        public _focus() {
            // save and restore scrollTop of panel, since it will be reset by focus()
            // note: this is hacky
            const panel = this.matSelect.panel.nativeElement;
            const scrollTop = panel.scrollTop;
    
            // focus
            this.renderer.selectRootElement('#searchSelectInput').focus();
    
            panel.scrollTop = scrollTop;
        }
    
        /**
         * Resets the current search value
         * @param {boolean} focus whether to focus after resetting
         * @private
         */
        public _reset(focus?: boolean) {
    
            this.formControlSearch.reset();
    
            this.resetACDatas();
    
            this.renderer.selectRootElement('#searchSelectInput').focus();
    
        }
    
        /**
         * Sets the overlay class  to correct offsetY
         * so that the selected option is at the position of the select box when opening
         */
        private setOverlayClass() {
            if (this.overlayClassSet) {
                return;
            }
            const overlayClass = 'cdk-overlay-pane-select-search';
    
            this.matSelect.overlayDir.attach
                .pipe(takeUntil(this._onDestroy))
                .subscribe(() => {
                    // note: this is hacky, but currently there is no better way to do this
                    if (this.searchSelectInput !== undefined) {
                        this.searchSelectInput.nativeElement.parentElement.parentElement
                            .parentElement.parentElement.parentElement.classList.add(overlayClass);
                    }
                });
    
            this.overlayClassSet = true;
        }
    
    
        /**
         * Initializes handling <mat-select [multiple]="true">
         * Note: to improve this code, mat-select should be extended to allow disabling resetting the selection while filtering.
         */
        private initMultipleHandling() {
            // if <mat-select [multiple]="true">
            // store previously selected values and restore them when they are deselected
            // because the option is not available while we are currently filtering
            this.matSelect.valueChange
                .pipe(takeUntil(this._onDestroy))
                .subscribe((values) => {
                    if (this.matSelect.multiple) {
                        let restoreSelectedValues = false;
                        if (this._value && this._value.length
                            && this.previousSelectedValues && Array.isArray(this.previousSelectedValues)) {
                            if (!values || !Array.isArray(values)) {
                                values = [];
                            }
                            const optionValues = this.matSelect.options.map(option => option.value);
                            this.previousSelectedValues.forEach(previousValue => {
                                if (values.indexOf(previousValue) === -1 && optionValues.indexOf(previousValue) === -1) {
                                    // if a value that was selected before is deselected and not found in the options, it was deselected
                                    // due to the filtering, so we restore it.
                                    values.push(previousValue);
                                    restoreSelectedValues = true;
                                }
                            });
                        }
    
                        if (restoreSelectedValues) {
                            this.matSelect._onChange(values);
                        }
    
                        this.previousSelectedValues = values;
                    }
                });
        }
    
        private _filter(value: string, showSelectedValues: boolean = false): string[] {
            if (value === '__SELECTED') {
                return this.datas.filter((option: any) => this.formControlSelect.value.indexOf(option['id']) > -1);
            } else if (typeof value === 'string' && value !== '') {
                const filterValue = this.latinisePipe.transform(value.toLowerCase());
                return this.datas.filter((option: any) => !option['disabled'] && this.latinisePipe.transform(option['label'].toLowerCase()).includes(filterValue));
            } else {
                return this.datas;
            }
        }
    
        launchEvent(ev: any) {
            if (this.afterSelected !== undefined) {
                this.afterSelected.emit(ev.value);
            }
        }
    
        getErrorMsg(error: any) {
            if (error.required !== undefined) {
                return this.translate.instant('lang.requiredField');
            } else if (error.pattern !== undefined || error.email !== undefined) {
                return this.translate.instant('lang.badFormat');
            } else {
                return 'unknow validator';
            }
        }
    
        getDatas(data: string) {
            const arrayObs: any = [];
            const test: any = [];
            this.routeDatas.forEach(element => {
                arrayObs.push(this.http.get('..' + element, { params: { 'search': data } }));
            });
    
            return forkJoin(arrayObs).pipe(
                map(items => {
                    items.forEach((element: any) => {
                        element.forEach((element2: any) => {
                            test.push({
                                id: element2.id,
                                label: element2.idToDisplay
                            });
                        });
                    });
                    return test;
                })
            );
        }
    }