bugfix
This commit is contained in:
parent
35a3292ddb
commit
057a5e8705
@ -1,47 +1,13 @@
|
|||||||
<!--<div class="app-layout-chat-left-sidenav-chat-header list-search">
|
|
||||||
<form [formGroup]="fgSearch">
|
|
||||||
<mat-form-field class="w-100-p searchbox" floatLabel="never">
|
|
||||||
<input
|
|
||||||
matInput
|
|
||||||
#inputSearch
|
|
||||||
type="text"
|
|
||||||
maxlength="20"
|
|
||||||
placeholder="대화방 이름 검색"
|
|
||||||
value=""
|
|
||||||
formControlName="searchInput"
|
|
||||||
[matAutocomplete]="auto"
|
|
||||||
(keydown.enter)="onKeyDownEnter($event, inputSearch.value)"
|
|
||||||
/>
|
|
||||||
<mat-autocomplete #auto="matAutocomplete">
|
|
||||||
<mat-option
|
|
||||||
*ngFor="let filteredRecommendedWord of filteredRecommendedWordList"
|
|
||||||
[value]="filteredRecommendedWord"
|
|
||||||
>
|
|
||||||
{{ filteredRecommendedWord }}
|
|
||||||
</mat-option>
|
|
||||||
</mat-autocomplete>
|
|
||||||
|
|
||||||
<button
|
|
||||||
mat-button
|
|
||||||
matSuffix
|
|
||||||
mat-icon-button
|
|
||||||
aria-label="Clear"
|
|
||||||
(click)="inputSearch.value = ''; onClickSearchCancel()"
|
|
||||||
>
|
|
||||||
<mat-icon>close</mat-icon>
|
|
||||||
</button>
|
|
||||||
</mat-form-field>
|
|
||||||
</form>-->
|
|
||||||
<div>
|
<div>
|
||||||
<div class="current-head">
|
<div class="current-head">
|
||||||
<h3>대화</h3>
|
<h3>대화</h3>
|
||||||
<div class="btn-box">
|
<div class="btn-box">
|
||||||
<button mat-icon-button>
|
<!-- <button mat-icon-button>
|
||||||
<mat-icon>timer</mat-icon>
|
<mat-icon>timer</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<button mat-icon-button>
|
<button mat-icon-button>
|
||||||
<mat-icon> add_comment</mat-icon>
|
<mat-icon> add_comment</mat-icon>
|
||||||
</button>
|
</button> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="list-search">
|
<div class="list-search">
|
||||||
@ -59,6 +25,16 @@
|
|||||||
[matAutocomplete]="auto"
|
[matAutocomplete]="auto"
|
||||||
(keydown.enter)="onKeyDownEnter($event, inputSearch.value)"
|
(keydown.enter)="onKeyDownEnter($event, inputSearch.value)"
|
||||||
/>
|
/>
|
||||||
|
<mat-autocomplete #auto="matAutocomplete">
|
||||||
|
<mat-option
|
||||||
|
*ngFor="
|
||||||
|
let filteredRecommendedWord of filteredRecommendedWordList
|
||||||
|
"
|
||||||
|
[value]="filteredRecommendedWord"
|
||||||
|
>
|
||||||
|
{{ filteredRecommendedWord }}
|
||||||
|
</mat-option>
|
||||||
|
</mat-autocomplete>
|
||||||
<button
|
<button
|
||||||
mat-button
|
mat-button
|
||||||
matSuffix
|
matSuffix
|
||||||
@ -73,11 +49,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div *ngIf="!isSearch" class="app-layout-chat-left-sidenav-chat-list">
|
||||||
*ngIf="!isSearch"
|
|
||||||
class="app-layout-chat-left-sidenav-chat-list"
|
|
||||||
|
|
||||||
>
|
|
||||||
<ucap-room-list-item
|
<ucap-room-list-item
|
||||||
*ngFor="let room of roomList"
|
*ngFor="let room of roomList"
|
||||||
[loginRes]="loginRes"
|
[loginRes]="loginRes"
|
||||||
@ -104,11 +76,7 @@
|
|||||||
</ucap-room-list-item>
|
</ucap-room-list-item>
|
||||||
</cdk-virtual-scroll-viewport> -->
|
</cdk-virtual-scroll-viewport> -->
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div *ngIf="!!isSearch" class="app-layout-chat-left-sidenav-chat-list search">
|
||||||
*ngIf="!!isSearch"
|
|
||||||
class="app-layout-chat-left-sidenav-chat-list search"
|
|
||||||
|
|
||||||
>
|
|
||||||
<ucap-room-list-item
|
<ucap-room-list-item
|
||||||
*ngFor="let room of searchRoomList"
|
*ngFor="let room of searchRoomList"
|
||||||
[loginRes]="loginRes"
|
[loginRes]="loginRes"
|
||||||
@ -160,3 +128,4 @@
|
|||||||
</button>
|
</button>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</mat-menu>
|
</mat-menu>
|
||||||
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user