member_webapp/@overflow/probe/component/probe-detail.component.ts

107 lines
2.9 KiB
TypeScript
Raw Normal View History

2018-05-31 09:45:40 +00:00
import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core';
2018-05-25 09:18:06 +00:00
import { Probe, ProbeHost } from '@overflow/commons-typescript/model/probe';
2018-05-31 09:45:40 +00:00
import { Store, select } from '@ngrx/store';
import { Observable, of, Subscription } from 'rxjs';
import { catchError, exhaustMap, map, tap } from 'rxjs/operators';
import { AuthContainerSelector } from '@overflow/shared/auth/store';
import { DomainMember } from '@overflow/commons-typescript/model/domain';
import { ProbeHostService } from '../service/probe-host.service';
2018-04-06 13:02:46 +00:00
@Component({
selector: 'of-probe-detail',
2018-05-31 09:45:40 +00:00
templateUrl: './probe-detail.component.html',
2018-04-06 13:02:46 +00:00
})
2018-05-31 09:45:40 +00:00
export class ProbeDetailComponent implements OnInit {
@Input() probeHostID;
pending$: Observable<boolean>;
probeHost: ProbeHost;
error$: Observable<any>;
2018-04-06 13:02:46 +00:00
2018-05-25 09:18:06 +00:00
@Output() modify = new EventEmitter<ProbeHost>();
@Output() discovery = new EventEmitter<number>();
2018-04-06 13:02:46 +00:00
2018-05-26 09:59:57 +00:00
2018-05-25 09:18:06 +00:00
editMode = false;
2018-05-26 09:08:40 +00:00
displayNameErrMsg: string;
descriptionErrMsg: string;
displayName: string;
description: string;
2018-04-06 13:02:46 +00:00
2018-05-31 09:45:40 +00:00
constructor(
private store: Store<any>,
private probeHostService: ProbeHostService
) {
2018-04-27 07:31:27 +00:00
}
2018-05-31 09:45:40 +00:00
ngOnInit() {
this.probeHostService.read(this.probeHostID)
.pipe(
tap(() => {
this.pending$ = of(true);
}),
map((probeHost: ProbeHost) => {
this.probeHost = probeHost;
}),
catchError(error => {
this.error$ = of(error);
return of();
}),
tap(() => {
this.pending$ = of(false);
}),
).take(1).subscribe();
2018-05-26 09:59:57 +00:00
}
2018-05-26 09:08:40 +00:00
onDisplayNameEditing(value: string) {
const msg: string = this.checkValidDisplayName(value);
if (msg !== null) {
this.displayNameErrMsg = msg;
} else {
this.displayNameErrMsg = null;
this.displayName = value;
2018-05-25 11:02:27 +00:00
}
2018-05-26 09:08:40 +00:00
}
2018-05-25 11:02:27 +00:00
2018-05-26 09:08:40 +00:00
onDescriptionEditing(value: string) {
const msg: string = this.checkValidDescription(value);
if (msg !== null) {
this.descriptionErrMsg = msg;
} else {
this.descriptionErrMsg = null;
this.description = value;
2018-05-25 11:02:27 +00:00
}
2018-05-26 09:08:40 +00:00
}
2018-05-25 11:02:27 +00:00
2018-05-26 09:08:40 +00:00
onEditSave() {
2018-05-27 09:12:20 +00:00
this.probeHost.probe.displayName = this.displayName ? this.displayName : this.probeHost.probe.displayName;
this.probeHost.probe.description = this.description ? this.description : this.probeHost.probe.description;
2018-05-25 09:18:06 +00:00
this.modify.emit(this.probeHost);
this.editMode = false;
2018-04-06 13:02:46 +00:00
}
2018-05-26 09:08:40 +00:00
checkValidDisplayName(value: string): string | null {
if (value.length <= 2 || value.length > 20) {
2018-05-25 11:02:27 +00:00
return 'displayname length : 3 ~ 20';
}
const regex = /[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi;
2018-05-26 09:08:40 +00:00
if (value.match(regex)) {
2018-05-25 11:02:27 +00:00
return 'Cannot use special characters.';
}
return null;
}
2018-05-26 09:08:40 +00:00
checkValidDescription(value: string): string | null {
if (value.length > 50) {
2018-05-25 11:02:27 +00:00
return 'description length : 0 ~ 50';
}
const regex = /[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi;
2018-05-26 09:08:40 +00:00
if (value.match(regex)) {
2018-05-25 11:02:27 +00:00
return 'Cannot use special characters.';
}
return null;
}
2018-04-06 13:02:46 +00:00
}
2018-04-06 11:02:18 +00:00