ucap-doc/documents/업무/6월/1째주/backup/etc/room-list-item-02.component.html
Park Byung Eun cc59886a40 sync
2020-06-05 18:45:18 +09:00

32 lines
866 B
HTML

<div class="ucap-chat-room-list-item2">
<div class="ucap-chat-room-list-item2-profile-image">
<div class="profile-image">
<img
ucapImage
[base]="profileImageRoot"
[path]="profileImage"
[default]="defaultProfileImage"
/>
</div>
</div>
<div class="ucap-chat-room-list-item2-info">
<div class="roomName">
<div class="chat-subject">{{ roomName }}</div>
<div *ngIf="roomInfo.roomType === RoomType.Multi" class="chat-amount">
<strong>({{ roomInfo.joinUserCount }})</strong>
</div>
</div>
<div class="lastMessage">{{ roomInfo.finalEventMessage }}</div>
</div>
<mat-checkbox
*ngIf="checkable"
#checkbox
[checked]="checked"
(change)="onToggleItem(checkbox.checked)"
(click)="$event.stopPropagation()"
class="group-check"
>
</mat-checkbox>
</div>