83 lines
2.9 KiB
TypeScript
83 lines
2.9 KiB
TypeScript
import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';
|
|
import {FormBuilder, FormGroup, Validators} from '@angular/forms';
|
|
import {CustomErrorStateMatcher} from '@app/_helpers';
|
|
import {UserService} from '@app/_services';
|
|
import {Router} from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'app-account-search',
|
|
templateUrl: './account-search.component.html',
|
|
styleUrls: ['./account-search.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class AccountSearchComponent implements OnInit {
|
|
nameSearchForm: FormGroup;
|
|
nameSearchSubmitted: boolean = false;
|
|
nameSearchLoading: boolean = false;
|
|
phoneSearchForm: FormGroup;
|
|
phoneSearchSubmitted: boolean = false;
|
|
phoneSearchLoading: boolean = false;
|
|
addressSearchForm: FormGroup;
|
|
addressSearchSubmitted: boolean = false;
|
|
addressSearchLoading: boolean = false;
|
|
matcher = new CustomErrorStateMatcher();
|
|
|
|
constructor(
|
|
private formBuilder: FormBuilder,
|
|
private userService: UserService,
|
|
private router: Router,
|
|
) { }
|
|
|
|
ngOnInit(): void {
|
|
this.nameSearchForm = this.formBuilder.group({
|
|
name: ['', Validators.required],
|
|
});
|
|
this.phoneSearchForm = this.formBuilder.group({
|
|
phoneNumber: ['', Validators.required],
|
|
});
|
|
this.addressSearchForm = this.formBuilder.group({
|
|
address: ['', Validators.required],
|
|
});
|
|
}
|
|
|
|
get nameSearchFormStub(): any { return this.nameSearchForm.controls; }
|
|
get phoneSearchFormStub(): any { return this.phoneSearchForm.controls; }
|
|
get addressSearchFormStub(): any { return this.addressSearchForm.controls; }
|
|
|
|
onNameSearch(): void {
|
|
this.nameSearchSubmitted = true;
|
|
if (this.nameSearchForm.invalid) { return; }
|
|
this.nameSearchLoading = true;
|
|
this.userService.searchAccountByName(this.nameSearchFormStub.name.value);
|
|
this.nameSearchLoading = false;
|
|
}
|
|
|
|
async onPhoneSearch(): Promise<void> {
|
|
this.phoneSearchSubmitted = true;
|
|
if (this.phoneSearchForm.invalid) { return; }
|
|
this.phoneSearchLoading = true;
|
|
(await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)).subscribe(async res => {
|
|
if (res !== undefined) {
|
|
await this.router.navigateByUrl(`/accounts/${res.identities.evm['bloxberg:8996']}`);
|
|
} else {
|
|
alert('Account not found!');
|
|
}
|
|
});
|
|
this.phoneSearchLoading = false;
|
|
}
|
|
|
|
async onAddressSearch(): Promise<void> {
|
|
this.addressSearchSubmitted = true;
|
|
if (this.addressSearchForm.invalid) { return; }
|
|
this.addressSearchLoading = true;
|
|
(await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)).subscribe(async res => {
|
|
if (res !== undefined) {
|
|
await this.router.navigateByUrl(`/accounts/${res.identities.evm['bloxberg:8996']}`);
|
|
} else {
|
|
alert('Account not found!');
|
|
}
|
|
});
|
|
this.addressSearchLoading = false;
|
|
}
|
|
}
|