blob: f27fcadcc4c2fbc323406c0959e0e5539b9c41fa [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import {Component, forwardRef, Input, OnInit} from '@angular/core';
import {FetchRequest} from '../../services/domain/paging/fetch-request.model';
import {Observable} from 'rxjs/Observable';
import {ControlValueAccessor, FormControl, NG_VALUE_ACCESSOR} from '@angular/forms';
import {Customer} from '../../services/customer/domain/customer.model';
import {CustomerService} from '../../services/customer/customer.service';
import {CustomerPage} from '../../services/customer/domain/customer-page.model';
const noop: () => void = () => {
// empty method
};
@Component({
providers: [
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => CustomerSelectComponent), multi: true }
],
selector: 'fims-customer-select',
templateUrl: './customer-select.component.html'
})
export class CustomerSelectComponent implements ControlValueAccessor, OnInit {
formControl: FormControl;
@Input() title: string;
@Input() required: boolean;
customers: Observable<Customer[]>;
private _onTouchedCallback: () => void = noop;
private _onChangeCallback: (_: any) => void = noop;
constructor(private customerService: CustomerService) {}
ngOnInit(): void {
this.formControl = new FormControl('');
this.customers = this.formControl.valueChanges
.distinctUntilChanged()
.debounceTime(500)
.do(name => this.changeValue(name))
.filter(name => name)
.switchMap(name => this.onSearch(name));
}
changeValue(value: string): void {
this._onChangeCallback(value);
}
writeValue(value: any): void {
this.formControl.setValue(value);
}
registerOnChange(fn: any): void {
this._onChangeCallback = fn;
}
registerOnTouched(fn: any): void {
this._onTouchedCallback = fn;
}
onSearch(searchTerm?: string): Observable<Customer[]> {
const fetchRequest: FetchRequest = {
page: {
pageIndex: 0,
size: 5
},
searchTerm
};
return this.customerService.fetchCustomers(fetchRequest)
.map((customerPage: CustomerPage) => customerPage.customers);
}
}