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

131 lines
3.5 KiB
TypeScript
Raw Normal View History

2018-06-04 08:25:29 +00:00
import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core';
import { Probe, ProbeHost } from '@overflow/commons-typescript/model/probe';
import { Store, select } from '@ngrx/store';
import { Observable, of, Subscription } from 'rxjs';
2018-06-04 08:55:47 +00:00
import { catchError, exhaustMap, map, tap, take } from 'rxjs/operators';
2018-06-04 08:25:29 +00:00
import { AuthSelector } from '@overflow/shared/auth/store';
import { DomainMember } from '@overflow/commons-typescript/model/domain';
import { ProbeHostService } from '../service/probe-host.service';
import { ProbeService } from '../service/probe.service';
@Component({
selector: 'of-probe-general',
templateUrl: './probe-general.component.html',
})
export class ProbeGeneralComponent implements OnInit {
@Input() probeID: number;
@Input() probe: Probe;
@Output() modified = new EventEmitter<Probe>();
error$: Observable<any>;
pending$: Observable<boolean>;
editMode = false;
2018-06-15 12:31:44 +00:00
nameErrMsg: string;
2018-06-04 08:25:29 +00:00
descriptionErrMsg: string;
2018-06-15 12:31:44 +00:00
name: string;
2018-06-04 08:25:29 +00:00
description: string;
constructor(
private probeService: ProbeService,
) {
}
ngOnInit() {
if (undefined === this.probe && undefined === this.probeID) {
// Create
} else if (undefined !== this.probe && undefined === this.probeID) {
// use probe
} else if (undefined === this.probe && undefined !== this.probeID) {
// get probe
this.probeService.read(this.probeID)
.pipe(
tap(() => {
this.pending$ = of(true);
}),
map((probe: Probe) => {
this.probe = probe;
}),
catchError(error => {
this.error$ = of(error);
return of();
}),
tap(() => {
this.pending$ = of(false);
}),
2018-06-04 08:55:47 +00:00
take(1),
).subscribe();
2018-06-04 08:25:29 +00:00
} else {
// error
}
}
2018-06-15 12:31:44 +00:00
onNameEditing(value: string) {
const msg: string = this.checkValidName(value);
2018-06-04 08:25:29 +00:00
if (msg !== null) {
2018-06-15 12:31:44 +00:00
this.nameErrMsg = msg;
2018-06-04 08:25:29 +00:00
} else {
2018-06-15 12:31:44 +00:00
this.nameErrMsg = null;
this.name = value.trim();
2018-06-04 08:25:29 +00:00
}
}
onDescriptionEditing(value: string) {
const msg: string = this.checkValidDescription(value);
if (msg !== null) {
this.descriptionErrMsg = msg;
} else {
this.descriptionErrMsg = null;
this.description = value.trim();
}
}
onEditSave() {
2018-06-15 12:31:44 +00:00
this.probe.name = this.name ? this.name : this.probe.name;
2018-06-04 08:25:29 +00:00
this.probe.description = this.description ? this.description : this.probe.description;
this.probeService.modify(this.probe)
.pipe(
tap(() => {
this.pending$ = of(true);
}),
map((probe: Probe) => {
this.editMode = false;
this.probe = probe;
this.modified.emit(probe);
}),
catchError(error => {
this.error$ = of(error);
return of();
}),
tap(() => {
this.pending$ = of(false);
}),
2018-06-04 08:55:47 +00:00
take(1),
).subscribe();
2018-06-04 08:25:29 +00:00
}
2018-06-15 12:31:44 +00:00
checkValidName(value: string): string | null {
2018-06-04 08:25:29 +00:00
if (value.length <= 2 || value.length > 20) {
return 'displayname length : 3 ~ 20';
}
const regex = /[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi;
if (value.match(regex)) {
return 'Cannot use special characters.';
}
return null;
}
checkValidDescription(value: string): string | null {
if (value.length > 50) {
return 'description length : 0 ~ 50';
}
const regex = /[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi;
if (value.match(regex)) {
return 'Cannot use special characters.';
}
return null;
}
}