|
|
|
|
|
|
|
<!-- IMPORT partials/breadcrumbs.tpl -->
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-4">
|
|
|
|
<div class="chat-search hidden-xs">
|
|
|
|
<input class="form-control" type="text" component="chat/search" placeholder="[[users:enter_username]]" />
|
|
|
|
</div>
|
|
|
|
<ul component="chat/search/list" class="chat-search-list">
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
<ul component="chat/recent" class="chats-list" data-nextstart="{nextStart}">
|
|
|
|
<!-- BEGIN rooms -->
|
|
|
|
<li component="chat/recent/room" data-roomid="{rooms.roomId}" class="<!-- IF ../unread -->unread<!-- ENDIF ../unread -->">
|
|
|
|
<i class="fa fa-times pull-right leave" component="chat/leave"></i>
|
|
|
|
<!-- IF rooms.lastUser.uid -->
|
|
|
|
<div data-username="{rooms.lastUser.username}" data-uid="{rooms.lastUser.uid}">
|
|
|
|
<!-- IF rooms.lastUser.picture -->
|
|
|
|
<img class="user-img" src="{rooms.lastUser.picture}">
|
|
|
|
<!-- ELSE -->
|
|
|
|
<div class="user-icon user-img" style="background-color: {rooms.lastUser.icon:bgColor};">{rooms.lastUser.icon:text}</div>
|
|
|
|
<!-- ENDIF rooms.lastUser.picture -->
|
|
|
|
<i component="user/status" title="[[global:{rooms.lastUser.status}]]" class="fa fa-circle status {rooms.lastUser.status}"></i>
|
|
|
|
<span class="username">{rooms.usernames}</span>
|
|
|
|
</div>
|
|
|
|
<!-- ELSE -->
|
|
|
|
[[modules:chat.no-users-in-room]]
|
|
|
|
<!-- ENDIF rooms.lastUser.uid -->
|
|
|
|
|
|
|
|
<span class="teaser-content">{rooms.teaser.content}</span>
|
|
|
|
<span class="teaser-timestamp timeago pull-right" title="{rooms.teaser.timestampISO}"></span>
|
|
|
|
</li>
|
|
|
|
<!-- END rooms -->
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-8 hidden-sm hidden-xs">
|
|
|
|
<!-- IF roomId -->
|
|
|
|
<div component="chat/messages" class="expanded-chat" data-roomid="{roomId}">
|
|
|
|
|
|
|
|
<button type="button" class="close" data-action="pop-out"><span aria-hidden="true"><i class="fa fa-compress"></i></span><span class="sr-only">[[modules:chat.pop-out]]</span></button>
|
|
|
|
|
|
|
|
<!-- IF showUserInput -->
|
|
|
|
<div class="users-tag-container">
|
|
|
|
<input class="users-tag-input" type="text" class="form-control" placeholder="[[modules:chat.add-users-to-room]]" tabindex="4"/>
|
|
|
|
</div>
|
|
|
|
<!-- ENDIF showUserInput -->
|
|
|
|
|
|
|
|
<input class="form-control" component="chat/room/name" value="{roomName}" <!-- IF !isOwner -->disabled<!-- ENDIF !isOwner -->/>
|
|
|
|
|
|
|
|
<span class="since-bar"><a href="#" class="selected" data-since="recent">[[recent:title]]</a> • <a href="#" data-since="week">[[modules:chat.seven_days]]</a> • <a href="#" data-since="month">[[modules:chat.thirty_days]]</a> • <a href="#" data-since="threemonths">[[modules:chat.three_months]]</a></span>
|
|
|
|
<ul class="chat-content">
|
|
|
|
<!-- IMPORT partials/chat_messages.tpl -->
|
|
|
|
</ul>
|
|
|
|
<div class="input-group">
|
|
|
|
<textarea component="chat/input" placeholder="[[modules:chat.placeholder]]" class="form-control chat-input mousetrap" rows="1"></textarea>
|
|
|
|
<span class="input-group-btn">
|
|
|
|
<button class="btn btn-primary" type="button" data-action="send">[[modules:chat.send]]</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- ELSE -->
|
|
|
|
<div class="alert alert-info">
|
|
|
|
[[modules:chat.no-messages]]
|
|
|
|
</div>
|
|
|
|
<!-- ENDIF roomId -->
|
|
|
|
</div>
|
|
|
|
</div>
|