2019-10-16 08:46:53 +00:00
|
|
|
<mat-card class="confirm-card">
|
|
|
|
<mat-card-header cdkDrag cdkDragRootElement=".cdk-overlay-pane" cdkDragHandle>
|
|
|
|
<mat-card-title>{{ data.title }}</mat-card-title>
|
|
|
|
</mat-card-header>
|
2019-10-18 04:02:43 +00:00
|
|
|
<mat-card-content>
|
|
|
|
<div *ngIf="data.type === UserSelectDialogType.NewGroup">
|
|
|
|
<form name="inputForm" [formGroup]="inputForm" novalidate>
|
|
|
|
<mat-form-field hintLabel="특수문자는 '-,_'만 사용할 수 있습니다.">
|
|
|
|
<input
|
|
|
|
matInput
|
|
|
|
#input
|
|
|
|
maxlength="20"
|
|
|
|
placeholder="그룹이름"
|
|
|
|
formControlName="groupName"
|
|
|
|
/>
|
|
|
|
<mat-hint align="end">{{ input.value?.length || 0 }}/20</mat-hint>
|
|
|
|
</mat-form-field>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
fxLayout
|
|
|
|
fxLayout.xs="column"
|
|
|
|
fxLayoutAlign="center"
|
|
|
|
fxLayoutGap="10px"
|
|
|
|
fxLayoutGap.xs="0"
|
|
|
|
>
|
|
|
|
<div fxFlex class="container">
|
2019-10-24 08:04:58 +00:00
|
|
|
<mat-tab-group
|
|
|
|
mat-stretch-tabs
|
|
|
|
(selectedTabChange)="onSelectedTabChange($event)"
|
|
|
|
>
|
2019-10-18 04:02:43 +00:00
|
|
|
<mat-tab>
|
|
|
|
<ng-template mat-tab-label>
|
|
|
|
<mat-icon>group</mat-icon>
|
|
|
|
</ng-template>
|
2019-10-23 06:07:41 +00:00
|
|
|
<div>
|
2019-10-28 02:15:20 +00:00
|
|
|
<div>
|
|
|
|
<ucap-organization-tenant-search
|
|
|
|
[companyList]="companyList$ | async"
|
|
|
|
[companyCode]="companyCode"
|
|
|
|
(keyDownEnter)="
|
|
|
|
onKeyDownEnterOrganizationTenantSearch($event)
|
|
|
|
"
|
|
|
|
(cancel)="onClickCancel($event)"
|
|
|
|
></ucap-organization-tenant-search>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="!isShowSearch">
|
|
|
|
<ucap-group-expansion-panel
|
|
|
|
#groupExpansionPanel
|
|
|
|
[groupBuddyList]="groupBuddyList$ | async"
|
|
|
|
[favoritBuddyList]="favoritBuddyList$ | async"
|
|
|
|
[selectedUserList]="selectedUserList"
|
|
|
|
[checkable]="true"
|
|
|
|
(checkGroup)="onCheckGroup($event)"
|
|
|
|
>
|
|
|
|
<ucap-profile-user-list-item
|
|
|
|
*ucapGroupExpansionPanelItem="let userInfo"
|
|
|
|
[userInfo]="userInfo"
|
|
|
|
[sessionVerinfo]="sessionVerinfo"
|
|
|
|
[selectedUserList]="selectedUserList"
|
|
|
|
[isChecked]="getCheckedUser(userInfo)"
|
|
|
|
[checkable]="true"
|
|
|
|
(checkUser)="onCheckUser($event)"
|
|
|
|
>
|
|
|
|
</ucap-profile-user-list-item>
|
|
|
|
</ucap-group-expansion-panel>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="isShowSearch">
|
|
|
|
<div *ngIf="searchProcessing">
|
|
|
|
<mat-progress-bar mode="indeterminate"></mat-progress-bar>
|
|
|
|
</div>
|
|
|
|
<div>검색결과({{ searchUserInfos.length }}명)</div>
|
2019-10-23 06:07:41 +00:00
|
|
|
<ucap-profile-user-list-item
|
2019-10-28 02:15:20 +00:00
|
|
|
*ngFor="let userInfo of searchUserInfos"
|
2019-10-23 06:07:41 +00:00
|
|
|
[userInfo]="userInfo"
|
|
|
|
[sessionVerinfo]="sessionVerinfo"
|
|
|
|
[selectedUserList]="selectedUserList"
|
|
|
|
[isChecked]="getCheckedUser(userInfo)"
|
|
|
|
[checkable]="true"
|
|
|
|
(checkUser)="onCheckUser($event)"
|
|
|
|
>
|
|
|
|
</ucap-profile-user-list-item>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-18 04:02:43 +00:00
|
|
|
</mat-tab>
|
|
|
|
<mat-tab>
|
|
|
|
<ng-template mat-tab-label>
|
|
|
|
<mat-icon>device_hub</mat-icon>
|
|
|
|
</ng-template>
|
2019-10-28 02:15:20 +00:00
|
|
|
<div style="height:500px">
|
|
|
|
<app-layout-chat-left-sidenav-organization
|
|
|
|
[selectedUserList]="selectedUserList"
|
|
|
|
[isUserSelect]="true"
|
2019-10-29 08:07:45 +00:00
|
|
|
(checkAllUser)="onCheckAllUser($event)"
|
2019-10-28 02:15:20 +00:00
|
|
|
(checkUser)="onCheckUser($event)"
|
|
|
|
>
|
|
|
|
</app-layout-chat-left-sidenav-organization>
|
|
|
|
</div>
|
2019-10-18 04:02:43 +00:00
|
|
|
</mat-tab>
|
|
|
|
<mat-tab *ngIf="data.type === UserSelectDialogType.MessageForward">
|
|
|
|
<ng-template mat-tab-label>
|
|
|
|
<mat-icon>chat</mat-icon>
|
|
|
|
</ng-template>
|
2019-10-28 02:15:20 +00:00
|
|
|
<div style="height:500px">
|
|
|
|
<cdk-virtual-scroll-viewport itemSize="20" style="height: 100%">
|
|
|
|
<ucap-room-list-item
|
|
|
|
*ngFor="let room of roomList"
|
|
|
|
[loginRes]="loginRes"
|
|
|
|
[roomInfo]="room"
|
|
|
|
[roomUserInfo]="getRoomUserList(room)"
|
|
|
|
[sessionVerinfo]="sessionVerinfo"
|
|
|
|
[checkable]="getCheckableRoom(room)"
|
|
|
|
[isChecked]="getCheckedRoom(room)"
|
|
|
|
[multiCheckable]="false"
|
|
|
|
(checkRoom)="onCheckRoom($event)"
|
|
|
|
>
|
|
|
|
</ucap-room-list-item>
|
|
|
|
</cdk-virtual-scroll-viewport>
|
|
|
|
</div>
|
2019-10-18 04:02:43 +00:00
|
|
|
</mat-tab>
|
|
|
|
</mat-tab-group>
|
|
|
|
</div>
|
2019-10-24 08:04:58 +00:00
|
|
|
<div fxFlex="150px" *ngIf="isShowSelectedUserList">
|
2019-10-22 08:05:29 +00:00
|
|
|
<mat-chip-list aria-label="User selection">
|
|
|
|
<mat-chip
|
|
|
|
*ngFor="let userInfo of selectedUserList"
|
|
|
|
color="primary"
|
|
|
|
selected
|
|
|
|
(removed)="onClickDeleteUser(userInfo)"
|
|
|
|
>
|
2019-10-18 04:02:43 +00:00
|
|
|
{{ userInfo.name }}
|
2019-10-22 08:05:29 +00:00
|
|
|
<mat-icon matChipRemove>clear</mat-icon>
|
|
|
|
</mat-chip>
|
|
|
|
</mat-chip-list>
|
2019-10-18 04:02:43 +00:00
|
|
|
</div>
|
2019-10-16 08:46:53 +00:00
|
|
|
</div>
|
|
|
|
</mat-card-content>
|
|
|
|
<mat-card-actions class="button-farm flex-row">
|
2019-10-18 00:48:38 +00:00
|
|
|
<button
|
|
|
|
mat-stroked-button
|
|
|
|
(click)="onClickChoice(false)"
|
|
|
|
class="mat-primary"
|
|
|
|
>
|
2019-10-16 08:46:53 +00:00
|
|
|
No
|
|
|
|
</button>
|
|
|
|
<button mat-flat-button (click)="onClickChoice(true)" class="mat-primary">
|
|
|
|
Yes
|
|
|
|
</button>
|
|
|
|
</mat-card-actions>
|
|
|
|
</mat-card>
|