Merge branch 'master' of https://git.loafle.net/ucap-web/next-ucap-messenger
This commit is contained in:
commit
f7cc055b96
|
@ -91,6 +91,7 @@
|
|||
<ucap-room-list-item
|
||||
*ngFor="let room of searchRoomList"
|
||||
[loginRes]="loginRes"
|
||||
[isSelected]="(selectedRoomInfo$ | async)?.roomSeq === room.roomSeq"
|
||||
[roomInfo]="room"
|
||||
[roomUserInfo]="getRoomUserList(room)"
|
||||
[sessionVerinfo]="sessionVerinfo"
|
||||
|
|
|
@ -209,7 +209,8 @@ export class OrganizationComponent
|
|||
.pipe(
|
||||
take(1),
|
||||
select(AppStore.AccountSelector.AuthenticationSelector.loginRes),
|
||||
map(loginRes => {
|
||||
tap(loginRes => {
|
||||
if (!!loginRes) {
|
||||
this.store.dispatch(
|
||||
QueryStore.myDeptUser({
|
||||
divCd: 'ORG',
|
||||
|
@ -221,15 +222,14 @@ export class OrganizationComponent
|
|||
senderEmployeeType: loginRes.userInfo.employeeType
|
||||
})
|
||||
);
|
||||
return loginRes;
|
||||
}),
|
||||
map(loginRes => {
|
||||
this.loginRes = loginRes;
|
||||
|
||||
this.selectedDepartmentName = {
|
||||
name: loginRes.userInfo.deptName,
|
||||
nameEn: loginRes.userInfo.deptNameEn,
|
||||
nameCn: loginRes.userInfo.deptNameCn
|
||||
};
|
||||
}
|
||||
this.loginRes = loginRes;
|
||||
})
|
||||
)
|
||||
.subscribe();
|
||||
|
|
|
@ -64,6 +64,7 @@ import {
|
|||
} from '@ucap-webmessenger/ui';
|
||||
import { TranslateService, TranslateParser } from '@ngx-translate/core';
|
||||
import { environment } from '../../../../../environments/environment';
|
||||
import { StringUtil } from '@ucap-webmessenger/core';
|
||||
|
||||
export interface CreateChatDialogData {
|
||||
type?: string;
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
<button
|
||||
mat-flat-button
|
||||
(click)="onClickChoice(true)"
|
||||
[disabled]="this.inputForm.invalid"
|
||||
[disabled]="inputForm.invalid"
|
||||
class="mat-primary"
|
||||
>
|
||||
{{ 'common.messages.yes' | translate }}
|
||||
|
|
|
@ -8,6 +8,7 @@ import {
|
|||
} from '@angular/forms';
|
||||
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
||||
import { GroupDetailData } from '@ucap-webmessenger/protocol-sync';
|
||||
import { StringUtil } from '@ucap-webmessenger/core';
|
||||
|
||||
export interface EditGroupDialogData {
|
||||
title: string;
|
||||
|
@ -39,20 +40,11 @@ export class EditGroupDialogComponent implements OnInit {
|
|||
this.inputForm = this.formBuilder.group({
|
||||
groupName: [
|
||||
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 {
|
||||
this.dialogRef.close({
|
||||
choice,
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
<span class="mat-fab__label">{{ 'group.addNew' | translate }}</span>
|
||||
</button>
|
||||
<div *ngIf="isShowAddGroupField" class="input-groupname-box">
|
||||
<form name="inputForm" [formGroup]="inputForm" novalidate>
|
||||
<mat-form-field
|
||||
hintLabel="{{
|
||||
'common.useOnlyForSpecialCharacter'
|
||||
|
@ -30,6 +31,7 @@
|
|||
maxlength="20"
|
||||
placeholder="{{ 'group.name' | translate }}"
|
||||
value=""
|
||||
formControlName="groupName"
|
||||
/>
|
||||
|
||||
<button
|
||||
|
@ -46,6 +48,7 @@
|
|||
>{{ inputGroupName.value?.length || 0 }}/20</mat-hint
|
||||
>
|
||||
</mat-form-field>
|
||||
</form>
|
||||
|
||||
<div class="btn-box">
|
||||
<button mat-stroked-button (click)="onClickAddGroupCancel()">
|
||||
|
@ -56,6 +59,7 @@
|
|||
color="accent"
|
||||
(click)="onClickAddGroup(inputGroupName.value)"
|
||||
class="mat-accent"
|
||||
[disabled]="inputForm.invalid"
|
||||
>
|
||||
{{ 'group.addNew' | translate }}
|
||||
</button>
|
||||
|
|
|
@ -21,6 +21,8 @@ import {
|
|||
import { GroupDetailData, UserInfo } from '@ucap-webmessenger/protocol-sync';
|
||||
import { environment } from '../../../../../environments/environment';
|
||||
import { TranslateService } from '@ngx-translate/core';
|
||||
import { FormGroup, FormBuilder, Validators } from '@angular/forms';
|
||||
import { StringUtil } from '@ucap-webmessenger/core';
|
||||
|
||||
export interface SelectGroupDialogData {
|
||||
title: string;
|
||||
|
@ -38,6 +40,9 @@ export interface SelectGroupDialogResult {
|
|||
styleUrls: ['./select-group.dialog.component.scss']
|
||||
})
|
||||
export class SelectGroupDialogComponent implements OnInit {
|
||||
groupName: string;
|
||||
inputForm: FormGroup;
|
||||
|
||||
constructor(
|
||||
public dialogRef: MatDialogRef<
|
||||
SelectGroupDialogData,
|
||||
|
@ -46,7 +51,8 @@ export class SelectGroupDialogComponent implements OnInit {
|
|||
@Inject(MAT_DIALOG_DATA) public data: SelectGroupDialogData,
|
||||
private store: Store<any>,
|
||||
private dialogService: DialogService,
|
||||
private translateService: TranslateService
|
||||
private translateService: TranslateService,
|
||||
private formBuilder: FormBuilder
|
||||
) {}
|
||||
|
||||
@ViewChild('groups', { static: true }) groups: MatSelectionList;
|
||||
|
@ -57,6 +63,10 @@ export class SelectGroupDialogComponent implements OnInit {
|
|||
isShowAddGroupField = false;
|
||||
|
||||
ngOnInit(): void {
|
||||
this.inputForm = this.formBuilder.group({
|
||||
groupName: ['', [Validators.required, StringUtil.checkSpecialCharacter()]]
|
||||
});
|
||||
|
||||
this.groups.selectionChange.subscribe((s: MatSelectionListChange) => {
|
||||
this.groups.deselectAll();
|
||||
s.option.selected = true;
|
||||
|
|
|
@ -257,7 +257,12 @@
|
|||
<button mat-stroked-button (click)="onClickConfirm()" class="mat-primary">
|
||||
{{ 'common.messages.confirm' | translate }}
|
||||
</button>
|
||||
<button mat-flat-button (click)="onClickReply()" class="mat-primary">
|
||||
<button
|
||||
mat-flat-button
|
||||
*ngIf="messageDetail.msgInfo.type === MessageType.Receive"
|
||||
(click)="onClickReply()"
|
||||
class="mat-primary"
|
||||
>
|
||||
{{ 'message.sendReply' | translate }}
|
||||
</button>
|
||||
</mat-card-actions>
|
||||
|
|
|
@ -21,6 +21,8 @@ export const clearSelectedRoom = createAction(
|
|||
'[Messenger::Chat] clearSelectedRoom'
|
||||
);
|
||||
|
||||
export const clearEvent = createAction('[Messenger::Room] Clear Event');
|
||||
|
||||
export const newEventMessage = createAction(
|
||||
'[Messenger::Chat] newEventMessage',
|
||||
props<{
|
||||
|
|
|
@ -144,7 +144,7 @@ export const reducer = createReducer(
|
|||
};
|
||||
}),
|
||||
|
||||
on(ChatStore.selectedRoom, (state, action) => {
|
||||
on(ChatStore.clearEvent, (state, action) => {
|
||||
return {
|
||||
...initialState
|
||||
};
|
||||
|
|
|
@ -76,20 +76,35 @@ import { LoginInfo, KEY_LOGIN_INFO } from '@app/types';
|
|||
|
||||
@Injectable()
|
||||
export class Effects {
|
||||
selectedRoomForInfo$ = createEffect(() =>
|
||||
this.actions$.pipe(
|
||||
selectedRoomForInfo$ = createEffect(
|
||||
() => {
|
||||
return this.actions$.pipe(
|
||||
ofType(ChatStore.selectedRoom),
|
||||
map(action => {
|
||||
withLatestFrom(
|
||||
this.store.pipe(
|
||||
select((state: any) => state.messenger.room.roomInfo as RoomInfo)
|
||||
)
|
||||
),
|
||||
map(([action, roomInfo]) => {
|
||||
if (!!roomInfo && roomInfo.roomSeq === action.roomSeq) {
|
||||
} else {
|
||||
this.store.dispatch(ChatStore.clearEvent());
|
||||
|
||||
const loginInfo = this.sessionStorageService.get<LoginInfo>(
|
||||
KEY_LOGIN_INFO
|
||||
);
|
||||
return info({
|
||||
this.store.dispatch(
|
||||
info({
|
||||
roomSeq: action.roomSeq,
|
||||
isDetail: true,
|
||||
localeCode: loginInfo.localeCode
|
||||
});
|
||||
})
|
||||
)
|
||||
);
|
||||
}
|
||||
})
|
||||
);
|
||||
},
|
||||
{ dispatch: false }
|
||||
);
|
||||
|
||||
info$ = createEffect(
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
import { ValidatorFn, AbstractControl } from '@angular/forms';
|
||||
|
||||
export enum CharactorType {
|
||||
Number = 'Number',
|
||||
Charactor = 'Charactor',
|
||||
|
@ -128,7 +130,7 @@ export class StringUtil {
|
|||
}
|
||||
|
||||
/**
|
||||
* isIncrements
|
||||
* isDecrements
|
||||
*/
|
||||
public static isDecrements(target: string, repeatTime: number) {
|
||||
for (let i = 0; i < target.length - (repeatTime - 1); i++) {
|
||||
|
@ -181,4 +183,13 @@ export class StringUtil {
|
|||
public static isAlphaNumeric(char: number): boolean {
|
||||
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