This commit is contained in:
richard-loafle 2020-02-06 17:51:34 +09:00
commit f7cc055b96
12 changed files with 117 additions and 76 deletions

View File

@ -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"

View File

@ -209,7 +209,8 @@ export class OrganizationComponent
.pipe( .pipe(
take(1), take(1),
select(AppStore.AccountSelector.AuthenticationSelector.loginRes), select(AppStore.AccountSelector.AuthenticationSelector.loginRes),
map(loginRes => { tap(loginRes => {
if (!!loginRes) {
this.store.dispatch( this.store.dispatch(
QueryStore.myDeptUser({ QueryStore.myDeptUser({
divCd: 'ORG', divCd: 'ORG',
@ -221,15 +222,14 @@ export class OrganizationComponent
senderEmployeeType: loginRes.userInfo.employeeType senderEmployeeType: loginRes.userInfo.employeeType
}) })
); );
return loginRes;
}),
map(loginRes => {
this.loginRes = loginRes;
this.selectedDepartmentName = { this.selectedDepartmentName = {
name: loginRes.userInfo.deptName, name: loginRes.userInfo.deptName,
nameEn: loginRes.userInfo.deptNameEn, nameEn: loginRes.userInfo.deptNameEn,
nameCn: loginRes.userInfo.deptNameCn nameCn: loginRes.userInfo.deptNameCn
}; };
}
this.loginRes = loginRes;
}) })
) )
.subscribe(); .subscribe();

View File

@ -64,6 +64,7 @@ import {
} from '@ucap-webmessenger/ui'; } from '@ucap-webmessenger/ui';
import { TranslateService, TranslateParser } from '@ngx-translate/core'; import { TranslateService, TranslateParser } 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;

View File

@ -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 }}

View File

@ -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,

View File

@ -17,6 +17,7 @@
<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">
<form name="inputForm" [formGroup]="inputForm" novalidate>
<mat-form-field <mat-form-field
hintLabel="{{ hintLabel="{{
'common.useOnlyForSpecialCharacter' 'common.useOnlyForSpecialCharacter'
@ -30,6 +31,7 @@
maxlength="20" maxlength="20"
placeholder="{{ 'group.name' | translate }}" placeholder="{{ 'group.name' | translate }}"
value="" value=""
formControlName="groupName"
/> />
<button <button
@ -46,6 +48,7 @@
>{{ inputGroupName.value?.length || 0 }}/20</mat-hint >{{ inputGroupName.value?.length || 0 }}/20</mat-hint
> >
</mat-form-field> </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>

View File

@ -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;

View File

@ -257,7 +257,12 @@
<button mat-stroked-button (click)="onClickConfirm()" class="mat-primary"> <button mat-stroked-button (click)="onClickConfirm()" class="mat-primary">
{{ 'common.messages.confirm' | translate }} {{ 'common.messages.confirm' | translate }}
</button> </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 }} {{ 'message.sendReply' | translate }}
</button> </button>
</mat-card-actions> </mat-card-actions>

View File

@ -21,6 +21,8 @@ export const clearSelectedRoom = createAction(
'[Messenger::Chat] clearSelectedRoom' '[Messenger::Chat] clearSelectedRoom'
); );
export const clearEvent = createAction('[Messenger::Room] Clear Event');
export const newEventMessage = createAction( export const newEventMessage = createAction(
'[Messenger::Chat] newEventMessage', '[Messenger::Chat] newEventMessage',
props<{ props<{

View File

@ -144,7 +144,7 @@ export const reducer = createReducer(
}; };
}), }),
on(ChatStore.selectedRoom, (state, action) => { on(ChatStore.clearEvent, (state, action) => {
return { return {
...initialState ...initialState
}; };

View File

@ -76,20 +76,35 @@ import { LoginInfo, KEY_LOGIN_INFO } from '@app/types';
@Injectable() @Injectable()
export class Effects { export class Effects {
selectedRoomForInfo$ = createEffect(() => selectedRoomForInfo$ = createEffect(
this.actions$.pipe( () => {
return this.actions$.pipe(
ofType(ChatStore.selectedRoom), 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>( const loginInfo = this.sessionStorageService.get<LoginInfo>(
KEY_LOGIN_INFO KEY_LOGIN_INFO
); );
return info({ this.store.dispatch(
info({
roomSeq: action.roomSeq, roomSeq: action.roomSeq,
isDetail: true, isDetail: true,
localeCode: loginInfo.localeCode localeCode: loginInfo.localeCode
});
}) })
) );
}
})
);
},
{ dispatch: false }
); );
info$ = createEffect( info$ = createEffect(

View File

@ -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;
};
}
} }