2020-03-18 16:55:32 +01:00
|
|
|
import { html } from "lit-html";
|
2020-03-18 19:32:03 +01:00
|
|
|
import { __ } from '@converse/headless/i18n';
|
2020-03-18 16:55:32 +01:00
|
|
|
|
2020-03-18 19:32:03 +01:00
|
|
|
const i18n_no_history = __('No message history available.');
|
2020-03-18 16:55:32 +01:00
|
|
|
|
2020-03-18 19:32:03 +01:00
|
|
|
|
|
|
|
export default (o) => html`
|
2020-03-18 16:55:32 +01:00
|
|
|
<div class="flyout box-flyout">
|
|
|
|
<div class="chat-head chat-head-chatroom row no-gutters"></div>
|
|
|
|
<div class="chat-body chatroom-body row no-gutters">
|
2020-03-18 19:32:03 +01:00
|
|
|
<div class="chat-area col">
|
|
|
|
<div class="chat-content ${ o.show_send_button ? 'chat-content-sendbutton' : '' }" aria-live="polite">
|
2020-03-30 05:34:47 +02:00
|
|
|
<div class="chat-content__messages">
|
|
|
|
${ o.muc_show_logs_before_join ? html`<div class="empty-history-feedback"><span>${ i18n_no_history }</span></div>` : '' }
|
|
|
|
</div>
|
2020-03-24 10:20:11 +01:00
|
|
|
<div class="chat-content__notifications"></div>
|
2020-03-18 19:32:03 +01:00
|
|
|
</div>
|
|
|
|
<div class="bottom-panel"></div>
|
|
|
|
</div>
|
2020-03-18 16:55:32 +01:00
|
|
|
<div class="disconnect-container hidden"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|