# 이슈처리 46, 226
This commit is contained in:
parent
9325c7ff8f
commit
f9dc3d4f16
|
@ -91,6 +91,7 @@
|
||||||
<ucap-room-list-item
|
<ucap-room-list-item
|
||||||
*ngFor="let room of searchRoomList"
|
*ngFor="let room of searchRoomList"
|
||||||
[loginRes]="loginRes"
|
[loginRes]="loginRes"
|
||||||
|
[isSelected]="(selectedRoomInfo$ | async)?.roomSeq === room.roomSeq"
|
||||||
[roomInfo]="room"
|
[roomInfo]="room"
|
||||||
[roomUserInfo]="getRoomUserList(room)"
|
[roomUserInfo]="getRoomUserList(room)"
|
||||||
[sessionVerinfo]="sessionVerinfo"
|
[sessionVerinfo]="sessionVerinfo"
|
||||||
|
|
|
@ -64,6 +64,7 @@ import {
|
||||||
} from '@ucap-webmessenger/ui';
|
} from '@ucap-webmessenger/ui';
|
||||||
import { TranslateService } from '@ngx-translate/core';
|
import { TranslateService } from '@ngx-translate/core';
|
||||||
import { environment } from '../../../../../environments/environment';
|
import { environment } from '../../../../../environments/environment';
|
||||||
|
import { StringUtil } from '@ucap-webmessenger/core';
|
||||||
|
|
||||||
export interface CreateChatDialogData {
|
export interface CreateChatDialogData {
|
||||||
type?: string;
|
type?: string;
|
||||||
|
@ -283,7 +284,7 @@ export class CreateChatDialogComponent implements OnInit, OnDestroy {
|
||||||
.subscribe();
|
.subscribe();
|
||||||
|
|
||||||
this.inputForm = this.formBuilder.group({
|
this.inputForm = this.formBuilder.group({
|
||||||
groupName: ['', [Validators.required, this.checkSpecialCharacter()]]
|
groupName: ['', [Validators.required, StringUtil.checkSpecialCharacter()]]
|
||||||
});
|
});
|
||||||
|
|
||||||
if (this.data.type === UserSelectDialogType.EditChatMember) {
|
if (this.data.type === UserSelectDialogType.EditChatMember) {
|
||||||
|
@ -293,15 +294,6 @@ export class CreateChatDialogComponent implements OnInit, OnDestroy {
|
||||||
this.currentTabIndex = 0;
|
this.currentTabIndex = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
checkSpecialCharacter(): ValidatorFn {
|
|
||||||
return (control: AbstractControl): { [key: string]: any } | null => {
|
|
||||||
const forbidden = /[\{\}\[\]\/?.;:|\)*~`!^+<>@\#$%&\\\=\(\'\"]/g.test(
|
|
||||||
control.value
|
|
||||||
);
|
|
||||||
return forbidden ? { groupName: { value: control.value } } : null;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnDestroy(): void {
|
ngOnDestroy(): void {
|
||||||
if (!!this.roomSubscription) {
|
if (!!this.roomSubscription) {
|
||||||
this.roomSubscription.unsubscribe();
|
this.roomSubscription.unsubscribe();
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
<button
|
<button
|
||||||
mat-flat-button
|
mat-flat-button
|
||||||
(click)="onClickChoice(true)"
|
(click)="onClickChoice(true)"
|
||||||
[disabled]="this.inputForm.invalid"
|
[disabled]="inputForm.invalid"
|
||||||
class="mat-primary"
|
class="mat-primary"
|
||||||
>
|
>
|
||||||
{{ 'common.messages.yes' | translate }}
|
{{ 'common.messages.yes' | translate }}
|
||||||
|
|
|
@ -8,6 +8,7 @@ import {
|
||||||
} from '@angular/forms';
|
} from '@angular/forms';
|
||||||
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
||||||
import { GroupDetailData } from '@ucap-webmessenger/protocol-sync';
|
import { GroupDetailData } from '@ucap-webmessenger/protocol-sync';
|
||||||
|
import { StringUtil } from '@ucap-webmessenger/core';
|
||||||
|
|
||||||
export interface EditGroupDialogData {
|
export interface EditGroupDialogData {
|
||||||
title: string;
|
title: string;
|
||||||
|
@ -39,20 +40,11 @@ export class EditGroupDialogComponent implements OnInit {
|
||||||
this.inputForm = this.formBuilder.group({
|
this.inputForm = this.formBuilder.group({
|
||||||
groupName: [
|
groupName: [
|
||||||
this.data.group.name,
|
this.data.group.name,
|
||||||
[Validators.required, this.checkSpecialCharacter()]
|
[Validators.required, StringUtil.checkSpecialCharacter()]
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
checkSpecialCharacter(): ValidatorFn {
|
|
||||||
return (control: AbstractControl): { [key: string]: any } | null => {
|
|
||||||
const forbidden = /[\{\}\[\]\/?.;:|\)*~`!^+<>@\#$%&\\\=\(\'\"]/g.test(
|
|
||||||
control.value
|
|
||||||
);
|
|
||||||
return forbidden ? { groupName: { value: control.value } } : null;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
onClickChoice(choice: boolean): void {
|
onClickChoice(choice: boolean): void {
|
||||||
this.dialogRef.close({
|
this.dialogRef.close({
|
||||||
choice,
|
choice,
|
||||||
|
|
|
@ -17,35 +17,38 @@
|
||||||
<span class="mat-fab__label">{{ 'group.addNew' | translate }}</span>
|
<span class="mat-fab__label">{{ 'group.addNew' | translate }}</span>
|
||||||
</button>
|
</button>
|
||||||
<div *ngIf="isShowAddGroupField" class="input-groupname-box">
|
<div *ngIf="isShowAddGroupField" class="input-groupname-box">
|
||||||
<mat-form-field
|
<form name="inputForm" [formGroup]="inputForm" novalidate>
|
||||||
hintLabel="{{
|
<mat-form-field
|
||||||
'common.useOnlyForSpecialCharacter'
|
hintLabel="{{
|
||||||
| translate: { specialCharacter: '-,_' }
|
'common.useOnlyForSpecialCharacter'
|
||||||
}}"
|
| translate: { specialCharacter: '-,_' }
|
||||||
>
|
}}"
|
||||||
<input
|
|
||||||
matInput
|
|
||||||
#inputGroupName
|
|
||||||
type="text"
|
|
||||||
maxlength="20"
|
|
||||||
placeholder="{{ 'group.name' | translate }}"
|
|
||||||
value=""
|
|
||||||
/>
|
|
||||||
|
|
||||||
<button
|
|
||||||
mat-button
|
|
||||||
matSuffix
|
|
||||||
mat-icon-button
|
|
||||||
aria-label="Clear"
|
|
||||||
(click)="inputGroupName.value = ''"
|
|
||||||
>
|
>
|
||||||
<mat-icon>close</mat-icon>
|
<input
|
||||||
</button>
|
matInput
|
||||||
|
#inputGroupName
|
||||||
|
type="text"
|
||||||
|
maxlength="20"
|
||||||
|
placeholder="{{ 'group.name' | translate }}"
|
||||||
|
value=""
|
||||||
|
formControlName="groupName"
|
||||||
|
/>
|
||||||
|
|
||||||
<mat-hint align="end"
|
<button
|
||||||
>{{ inputGroupName.value?.length || 0 }}/20</mat-hint
|
mat-button
|
||||||
>
|
matSuffix
|
||||||
</mat-form-field>
|
mat-icon-button
|
||||||
|
aria-label="Clear"
|
||||||
|
(click)="inputGroupName.value = ''"
|
||||||
|
>
|
||||||
|
<mat-icon>close</mat-icon>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<mat-hint align="end"
|
||||||
|
>{{ inputGroupName.value?.length || 0 }}/20</mat-hint
|
||||||
|
>
|
||||||
|
</mat-form-field>
|
||||||
|
</form>
|
||||||
|
|
||||||
<div class="btn-box">
|
<div class="btn-box">
|
||||||
<button mat-stroked-button (click)="onClickAddGroupCancel()">
|
<button mat-stroked-button (click)="onClickAddGroupCancel()">
|
||||||
|
@ -56,6 +59,7 @@
|
||||||
color="accent"
|
color="accent"
|
||||||
(click)="onClickAddGroup(inputGroupName.value)"
|
(click)="onClickAddGroup(inputGroupName.value)"
|
||||||
class="mat-accent"
|
class="mat-accent"
|
||||||
|
[disabled]="inputForm.invalid"
|
||||||
>
|
>
|
||||||
{{ 'group.addNew' | translate }}
|
{{ 'group.addNew' | translate }}
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -21,6 +21,8 @@ import {
|
||||||
import { GroupDetailData, UserInfo } from '@ucap-webmessenger/protocol-sync';
|
import { GroupDetailData, UserInfo } from '@ucap-webmessenger/protocol-sync';
|
||||||
import { environment } from '../../../../../environments/environment';
|
import { environment } from '../../../../../environments/environment';
|
||||||
import { TranslateService } from '@ngx-translate/core';
|
import { TranslateService } from '@ngx-translate/core';
|
||||||
|
import { FormGroup, FormBuilder, Validators } from '@angular/forms';
|
||||||
|
import { StringUtil } from '@ucap-webmessenger/core';
|
||||||
|
|
||||||
export interface SelectGroupDialogData {
|
export interface SelectGroupDialogData {
|
||||||
title: string;
|
title: string;
|
||||||
|
@ -38,6 +40,9 @@ export interface SelectGroupDialogResult {
|
||||||
styleUrls: ['./select-group.dialog.component.scss']
|
styleUrls: ['./select-group.dialog.component.scss']
|
||||||
})
|
})
|
||||||
export class SelectGroupDialogComponent implements OnInit {
|
export class SelectGroupDialogComponent implements OnInit {
|
||||||
|
groupName: string;
|
||||||
|
inputForm: FormGroup;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
public dialogRef: MatDialogRef<
|
public dialogRef: MatDialogRef<
|
||||||
SelectGroupDialogData,
|
SelectGroupDialogData,
|
||||||
|
@ -46,7 +51,8 @@ export class SelectGroupDialogComponent implements OnInit {
|
||||||
@Inject(MAT_DIALOG_DATA) public data: SelectGroupDialogData,
|
@Inject(MAT_DIALOG_DATA) public data: SelectGroupDialogData,
|
||||||
private store: Store<any>,
|
private store: Store<any>,
|
||||||
private dialogService: DialogService,
|
private dialogService: DialogService,
|
||||||
private translateService: TranslateService
|
private translateService: TranslateService,
|
||||||
|
private formBuilder: FormBuilder
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
@ViewChild('groups', { static: true }) groups: MatSelectionList;
|
@ViewChild('groups', { static: true }) groups: MatSelectionList;
|
||||||
|
@ -57,6 +63,10 @@ export class SelectGroupDialogComponent implements OnInit {
|
||||||
isShowAddGroupField = false;
|
isShowAddGroupField = false;
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
this.inputForm = this.formBuilder.group({
|
||||||
|
groupName: ['', [Validators.required, StringUtil.checkSpecialCharacter()]]
|
||||||
|
});
|
||||||
|
|
||||||
this.groups.selectionChange.subscribe((s: MatSelectionListChange) => {
|
this.groups.selectionChange.subscribe((s: MatSelectionListChange) => {
|
||||||
this.groups.deselectAll();
|
this.groups.deselectAll();
|
||||||
s.option.selected = true;
|
s.option.selected = true;
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import { ValidatorFn, AbstractControl } from '@angular/forms';
|
||||||
|
|
||||||
export enum CharactorType {
|
export enum CharactorType {
|
||||||
Number = 'Number',
|
Number = 'Number',
|
||||||
Charactor = 'Charactor',
|
Charactor = 'Charactor',
|
||||||
|
@ -128,7 +130,7 @@ export class StringUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* isIncrements
|
* isDecrements
|
||||||
*/
|
*/
|
||||||
public static isDecrements(target: string, repeatTime: number) {
|
public static isDecrements(target: string, repeatTime: number) {
|
||||||
for (let i = 0; i < target.length - (repeatTime - 1); i++) {
|
for (let i = 0; i < target.length - (repeatTime - 1); i++) {
|
||||||
|
@ -181,4 +183,13 @@ export class StringUtil {
|
||||||
public static isAlphaNumeric(char: number): boolean {
|
public static isAlphaNumeric(char: number): boolean {
|
||||||
return StringUtil.isAlphabet(char) || StringUtil.isNumeric(char);
|
return StringUtil.isAlphabet(char) || StringUtil.isNumeric(char);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static checkSpecialCharacter(): ValidatorFn {
|
||||||
|
return (control: AbstractControl): { [key: string]: any } | null => {
|
||||||
|
const forbidden = /[\{\}\[\]\/?.;:|\)*~`!^+<>@\#$%&\\\=\(\'\"]/g.test(
|
||||||
|
control.value
|
||||||
|
);
|
||||||
|
return forbidden ? { groupName: { value: control.value } } : null;
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user