Merge branch 'master' of https://git.loafle.net/ucap-web/next-ucap-messenger
This commit is contained in:
commit
497f04efca
@ -9,6 +9,7 @@ import {
|
|||||||
|
|
||||||
export interface UrlInfoRequest extends APIRequest {
|
export interface UrlInfoRequest extends APIRequest {
|
||||||
deviceType: DeviceType;
|
deviceType: DeviceType;
|
||||||
|
loginId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface UrlInfoResponse extends APIResponse {
|
export interface UrlInfoResponse extends APIResponse {
|
||||||
@ -26,8 +27,19 @@ export interface UrlInfoResponse extends APIResponse {
|
|||||||
synapViewUrl?: string;
|
synapViewUrl?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface DaesangUrlInfoResponse extends UrlInfoResponse {
|
||||||
|
webLink: WebLink[];
|
||||||
|
webLinkAllowedList: string[];
|
||||||
|
}
|
||||||
|
export interface WebLink {
|
||||||
|
key: string;
|
||||||
|
title: string;
|
||||||
|
url: string;
|
||||||
|
}
|
||||||
|
|
||||||
const urlInfoEncodeMap = {
|
const urlInfoEncodeMap = {
|
||||||
deviceType: 'p_device_type'
|
deviceType: 'p_device_type',
|
||||||
|
loginId: 'p_user_id'
|
||||||
};
|
};
|
||||||
|
|
||||||
export const encodeUrlInfo: APIEncoder<UrlInfoRequest> = (
|
export const encodeUrlInfo: APIEncoder<UrlInfoRequest> = (
|
||||||
@ -54,3 +66,149 @@ export const decodeUrlInfo: APIDecoder<UrlInfoResponse> = (res: any) => {
|
|||||||
synapViewUrl: res.SynapViewURL
|
synapViewUrl: res.SynapViewURL
|
||||||
} as UrlInfoResponse;
|
} as UrlInfoResponse;
|
||||||
};
|
};
|
||||||
|
export const decodeUrlInfoDaesang: APIDecoder<DaesangUrlInfoResponse> = (
|
||||||
|
res: any
|
||||||
|
) => {
|
||||||
|
const webLink: WebLink[] = [];
|
||||||
|
|
||||||
|
if (!!res.WebLinkWebhard) {
|
||||||
|
const arr = res.WebLinkWebhard.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkWebhard',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkDsp) {
|
||||||
|
const arr = res.WebLinkDsp.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkDsp',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkSms) {
|
||||||
|
const arr = res.WebLinkSms.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkSms',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkConf) {
|
||||||
|
const arr = res.WebLinkConf.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkConf',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkEp) {
|
||||||
|
const arr = res.WebLinkEp.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkEp',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkSop) {
|
||||||
|
const arr = res.WebLinkSop.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkSop',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkSom) {
|
||||||
|
const arr = res.WebLinkSom.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkSom',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkElephant) {
|
||||||
|
const arr = res.WebLinkElephant.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkElephant',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkItsvcdesk) {
|
||||||
|
const arr = res.WebLinkItsvcdesk.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkItsvcdesk',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkUrgntNews) {
|
||||||
|
const arr = res.WebLinkUrgntNews.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkUrgntNews',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkMailCnt) {
|
||||||
|
const arr = res.WebLinkMailCnt.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkMailCnt',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkMail) {
|
||||||
|
const arr = res.WebLinkMail.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkMail',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkPaymentCnt) {
|
||||||
|
const arr = res.WebLinkPaymentCnt.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkPaymentCnt',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkPayment) {
|
||||||
|
const arr = res.WebLinkPayment.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkPayment',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!!res.WebLinkChgPassword) {
|
||||||
|
const arr = res.WebLinkChgPassword.split(',');
|
||||||
|
webLink.push({
|
||||||
|
key: 'WebLinkChgPassword',
|
||||||
|
title: arr.length > 1 ? arr[0] : '',
|
||||||
|
url: arr.length > 1 ? arr[1] : arr[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
statusCode: res.StatusCode,
|
||||||
|
errorMessage: res.ErrorMessage,
|
||||||
|
portCheckUrl: res.PortCheckURL,
|
||||||
|
messageUrl: res.MsgURL,
|
||||||
|
messageUrl2: res.MsgURL2,
|
||||||
|
passwordUrl: res.PasswordURL,
|
||||||
|
planUrl: res.PlanURL,
|
||||||
|
planUrl2: res.PlanURL2,
|
||||||
|
vocUrl: res.VocURL,
|
||||||
|
confUrl: res.ConfURL,
|
||||||
|
uprApiUrl: res.UprApiURL,
|
||||||
|
uprSvcUrl: res.UprSvcURL,
|
||||||
|
uprDownloadUrl: res.UprDownloadURL,
|
||||||
|
synapViewUrl: res.SynapViewURL,
|
||||||
|
|
||||||
|
webLink,
|
||||||
|
webLinkAllowedList: res.WebLinkAllowedList.split(',')
|
||||||
|
} as DaesangUrlInfoResponse;
|
||||||
|
};
|
||||||
|
@ -8,25 +8,27 @@ import {
|
|||||||
CheckUserInfoExRequest,
|
CheckUserInfoExRequest,
|
||||||
CheckUserInfoExResponse,
|
CheckUserInfoExResponse,
|
||||||
encodeCheckUserInfoEx,
|
encodeCheckUserInfoEx,
|
||||||
decodeCheckUserInfoEx,
|
decodeCheckUserInfoEx
|
||||||
} from '../apis/check-user-info-ex';
|
} from '../apis/check-user-info-ex';
|
||||||
import {
|
import {
|
||||||
CompanyListRequest,
|
CompanyListRequest,
|
||||||
CompanyListResponse,
|
CompanyListResponse,
|
||||||
encodeCompanyList,
|
encodeCompanyList,
|
||||||
decodeCompanyList,
|
decodeCompanyList
|
||||||
} from '../apis/company-list';
|
} from '../apis/company-list';
|
||||||
import {
|
import {
|
||||||
TokenUpdateRequest,
|
TokenUpdateRequest,
|
||||||
TokenUpdateResponse,
|
TokenUpdateResponse,
|
||||||
encodeTokenUpdate,
|
encodeTokenUpdate,
|
||||||
decodeTokenUpdate,
|
decodeTokenUpdate
|
||||||
} from '../apis/token-update';
|
} from '../apis/token-update';
|
||||||
import {
|
import {
|
||||||
UrlInfoResponse,
|
UrlInfoResponse,
|
||||||
UrlInfoRequest,
|
UrlInfoRequest,
|
||||||
encodeUrlInfo,
|
encodeUrlInfo,
|
||||||
decodeUrlInfo,
|
decodeUrlInfo,
|
||||||
|
DaesangUrlInfoResponse,
|
||||||
|
decodeUrlInfoDaesang
|
||||||
} from '../apis/url-info';
|
} from '../apis/url-info';
|
||||||
|
|
||||||
import { _MODULE_CONFIG } from '../config/token';
|
import { _MODULE_CONFIG } from '../config/token';
|
||||||
@ -35,7 +37,7 @@ import { Urls } from '../config/urls';
|
|||||||
import { UrlConfig } from '@ucap-webmessenger/core';
|
import { UrlConfig } from '@ucap-webmessenger/core';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
export class ExternalApiService {
|
export class ExternalApiService {
|
||||||
readonly urls: Urls;
|
readonly urls: Urls;
|
||||||
@ -58,7 +60,7 @@ export class ExternalApiService {
|
|||||||
this.urls.checkUserInfoEx,
|
this.urls.checkUserInfoEx,
|
||||||
{},
|
{},
|
||||||
{
|
{
|
||||||
params: encodeCheckUserInfoEx(req),
|
params: encodeCheckUserInfoEx(req)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.pipe(map(res => decodeCheckUserInfoEx(res)));
|
.pipe(map(res => decodeCheckUserInfoEx(res)));
|
||||||
@ -70,7 +72,7 @@ export class ExternalApiService {
|
|||||||
this.urls.companyList,
|
this.urls.companyList,
|
||||||
{},
|
{},
|
||||||
{
|
{
|
||||||
params: encodeCompanyList(req),
|
params: encodeCompanyList(req)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.pipe(map(res => decodeCompanyList(res)));
|
.pipe(map(res => decodeCompanyList(res)));
|
||||||
@ -82,7 +84,7 @@ export class ExternalApiService {
|
|||||||
this.urls.tokenUpdate,
|
this.urls.tokenUpdate,
|
||||||
{},
|
{},
|
||||||
{
|
{
|
||||||
params: encodeTokenUpdate(req),
|
params: encodeTokenUpdate(req)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.pipe(map(res => decodeTokenUpdate(res)));
|
.pipe(map(res => decodeTokenUpdate(res)));
|
||||||
@ -94,9 +96,22 @@ export class ExternalApiService {
|
|||||||
this.urls.urlInfo,
|
this.urls.urlInfo,
|
||||||
{},
|
{},
|
||||||
{
|
{
|
||||||
params: encodeUrlInfo(req),
|
params: encodeUrlInfo(req)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.pipe(map(res => decodeUrlInfo(res)));
|
.pipe(map(res => decodeUrlInfo(res)));
|
||||||
}
|
}
|
||||||
|
public urlInfoDaesang(
|
||||||
|
req: UrlInfoRequest
|
||||||
|
): Observable<DaesangUrlInfoResponse> {
|
||||||
|
return this.httpClient
|
||||||
|
.post<any>(
|
||||||
|
this.urls.urlInfo,
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
params: encodeUrlInfo(req)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.pipe(map(res => decodeUrlInfoDaesang(res)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -32,9 +32,7 @@ import {
|
|||||||
import { MatTabChangeEvent } from '@angular/material';
|
import { MatTabChangeEvent } from '@angular/material';
|
||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import { MessageApiService, MessageType } from '@ucap-webmessenger/api-message';
|
import { MessageApiService, MessageType } from '@ucap-webmessenger/api-message';
|
||||||
import { DeviceType } from '@ucap-webmessenger/core';
|
import { DeviceType } from '@ucap-webmessenger/core';
|
||||||
import { UnreadCountRequest } from 'projects/ucap-webmessenger-api-message/src/lib/apis/unread-count';
|
import { UnreadCountRequest } from 'projects/ucap-webmessenger-api-message/src/lib/apis/unread-count';
|
||||||
@ -45,7 +43,12 @@ import {
|
|||||||
MessageWriteDialogResult,
|
MessageWriteDialogResult,
|
||||||
MessageWriteDialogData
|
MessageWriteDialogData
|
||||||
} from '../dialogs/message/message-write.dialog.component';
|
} from '../dialogs/message/message-write.dialog.component';
|
||||||
import { EnvironmentsInfo, KEY_ENVIRONMENTS_INFO } from '@app/types';
|
import {
|
||||||
|
EnvironmentsInfo,
|
||||||
|
KEY_ENVIRONMENTS_INFO,
|
||||||
|
KEY_VER_INFO,
|
||||||
|
KEY_LOGIN_RES_INFO
|
||||||
|
} from '@app/types';
|
||||||
import { MessageBoxComponent } from './left-sidenav/message.component';
|
import { MessageBoxComponent } from './left-sidenav/message.component';
|
||||||
|
|
||||||
export enum MainMenu {
|
export enum MainMenu {
|
||||||
|
@ -25,7 +25,7 @@ import {
|
|||||||
} from '@ucap-webmessenger/protocol-sync';
|
} from '@ucap-webmessenger/protocol-sync';
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
import { KEY_VER_INFO } from '@app/types';
|
||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
import { MatMenuTrigger } from '@angular/material';
|
import { MatMenuTrigger } from '@angular/material';
|
||||||
import { FormGroup, FormBuilder } from '@angular/forms';
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
||||||
|
@ -26,9 +26,9 @@ import {
|
|||||||
KEY_LOGIN_INFO,
|
KEY_LOGIN_INFO,
|
||||||
UserSelectDialogType,
|
UserSelectDialogType,
|
||||||
EnvironmentsInfo,
|
EnvironmentsInfo,
|
||||||
KEY_ENVIRONMENTS_INFO
|
KEY_ENVIRONMENTS_INFO,
|
||||||
|
KEY_VER_INFO
|
||||||
} from '@app/types';
|
} from '@app/types';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import { ExpansionPanelComponent as GroupExpansionPanelComponent } from '@ucap-webmessenger/ui-group';
|
import { ExpansionPanelComponent as GroupExpansionPanelComponent } from '@ucap-webmessenger/ui-group';
|
||||||
|
|
||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
|
@ -18,7 +18,6 @@ import * as AppStore from '@app/store';
|
|||||||
import { UserInfo } from '@ucap-webmessenger/protocol-room';
|
import { UserInfo } from '@ucap-webmessenger/protocol-room';
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import { DialogService } from '@ucap-webmessenger/ui';
|
import { DialogService } from '@ucap-webmessenger/ui';
|
||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
||||||
@ -48,7 +47,11 @@ import {
|
|||||||
MessageDetailDialogResult,
|
MessageDetailDialogResult,
|
||||||
MessageDetailDialogData
|
MessageDetailDialogData
|
||||||
} from '../../dialogs/message/message-detail.dialog.component';
|
} from '../../dialogs/message/message-detail.dialog.component';
|
||||||
import { EnvironmentsInfo, KEY_ENVIRONMENTS_INFO } from '@app/types';
|
import {
|
||||||
|
EnvironmentsInfo,
|
||||||
|
KEY_ENVIRONMENTS_INFO,
|
||||||
|
KEY_VER_INFO
|
||||||
|
} from '@app/types';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-layout-chat-left-sidenav-message',
|
selector: 'app-layout-chat-left-sidenav-message',
|
||||||
|
@ -67,6 +67,7 @@
|
|||||||
(checkUser)="onCheckUser($event)"
|
(checkUser)="onCheckUser($event)"
|
||||||
(openProfile)="onClickOpenProfile($event)"
|
(openProfile)="onClickOpenProfile($event)"
|
||||||
(click)="onToggleUser(userInfo)"
|
(click)="onToggleUser(userInfo)"
|
||||||
|
(contextmenu)="onContextMenuOrgUser($event, userInfo)"
|
||||||
>
|
>
|
||||||
</ucap-profile-user-list-item>
|
</ucap-profile-user-list-item>
|
||||||
</cdk-virtual-scroll-viewport>
|
</cdk-virtual-scroll-viewport>
|
||||||
@ -88,6 +89,7 @@
|
|||||||
(checkUser)="onCheckUser($event)"
|
(checkUser)="onCheckUser($event)"
|
||||||
(openProfile)="onClickOpenProfile($event)"
|
(openProfile)="onClickOpenProfile($event)"
|
||||||
(click)="onToggleUser(userInfo)"
|
(click)="onToggleUser(userInfo)"
|
||||||
|
(contextmenu)="onContextMenuOrgUser($event, userInfo)"
|
||||||
>
|
>
|
||||||
</ucap-profile-user-list-item>
|
</ucap-profile-user-list-item>
|
||||||
</cdk-virtual-scroll-viewport>
|
</cdk-virtual-scroll-viewport>
|
||||||
@ -138,3 +140,34 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
style="visibility: hidden; position: fixed"
|
||||||
|
[style.left]="orgUserContextMenuPosition.x"
|
||||||
|
[style.top]="orgUserContextMenuPosition.y"
|
||||||
|
#orgUserContextMenuTrigger="matMenuTrigger"
|
||||||
|
[matMenuTriggerFor]="orgUserContextMenu"
|
||||||
|
></div>
|
||||||
|
<mat-menu
|
||||||
|
#orgUserContextMenu="matMenu"
|
||||||
|
[hasBackdrop]="false"
|
||||||
|
(ucapClickOutside)="orgUserContextMenuTrigger.closeMenu()"
|
||||||
|
>
|
||||||
|
<ng-template matMenuContent let-userInfo="userInfo">
|
||||||
|
<button mat-menu-item (click)="onClickContextMenu('CALL_LINE', userInfo)">
|
||||||
|
내선번호 전화걸기
|
||||||
|
</button>
|
||||||
|
<button mat-menu-item (click)="onClickContextMenu('CALL_MOBILE', userInfo)">
|
||||||
|
모바일 전화걸기
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
mat-menu-item
|
||||||
|
(click)="onClickContextMenu('SEND_MESSAGE', userInfo)"
|
||||||
|
>
|
||||||
|
쪽지 보내기
|
||||||
|
</button>
|
||||||
|
<button mat-menu-item (click)="onClickContextMenu('SEND_SMS', userInfo)">
|
||||||
|
SMS 보내기
|
||||||
|
</button>
|
||||||
|
</ng-template>
|
||||||
|
</mat-menu>
|
||||||
|
@ -32,10 +32,15 @@ import * as SyncStore from '@app/store/messenger/sync';
|
|||||||
import * as ChatStore from '@app/store/messenger/chat';
|
import * as ChatStore from '@app/store/messenger/chat';
|
||||||
import * as StatusStore from '@app/store/messenger/status';
|
import * as StatusStore from '@app/store/messenger/status';
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
import { LoginInfo, KEY_LOGIN_INFO } from '@app/types';
|
import {
|
||||||
|
LoginInfo,
|
||||||
|
KEY_LOGIN_INFO,
|
||||||
|
KEY_VER_INFO,
|
||||||
|
EnvironmentsInfo,
|
||||||
|
KEY_ENVIRONMENTS_INFO
|
||||||
|
} from '@app/types';
|
||||||
import { take, map, tap, delay, catchError } from 'rxjs/operators';
|
import { take, map, tap, delay, catchError } from 'rxjs/operators';
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import {
|
import {
|
||||||
SelectGroupDialogComponent,
|
SelectGroupDialogComponent,
|
||||||
SelectGroupDialogData,
|
SelectGroupDialogData,
|
||||||
@ -45,6 +50,12 @@ import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
|||||||
import { Company } from '@ucap-webmessenger/api-external';
|
import { Company } from '@ucap-webmessenger/api-external';
|
||||||
import { PerfectScrollbarDirective } from 'ngx-perfect-scrollbar';
|
import { PerfectScrollbarDirective } from 'ngx-perfect-scrollbar';
|
||||||
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
||||||
|
import { MatMenuTrigger } from '@angular/material';
|
||||||
|
import {
|
||||||
|
MessageWriteDialogComponent,
|
||||||
|
MessageWriteDialogResult,
|
||||||
|
MessageWriteDialogData
|
||||||
|
} from '../../dialogs/message/message-write.dialog.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-layout-chat-left-sidenav-organization',
|
selector: 'app-layout-chat-left-sidenav-organization',
|
||||||
@ -54,6 +65,10 @@ import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|||||||
})
|
})
|
||||||
export class OrganizationComponent
|
export class OrganizationComponent
|
||||||
implements OnInit, OnDestroy, AfterViewChecked {
|
implements OnInit, OnDestroy, AfterViewChecked {
|
||||||
|
@ViewChild('orgUserContextMenuTrigger', { static: true })
|
||||||
|
orgUserContextMenuTrigger: MatMenuTrigger;
|
||||||
|
orgUserContextMenuPosition = { x: '0px', y: '0px' };
|
||||||
|
|
||||||
@Input()
|
@Input()
|
||||||
showTitle = true;
|
showTitle = true;
|
||||||
@Input()
|
@Input()
|
||||||
@ -107,6 +122,7 @@ export class OrganizationComponent
|
|||||||
loginInfo: LoginInfo;
|
loginInfo: LoginInfo;
|
||||||
loginRes: LoginResponse;
|
loginRes: LoginResponse;
|
||||||
sessionVerinfo: VersionInfo2Response;
|
sessionVerinfo: VersionInfo2Response;
|
||||||
|
environmentsInfo: EnvironmentsInfo;
|
||||||
|
|
||||||
isShowSearch = false;
|
isShowSearch = false;
|
||||||
searchUserInfos: UserInfoSS[] = [];
|
searchUserInfos: UserInfoSS[] = [];
|
||||||
@ -125,6 +141,9 @@ export class OrganizationComponent
|
|||||||
this.sessionVerinfo = this.sessionStorageService.get<VersionInfo2Response>(
|
this.sessionVerinfo = this.sessionStorageService.get<VersionInfo2Response>(
|
||||||
KEY_VER_INFO
|
KEY_VER_INFO
|
||||||
);
|
);
|
||||||
|
this.environmentsInfo = this.sessionStorageService.get<EnvironmentsInfo>(
|
||||||
|
KEY_ENVIRONMENTS_INFO
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
@ -441,4 +460,55 @@ export class OrganizationComponent
|
|||||||
onClickConference() {
|
onClickConference() {
|
||||||
this.logger.debug('onClickConference', this.selectedUserList);
|
this.logger.debug('onClickConference', this.selectedUserList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onContextMenuOrgUser(
|
||||||
|
event: MouseEvent,
|
||||||
|
userInfo: UserInfo | UserInfoSS | UserInfoF | UserInfoDN
|
||||||
|
) {
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
|
||||||
|
this.orgUserContextMenuPosition.x = event.clientX + 'px';
|
||||||
|
this.orgUserContextMenuPosition.y = event.clientY + 'px';
|
||||||
|
this.orgUserContextMenuTrigger.menu.focusFirstItem('mouse');
|
||||||
|
this.orgUserContextMenuTrigger.menuData = { userInfo };
|
||||||
|
this.orgUserContextMenuTrigger.openMenu();
|
||||||
|
}
|
||||||
|
|
||||||
|
async onClickContextMenu(type: string, userInfo: UserInfo) {
|
||||||
|
console.log(userInfo);
|
||||||
|
switch (type) {
|
||||||
|
case 'CALL_LINE':
|
||||||
|
{
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'CALL_MOBILE':
|
||||||
|
{
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'SEND_MESSAGE':
|
||||||
|
{
|
||||||
|
this.dialogService.open<
|
||||||
|
MessageWriteDialogComponent,
|
||||||
|
MessageWriteDialogData,
|
||||||
|
MessageWriteDialogResult
|
||||||
|
>(MessageWriteDialogComponent, {
|
||||||
|
width: '600px',
|
||||||
|
height: '600px',
|
||||||
|
disableClose: true,
|
||||||
|
hasBackdrop: false,
|
||||||
|
data: {
|
||||||
|
loginRes: this.loginRes,
|
||||||
|
environmentsInfo: this.environmentsInfo,
|
||||||
|
receiverList: [userInfo]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'SEND_SMS':
|
||||||
|
{
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,7 +61,7 @@ import {
|
|||||||
FileInfo,
|
FileInfo,
|
||||||
FormComponent as UCapUiChatFormComponent
|
FormComponent as UCapUiChatFormComponent
|
||||||
} from '@ucap-webmessenger/ui-chat';
|
} from '@ucap-webmessenger/ui-chat';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
import { KEY_VER_INFO } from '@app/types';
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import {
|
import {
|
||||||
MatMenuTrigger,
|
MatMenuTrigger,
|
||||||
|
@ -15,9 +15,12 @@ import { CommonApiService } from '@ucap-webmessenger/api-common';
|
|||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
||||||
import { EnvironmentsInfo, KEY_ENVIRONMENTS_INFO } from '@app/types';
|
import {
|
||||||
|
EnvironmentsInfo,
|
||||||
|
KEY_ENVIRONMENTS_INFO,
|
||||||
|
KEY_VER_INFO
|
||||||
|
} from '@app/types';
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import { UCAP_NATIVE_SERVICE, NativeService } from '@ucap-webmessenger/native';
|
import { UCAP_NATIVE_SERVICE, NativeService } from '@ucap-webmessenger/native';
|
||||||
import { NGXLogger } from 'ngx-logger';
|
import { NGXLogger } from 'ngx-logger';
|
||||||
import { SnackBarService } from '@ucap-webmessenger/ui';
|
import { SnackBarService } from '@ucap-webmessenger/ui';
|
||||||
|
@ -17,7 +17,6 @@ import * as RoomStore from '@app/store/messenger/room';
|
|||||||
import { UserInfo, RoomInfo } from '@ucap-webmessenger/protocol-room';
|
import { UserInfo, RoomInfo } from '@ucap-webmessenger/protocol-room';
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import {
|
import {
|
||||||
DialogService,
|
DialogService,
|
||||||
ConfirmDialogComponent,
|
ConfirmDialogComponent,
|
||||||
@ -35,9 +34,12 @@ import {
|
|||||||
CreateChatDialogResult,
|
CreateChatDialogResult,
|
||||||
CreateChatDialogData
|
CreateChatDialogData
|
||||||
} from '../../dialogs/chat/create-chat.dialog.component';
|
} from '../../dialogs/chat/create-chat.dialog.component';
|
||||||
import { UserSelectDialogType } from '@app/types';
|
import {
|
||||||
|
UserSelectDialogType,
|
||||||
|
KEY_LOGIN_RES_INFO,
|
||||||
|
KEY_VER_INFO
|
||||||
|
} from '@app/types';
|
||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
|
||||||
import { MatMenuTrigger, MatDialog } from '@angular/material';
|
import { MatMenuTrigger, MatDialog } from '@angular/material';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
import { ChangePasswordDialogComponent } from './change-password.dialog.component';
|
import { ChangePasswordDialogComponent } from './change-password.dialog.component';
|
||||||
|
import { NoticeDialogComponent } from './notice.dialog.component';
|
||||||
|
|
||||||
export const DIALOGS = [ChangePasswordDialogComponent];
|
export const DIALOGS = [ChangePasswordDialogComponent, NoticeDialogComponent];
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
<mat-card class="confirm-card mat-elevation-z">
|
||||||
|
<mat-card-header>
|
||||||
|
<mat-card-title>{{ data.title }}</mat-card-title>
|
||||||
|
<!-- <mat-card-subtitle>Confirm</mat-card-subtitle> -->
|
||||||
|
</mat-card-header>
|
||||||
|
<mat-card-content>
|
||||||
|
<div #messageContainer class="notice">
|
||||||
|
{{ data.message }}
|
||||||
|
</div>
|
||||||
|
</mat-card-content>
|
||||||
|
<mat-card-actions class="button-farm flex-row">
|
||||||
|
<button mat-stroked-button (click)="onClickConfirm()" class="mat-primary">
|
||||||
|
Confirm
|
||||||
|
</button>
|
||||||
|
</mat-card-actions>
|
||||||
|
</mat-card>
|
@ -0,0 +1,22 @@
|
|||||||
|
.mat-card{
|
||||||
|
padding:10px;
|
||||||
|
.mat-card-header{
|
||||||
|
margin-bottom:20px;
|
||||||
|
.mat-card-title{
|
||||||
|
margin:0 -16px;
|
||||||
|
padding-bottom:10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.button-farm {
|
||||||
|
text-align:right;
|
||||||
|
.mat-primary{
|
||||||
|
margin-left:4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
form{
|
||||||
|
.mat-form-field{
|
||||||
|
width:100%;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { NoticeDialogComponent } from './notice.dialog.component';
|
||||||
|
|
||||||
|
describe('ui::AlertDialogComponent', () => {
|
||||||
|
let component: NoticeDialogComponent;
|
||||||
|
let fixture: ComponentFixture<NoticeDialogComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [NoticeDialogComponent]
|
||||||
|
}).compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(NoticeDialogComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,44 @@
|
|||||||
|
import {
|
||||||
|
Component,
|
||||||
|
OnInit,
|
||||||
|
Inject,
|
||||||
|
ViewChild,
|
||||||
|
ElementRef
|
||||||
|
} from '@angular/core';
|
||||||
|
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
||||||
|
|
||||||
|
export interface NoticeDialogData {
|
||||||
|
title: string;
|
||||||
|
message?: string;
|
||||||
|
html?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
// tslint:disable-next-line: no-empty-interface
|
||||||
|
export interface NoticeDialogResult {}
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-notice-dialog',
|
||||||
|
templateUrl: './notice.dialog.component.html',
|
||||||
|
styleUrls: ['./notice.dialog.component.scss']
|
||||||
|
})
|
||||||
|
export class NoticeDialogComponent implements OnInit {
|
||||||
|
@ViewChild('messageContainer', { static: true })
|
||||||
|
messageContainer: ElementRef;
|
||||||
|
|
||||||
|
tempAgeLimits = [];
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
public dialogRef: MatDialogRef<NoticeDialogComponent, NoticeDialogResult>,
|
||||||
|
@Inject(MAT_DIALOG_DATA) public data: NoticeDialogData
|
||||||
|
) {}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
if (!!this.data.html) {
|
||||||
|
this.messageContainer.nativeElement.innerHTML = this.data.html;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onClickConfirm(): void {
|
||||||
|
this.dialogRef.close({});
|
||||||
|
}
|
||||||
|
}
|
@ -25,8 +25,7 @@ import * as StatusStore from '@app/store/messenger/status';
|
|||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
import { Company } from '@ucap-webmessenger/api-external';
|
import { Company } from '@ucap-webmessenger/api-external';
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import { LoginInfo, KEY_LOGIN_INFO } from '@app/types';
|
import { LoginInfo, KEY_LOGIN_INFO, KEY_VER_INFO } from '@app/types';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
import {
|
import {
|
||||||
UserInfo,
|
UserInfo,
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { Component, OnInit, Inject, ViewChild, OnDestroy } from '@angular/core';
|
import { Component, OnInit, Inject, ViewChild, OnDestroy } from '@angular/core';
|
||||||
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
import { KEY_LOGIN_RES_INFO, KEY_VER_INFO } from '@app/types';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
|
|
||||||
import { Store, select } from '@ngrx/store';
|
import { Store, select } from '@ngrx/store';
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { Component, OnInit, Inject, Renderer2 } from '@angular/core';
|
import { Component, OnInit, Inject, Renderer2 } from '@angular/core';
|
||||||
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
import { KEY_LOGIN_RES_INFO, KEY_VER_INFO } from '@app/types';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
|
|
||||||
import { Store } from '@ngrx/store';
|
import { Store } from '@ngrx/store';
|
||||||
|
@ -234,7 +234,7 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="img-item">
|
<div class="img-item">
|
||||||
<ul>
|
<ul>
|
||||||
<li *ngFor="let link of weblink">
|
<li *ngFor="let link of weblink" (click)="onClickWebLink(link)">
|
||||||
<div class="icon" [matTooltip]="link.title">
|
<div class="icon" [matTooltip]="link.title">
|
||||||
<span class="mdi mdi-star-circle-outline mdi-48px"></span>
|
<span class="mdi mdi-star-circle-outline mdi-48px"></span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -16,7 +16,17 @@ import * as UpdateStore from '@app/store/setting/update';
|
|||||||
|
|
||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
import { tap } from 'rxjs/operators';
|
import { tap } from 'rxjs/operators';
|
||||||
import { RightDrawer } from '@app/types';
|
import {
|
||||||
|
RightDrawer,
|
||||||
|
KEY_URL_INFO,
|
||||||
|
LoginInfo,
|
||||||
|
KEY_LOGIN_INFO
|
||||||
|
} from '@app/types';
|
||||||
|
import {
|
||||||
|
WebLink,
|
||||||
|
DaesangUrlInfoResponse
|
||||||
|
} from '@ucap-webmessenger/api-external';
|
||||||
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-layout-native-top-bar',
|
selector: 'app-layout-native-top-bar',
|
||||||
@ -33,123 +43,13 @@ export class TopBarComponent implements OnInit, OnDestroy {
|
|||||||
updateInfo$: Observable<UpdateInfo>;
|
updateInfo$: Observable<UpdateInfo>;
|
||||||
|
|
||||||
showWeblink = false;
|
showWeblink = false;
|
||||||
weblink: {
|
loginInfo: LoginInfo;
|
||||||
title: string;
|
weblink: WebLink[] = [];
|
||||||
url: string;
|
|
||||||
order: number;
|
|
||||||
activeYn: boolean;
|
|
||||||
}[] = [
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '웹하드',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://sso.daesang.com/messenger.do?eMateApps=WHD_78&eMatePTK=(%USER_ID%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: 'DSP',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://sso.daesang.com/messenger.do?eMateApps=GWS_01&eMatePTK=(%USER_ID%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: 'SMS',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://sso.daesang.com/messenger.do?eMateApps=SMS_21&eMatePTK=(%USER_ID%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '화상회의',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://dsview.daesang.com/plugin/sso_login.asp?userid=(%USER_FIELD4%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: 'EP',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://sso.daesang.com/messenger.do?eMateApps=EPS_07&eMatePTK=(%USER_ID%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: 'S & OP회의',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://sso.daesang.com/messenger.do?eMateApps=SOP_05&eMatePTK=(%USER_ID%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: 'S & OM회의',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://sso.daesang.com/messenger.do?eMateApps=SOM_09&eMatePTK=(%USER_ID%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '코끼리',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://dsp.daesang.com/names.nsf?login&username=(%USER_ID%)&password=(%USER_PASS%)&RedirectTo=http%3A%2F%2Fdsp%2Edaesang%2Ecom%3A80%2FDS%5F10%2Femate%5Fapp%2Felephant%2Fmaster%2Ensf%2Fmain%2Ehtml%3Freadform%26kind%3D3'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: 'IT서비스데스크',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://sso.daesang.com/messenger.do?eMateApps=HPD_13&eMatePTK=(%USER_ID%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '개인속보',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://sso.daesang.com/messenger.do?eMateApps=DSB_43&eMatePTK=(%USER_ID%)'
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '메일 count url',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://dsp.daesang.com/names.nsf?login&username=(%USER_ID%)&password=(%USER_PASS%)&RedirectTo=http://dsp.daesang.com/common/sysorg.nsf/unreadmailcount2?openagent%26empno=(%USER_FIELD4%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '메일 link url',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://dsp.daesang.com/names.nsf?login&username=(%USER_ID%)&password=(%USER_PASS%)&RedirectTo=%2Fportal%2Ensf%2Fmailredirect%3Fopenpage%26mode%3Dm'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '결제 count url',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://dsp.daesang.com/names.nsf?login&username=(%USER_ID%)&password=(%USER_PASS%)&RedirectTo=http://dsp.daesang.com/common/sysorg.nsf/unreadmailcount2?openagent%26empno=(%USER_FIELD4%)'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '결제 link url',
|
|
||||||
activeYn: true,
|
|
||||||
url:
|
|
||||||
'http://dsp.daesang.com/names.nsf?login&username=(%USER_ID%)&password=(%USER_PASS%)&RedirectTo=%2Fportal%2Ensf%2Fmailredirect%3Fopenpage%26mode%3Dm'
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
order: 0,
|
|
||||||
title: '3개월 비밀번호 변경창 url',
|
|
||||||
activeYn: true,
|
|
||||||
url: 'sso.daesang.com / modify.do'
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private store: Store<any>,
|
private store: Store<any>,
|
||||||
@Inject(UCAP_NATIVE_SERVICE) private nativeService: NativeService
|
@Inject(UCAP_NATIVE_SERVICE) private nativeService: NativeService,
|
||||||
|
private sessionStorageService: SessionStorageService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
@ -160,6 +60,13 @@ export class TopBarComponent implements OnInit, OnDestroy {
|
|||||||
select(AppStore.AccountSelector.AuthenticationSelector.loginRes),
|
select(AppStore.AccountSelector.AuthenticationSelector.loginRes),
|
||||||
tap(loginRes => {
|
tap(loginRes => {
|
||||||
this.loginRes = loginRes;
|
this.loginRes = loginRes;
|
||||||
|
|
||||||
|
this.loginInfo = this.sessionStorageService.get<LoginInfo>(
|
||||||
|
KEY_LOGIN_INFO
|
||||||
|
);
|
||||||
|
|
||||||
|
// WebLink init..
|
||||||
|
this.initWebLink();
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
.subscribe();
|
.subscribe();
|
||||||
@ -169,6 +76,47 @@ export class TopBarComponent implements OnInit, OnDestroy {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
initWebLink(): void {
|
||||||
|
const urlInfo: DaesangUrlInfoResponse = this.sessionStorageService.get<
|
||||||
|
DaesangUrlInfoResponse
|
||||||
|
>(KEY_URL_INFO);
|
||||||
|
|
||||||
|
if (!!urlInfo && !!urlInfo.webLink) {
|
||||||
|
this.weblink = urlInfo.webLink.filter(
|
||||||
|
weblink =>
|
||||||
|
urlInfo.webLinkAllowedList.filter(type => type === weblink.key)
|
||||||
|
.length > 0
|
||||||
|
);
|
||||||
|
|
||||||
|
if (
|
||||||
|
urlInfo.webLinkAllowedList.indexOf('WebLinkMail') > -1 &&
|
||||||
|
urlInfo.webLinkAllowedList.indexOf('WebLinkMailCnt') > -1
|
||||||
|
) {
|
||||||
|
// 메일 카운트 체크.
|
||||||
|
const link = urlInfo.webLink.filter(
|
||||||
|
weblink => weblink.key === 'WebLinkMailCnt'
|
||||||
|
);
|
||||||
|
if (link.length > 0) {
|
||||||
|
const WebLinkMailCnt = link[0];
|
||||||
|
// this.onClickWebLink(WebLinkMailCnt);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
urlInfo.webLinkAllowedList.indexOf('WebLinkPayment') > -1 &&
|
||||||
|
urlInfo.webLinkAllowedList.indexOf('WebLinkPaymentCnt') > -1
|
||||||
|
) {
|
||||||
|
// 결제 카운트 체크.
|
||||||
|
const link = urlInfo.webLink.filter(
|
||||||
|
weblink => weblink.key === 'WebLinkPaymentCnt'
|
||||||
|
);
|
||||||
|
if (link.length > 0) {
|
||||||
|
const WebLinkPaymentCnt = link[0];
|
||||||
|
// this.onClickWebLink(WebLinkPaymentCnt);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ngOnDestroy(): void {}
|
ngOnDestroy(): void {}
|
||||||
|
|
||||||
onClickClose() {
|
onClickClose() {
|
||||||
@ -202,6 +150,14 @@ export class TopBarComponent implements OnInit, OnDestroy {
|
|||||||
onToggleWebLinkSelector(): void {
|
onToggleWebLinkSelector(): void {
|
||||||
this.showWeblink = !this.showWeblink;
|
this.showWeblink = !this.showWeblink;
|
||||||
}
|
}
|
||||||
|
onClickWebLink(link: WebLink): void {
|
||||||
|
const loginPw = this.loginInfo.loginPw;
|
||||||
|
const token = this.loginRes.tokenString;
|
||||||
|
|
||||||
|
const url = link.url.replace('(%USER_TOKEN%)', token);
|
||||||
|
|
||||||
|
this.nativeService.openDefaultBrowser(url);
|
||||||
|
}
|
||||||
|
|
||||||
onClickUpdate() {
|
onClickUpdate() {
|
||||||
this.store.dispatch(UpdateStore.applyInstantUpdate());
|
this.store.dispatch(UpdateStore.applyInstantUpdate());
|
||||||
|
@ -2,9 +2,12 @@
|
|||||||
<div class="login-wrapper" fxLayout="column" fxLayoutAlign="center center">
|
<div class="login-wrapper" fxLayout="column" fxLayoutAlign="center center">
|
||||||
<ucap-account-login
|
<ucap-account-login
|
||||||
[companyList]="companyList$ | async"
|
[companyList]="companyList$ | async"
|
||||||
|
[curCompanyCode]="fixedCompany"
|
||||||
|
[notiText]="fixedNotiBtnText"
|
||||||
[loginBtnEnable]="loginBtnEnable"
|
[loginBtnEnable]="loginBtnEnable"
|
||||||
[loginBtnText]="loginBtnText"
|
[loginBtnText]="loginBtnText"
|
||||||
(login)="onLogin($event)"
|
(login)="onLogin($event)"
|
||||||
|
(notiClick)="onClickNoti($event)"
|
||||||
>
|
>
|
||||||
</ucap-account-login>
|
</ucap-account-login>
|
||||||
</div>
|
</div>
|
||||||
|
@ -17,6 +17,11 @@ import {
|
|||||||
AlertDialogResult
|
AlertDialogResult
|
||||||
} from '@ucap-webmessenger/ui';
|
} from '@ucap-webmessenger/ui';
|
||||||
import { StringUtil } from '@ucap-webmessenger/core';
|
import { StringUtil } from '@ucap-webmessenger/core';
|
||||||
|
import {
|
||||||
|
NoticeDialogComponent,
|
||||||
|
NoticeDialogResult,
|
||||||
|
NoticeDialogData
|
||||||
|
} from '@app/layouts/messenger/dialogs/account/notice.dialog.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-page-account-login',
|
selector: 'app-page-account-login',
|
||||||
@ -24,6 +29,9 @@ import { StringUtil } from '@ucap-webmessenger/core';
|
|||||||
styleUrls: ['./login.page.component.scss']
|
styleUrls: ['./login.page.component.scss']
|
||||||
})
|
})
|
||||||
export class LoginPageComponent implements OnInit, OnDestroy {
|
export class LoginPageComponent implements OnInit, OnDestroy {
|
||||||
|
fixedCompany: string;
|
||||||
|
fixedNotiBtnText: string;
|
||||||
|
|
||||||
companyList$: Observable<Company[]>;
|
companyList$: Observable<Company[]>;
|
||||||
|
|
||||||
loginFailureCount: Subscription;
|
loginFailureCount: Subscription;
|
||||||
@ -102,6 +110,14 @@ export class LoginPageComponent implements OnInit, OnDestroy {
|
|||||||
})
|
})
|
||||||
)
|
)
|
||||||
.subscribe();
|
.subscribe();
|
||||||
|
|
||||||
|
this.customInitilize();
|
||||||
|
}
|
||||||
|
|
||||||
|
customInitilize() {
|
||||||
|
// Daesang..
|
||||||
|
this.fixedCompany = 'GUC100';
|
||||||
|
this.fixedNotiBtnText = '이용 주의사항';
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnDestroy(): void {
|
ngOnDestroy(): void {
|
||||||
@ -151,7 +167,30 @@ export class LoginPageComponent implements OnInit, OnDestroy {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
onClickTemplate() {
|
onClickNoti() {
|
||||||
this.router.navigate(['/template']);
|
// For Daesang,,
|
||||||
|
this.dialogService.open<
|
||||||
|
NoticeDialogComponent,
|
||||||
|
NoticeDialogData,
|
||||||
|
NoticeDialogResult
|
||||||
|
>(NoticeDialogComponent, {
|
||||||
|
width: '500px',
|
||||||
|
data: {
|
||||||
|
title: '이용시 주의사항',
|
||||||
|
html: `
|
||||||
|
<p>1. 메신저 계정/비밀번호를 타인에게 공유하지 않아야 합니다.</p>
|
||||||
|
<p>2. 회사 중요정보(고객정보 포함)를 업무상 필요한 인원에게 필요한 만큼만 공유해야 합니다.</p>
|
||||||
|
<p>3. 퇴근, 회의 등 자리를 비우는 경우 중요자료가 방치되지 않도록 주의하고, Clean Desk를 실천해야 합니다.</p>
|
||||||
|
<p>4. 메신저를 누군가 허락 없이 함부로 열람하고 그 내부 내용을 타인과 공유하지 않아야 합니다.</p>
|
||||||
|
<p>5. 공용PC에 메신저 사용 후 반드시 로그아웃 하시기 바랍니다.</p>
|
||||||
|
<p>6. 사내메신저는 업무용 협업도구입니다. 비업무용 소통을 자제하시기 바랍니다.</p>
|
||||||
|
<p>7. 업무상 인지한 정보(개인의 프라이버시 포함)나 일반인에게 공개되지 않은 회사기록을 통해 얻은 정보는 오직 회사의 이익을 위해서 활용하여야 하며 사외에 유출하거나 타인에게 알려주거나 업무 이외의 목적에 사용하여서는 아니 됩니다.</p>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// onClickTemplate() {
|
||||||
|
// this.router.navigate(['/template']);
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ import {
|
|||||||
ActivatedRouteSnapshot,
|
ActivatedRouteSnapshot,
|
||||||
RouterStateSnapshot
|
RouterStateSnapshot
|
||||||
} from '@angular/router';
|
} from '@angular/router';
|
||||||
import { Observable, throwError, forkJoin } from 'rxjs';
|
import { Observable, throwError, forkJoin, of } from 'rxjs';
|
||||||
import {
|
import {
|
||||||
map,
|
map,
|
||||||
tap,
|
tap,
|
||||||
@ -27,7 +27,8 @@ import {
|
|||||||
LoginInfo,
|
LoginInfo,
|
||||||
KEY_LOGIN_INFO,
|
KEY_LOGIN_INFO,
|
||||||
EnvironmentsInfo,
|
EnvironmentsInfo,
|
||||||
KEY_ENVIRONMENTS_INFO
|
KEY_ENVIRONMENTS_INFO,
|
||||||
|
KEY_URL_INFO
|
||||||
} from '@app/types';
|
} from '@app/types';
|
||||||
import { InnerProtocolService } from '@ucap-webmessenger/protocol-inner';
|
import { InnerProtocolService } from '@ucap-webmessenger/protocol-inner';
|
||||||
import {
|
import {
|
||||||
@ -47,12 +48,18 @@ import * as VersionInfoStore from '@app/store/setting/version-info';
|
|||||||
import * as OptionStore from '@app/store/messenger/option';
|
import * as OptionStore from '@app/store/messenger/option';
|
||||||
import * as QueryStore from '@app/store/messenger/query';
|
import * as QueryStore from '@app/store/messenger/query';
|
||||||
import * as SyncStore from '@app/store/messenger/sync';
|
import * as SyncStore from '@app/store/messenger/sync';
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
import { KEY_LOGIN_RES_INFO, KEY_VER_INFO } from '@app/types';
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
|
||||||
|
|
||||||
import { environment } from '../../environments/environment';
|
import { environment } from '../../environments/environment';
|
||||||
import { SnackBarService } from '@ucap-webmessenger/ui';
|
import { SnackBarService } from '@ucap-webmessenger/ui';
|
||||||
import { AppNativeService } from '@app/services/native.service';
|
import { AppNativeService } from '@app/services/native.service';
|
||||||
|
import {
|
||||||
|
ExternalApiService,
|
||||||
|
UrlInfoResponse,
|
||||||
|
DaesangUrlInfoResponse
|
||||||
|
} from '@ucap-webmessenger/api-external';
|
||||||
|
import { DeviceType } from '@ucap-webmessenger/core';
|
||||||
|
import { StatusCode } from '@ucap-webmessenger/api';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AppMessengerResolver implements Resolve<void> {
|
export class AppMessengerResolver implements Resolve<void> {
|
||||||
@ -60,6 +67,7 @@ export class AppMessengerResolver implements Resolve<void> {
|
|||||||
private store: Store<any>,
|
private store: Store<any>,
|
||||||
private sessionStorageService: SessionStorageService,
|
private sessionStorageService: SessionStorageService,
|
||||||
private publicApiService: PublicApiService,
|
private publicApiService: PublicApiService,
|
||||||
|
private externalApiService: ExternalApiService,
|
||||||
private protocolService: ProtocolService,
|
private protocolService: ProtocolService,
|
||||||
private queryProtocolService: QueryProtocolService,
|
private queryProtocolService: QueryProtocolService,
|
||||||
private optionProtocolService: OptionProtocolService,
|
private optionProtocolService: OptionProtocolService,
|
||||||
@ -103,6 +111,24 @@ export class AppMessengerResolver implements Resolve<void> {
|
|||||||
switchMap(res => {
|
switchMap(res => {
|
||||||
return this.protocolService.connect(res.serverIp);
|
return this.protocolService.connect(res.serverIp);
|
||||||
}),
|
}),
|
||||||
|
switchMap(() => {
|
||||||
|
return this.externalApiService
|
||||||
|
.urlInfoDaesang({
|
||||||
|
deviceType: environmentsInfo.deviceType,
|
||||||
|
loginId: loginInfo.loginId
|
||||||
|
})
|
||||||
|
.pipe(
|
||||||
|
map(response => {
|
||||||
|
if (response.statusCode === StatusCode.Success) {
|
||||||
|
this.sessionStorageService.set<
|
||||||
|
UrlInfoResponse | DaesangUrlInfoResponse
|
||||||
|
>(KEY_URL_INFO, response);
|
||||||
|
} else {
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
catchError(error => of(this.logger.error({ error })))
|
||||||
|
);
|
||||||
|
}),
|
||||||
switchMap(() => this.innerProtocolService.conn({})),
|
switchMap(() => this.innerProtocolService.conn({})),
|
||||||
switchMap(res => {
|
switchMap(res => {
|
||||||
return this.authenticationProtocolService
|
return this.authenticationProtocolService
|
||||||
|
@ -5,9 +5,12 @@ import {
|
|||||||
LocalStorageService
|
LocalStorageService
|
||||||
} from '@ucap-webmessenger/web-storage';
|
} from '@ucap-webmessenger/web-storage';
|
||||||
import { LocaleCode } from '@ucap-webmessenger/core';
|
import { LocaleCode } from '@ucap-webmessenger/core';
|
||||||
import { LoginInfo, KEY_LOGIN_INFO } from '../types';
|
import {
|
||||||
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
LoginInfo,
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
KEY_LOGIN_INFO,
|
||||||
|
KEY_LOGIN_RES_INFO,
|
||||||
|
KEY_VER_INFO
|
||||||
|
} from '../types';
|
||||||
import { PasswordUtil } from '@ucap-webmessenger/pi';
|
import { PasswordUtil } from '@ucap-webmessenger/pi';
|
||||||
import { DaesangCipherService } from '@ucap-webmessenger/daesang';
|
import { DaesangCipherService } from '@ucap-webmessenger/daesang';
|
||||||
|
|
||||||
|
@ -3,3 +3,6 @@ export * from './login-info.type';
|
|||||||
export * from './userselect.dialog.type';
|
export * from './userselect.dialog.type';
|
||||||
export * from './right-drawer.type';
|
export * from './right-drawer.type';
|
||||||
export * from './sticker-info.type';
|
export * from './sticker-info.type';
|
||||||
|
export * from './url-info.type';
|
||||||
|
export * from './ver-info.type';
|
||||||
|
export * from './login-res-info.type';
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
export const KEY_URL_INFO = 'ucap::URL_INFO';
|
@ -2,7 +2,7 @@
|
|||||||
<div class="mat-title">LOGIN TO YOUR ACCOUNT</div>
|
<div class="mat-title">LOGIN TO YOUR ACCOUNT</div>
|
||||||
|
|
||||||
<form name="loginForm" [formGroup]="loginForm" novalidate>
|
<form name="loginForm" [formGroup]="loginForm" novalidate>
|
||||||
<mat-form-field>
|
<mat-form-field [style.display]="!!curCompanyCode ? 'none' : 'block'">
|
||||||
<mat-label>Company</mat-label>
|
<mat-label>Company</mat-label>
|
||||||
<mat-select formControlName="companyCode" required>
|
<mat-select formControlName="companyCode" required>
|
||||||
<mat-option
|
<mat-option
|
||||||
@ -69,5 +69,9 @@
|
|||||||
<span class="text">Don't have an account?</span>
|
<span class="text">Don't have an account?</span>
|
||||||
<a class="link">Create an account</a>
|
<a class="link">Create an account</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="policy"><a class="link">개인정보 처리방침</a></div>
|
<div class="policy">
|
||||||
|
<a class="link" (click)="onClickNoti()">{{
|
||||||
|
!!notiText ? notiText : '개인정보 처리방침'
|
||||||
|
}}</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -22,9 +22,13 @@ export class LoginComponent implements OnInit {
|
|||||||
@Input()
|
@Input()
|
||||||
companyList?: Company[];
|
companyList?: Company[];
|
||||||
@Input()
|
@Input()
|
||||||
|
curCompanyCode?: string;
|
||||||
|
@Input()
|
||||||
loginBtnText?: string;
|
loginBtnText?: string;
|
||||||
@Input()
|
@Input()
|
||||||
loginBtnEnable: boolean;
|
loginBtnEnable: boolean;
|
||||||
|
@Input()
|
||||||
|
notiText?: string;
|
||||||
|
|
||||||
@Output()
|
@Output()
|
||||||
login = new EventEmitter<{
|
login = new EventEmitter<{
|
||||||
@ -34,6 +38,8 @@ export class LoginComponent implements OnInit {
|
|||||||
rememberMe: boolean;
|
rememberMe: boolean;
|
||||||
notValid: () => void;
|
notValid: () => void;
|
||||||
}>();
|
}>();
|
||||||
|
@Output()
|
||||||
|
notiClick = new EventEmitter();
|
||||||
|
|
||||||
@ViewChild('loginPw', { static: true }) loginPwElementRef: ElementRef;
|
@ViewChild('loginPw', { static: true }) loginPwElementRef: ElementRef;
|
||||||
|
|
||||||
@ -56,6 +62,10 @@ export class LoginComponent implements OnInit {
|
|||||||
remember: [false]
|
remember: [false]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!!this.curCompanyCode) {
|
||||||
|
this.loginForm.get('companyCode').setValue(this.curCompanyCode);
|
||||||
|
}
|
||||||
|
|
||||||
if (loginInfo && loginInfo.companyCode && loginInfo.loginId) {
|
if (loginInfo && loginInfo.companyCode && loginInfo.loginId) {
|
||||||
this.loginForm.get('companyCode').setValue(loginInfo.companyCode);
|
this.loginForm.get('companyCode').setValue(loginInfo.companyCode);
|
||||||
this.loginForm.get('loginId').setValue(loginInfo.loginId);
|
this.loginForm.get('loginId').setValue(loginInfo.loginId);
|
||||||
@ -79,4 +89,8 @@ export class LoginComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onClickNoti(): void {
|
||||||
|
this.notiClick.emit();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -140,7 +140,7 @@
|
|||||||
>
|
>
|
||||||
</ucap-chat-message-box-text>
|
</ucap-chat-message-box-text>
|
||||||
<div *ngSwitchDefault>
|
<div *ngSwitchDefault>
|
||||||
mass-translation
|
<!-- mass-translation
|
||||||
<ucap-chat-message-box-mass-translation></ucap-chat-message-box-mass-translation>
|
<ucap-chat-message-box-mass-translation></ucap-chat-message-box-mass-translation>
|
||||||
notice
|
notice
|
||||||
<ucap-chat-message-box-notice></ucap-chat-message-box-notice>
|
<ucap-chat-message-box-notice></ucap-chat-message-box-notice>
|
||||||
@ -152,7 +152,8 @@
|
|||||||
|
|
||||||
<div class="message">
|
<div class="message">
|
||||||
{{ message.sentMessage }}
|
{{ message.sentMessage }}
|
||||||
</div>
|
</div> -->
|
||||||
|
{{ message.type }} / {{ message.sentMessage }}
|
||||||
</div>
|
</div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user