74 lines
1.3 KiB
TypeScript
74 lines
1.3 KiB
TypeScript
import {
|
|
AfterContentInit, Component, EventEmitter, Input,
|
|
OnInit, Output
|
|
} from '@angular/core';
|
|
import {
|
|
FormBuilder,
|
|
FormGroup
|
|
} from '@angular/forms';
|
|
|
|
@Component({
|
|
selector: 'of-discovery-search-config',
|
|
templateUrl: './search-config.component.html',
|
|
})
|
|
export class SearchConfigComponent implements OnInit, AfterContentInit {
|
|
|
|
@Output() discoverySearchStartClick = new EventEmitter();
|
|
@Output() selectProbe = new EventEmitter();
|
|
|
|
includeServices = [];
|
|
|
|
discoveryFormGroup: FormGroup;
|
|
|
|
ipVesion: number;
|
|
portType: number;
|
|
|
|
startIP: string;
|
|
endIP: string;
|
|
excludeIP: string;
|
|
startPort: string;
|
|
endPort: string;
|
|
excludePort: string;
|
|
|
|
probe: number;
|
|
|
|
startHostIp: string;
|
|
endHostIp: string;
|
|
excludeHostIp: string;
|
|
|
|
constructor(
|
|
private formBuilder: FormBuilder,
|
|
) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.ipVesion = 0;
|
|
this.portType = 0;
|
|
this.initForm();
|
|
// this.hostIp = '192.168.1.10';
|
|
}
|
|
|
|
ngAfterContentInit() {
|
|
}
|
|
|
|
initForm() {
|
|
// this.discoveryFormGroup = this.formBuilder.group({
|
|
//
|
|
// });
|
|
}
|
|
|
|
discoveryStartClick() {
|
|
this.discoverySearchStartClick.emit();
|
|
}
|
|
|
|
onProbeSelect(probe) {
|
|
console.log(probe);
|
|
this.selectProbe.emit(probe);
|
|
}
|
|
|
|
onInputIP(event, idx) {
|
|
console.log(idx);
|
|
console.log(event.target.data);
|
|
}
|
|
}
|