|
|
@ -1,15 +1,24 @@ |
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
import { Component, OnInit, ViewChild } from '@angular/core'; |
|
|
|
import { Component, OnInit, ViewChild } from '@angular/core'; |
|
|
|
import { FormBuilder, FormGroup } from '@angular/forms'; |
|
|
|
import { FormBuilder, FormGroup } from '@angular/forms'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { Directive, HostListener, Input, EventEmitter, Output, OnDestroy } from '@angular/core'; |
|
|
|
import { TreeService } from 'src/app/service/tree.service'; |
|
|
|
import { TreeService } from 'src/app/service/tree.service'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { debounceTime } from 'rxjs/operators'; |
|
|
|
|
|
|
|
import { Subject, Subscription } from 'rxjs'; |
|
|
|
@Component({ |
|
|
|
@Component({ |
|
|
|
selector: 'app-zhi-indicators', |
|
|
|
selector: 'app-zhi-indicators', |
|
|
|
templateUrl: './zhi-indicators.component.html', |
|
|
|
templateUrl: './zhi-indicators.component.html', |
|
|
|
styleUrls: ['./zhi-indicators.component.scss'] |
|
|
|
styleUrls: ['./zhi-indicators.component.scss'] |
|
|
|
}) |
|
|
|
}) |
|
|
|
export class ZhiIndicatorsComponent implements OnInit { |
|
|
|
export class ZhiIndicatorsComponent implements OnInit { |
|
|
|
|
|
|
|
@Input('appDebounceInput') debounceTime = 500; |
|
|
|
|
|
|
|
@Output() debounceInput = new EventEmitter(); |
|
|
|
|
|
|
|
private inputs = new Subject<any>(); |
|
|
|
|
|
|
|
private subscription: Subscription; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@HostListener('input', ['event']) |
|
|
|
validateForm!: FormGroup; |
|
|
|
validateForm!: FormGroup; |
|
|
|
|
|
|
|
|
|
|
|
constructor(private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { } |
|
|
|
constructor(private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { } |
|
|
|